/**
 * About (/my-about) — portal hub shell + App Look typography (portal-chrome.css tokens).
 * Lively surfaces, staggered reveal, respects prefers-reduced-motion.
 */

:root {
    --kf-app-gutter: var(--kf-space-2, 8px);
    --cab-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --cab-ink: var(--mh-ink, #0f172a);
    --cab-muted: var(--mh-muted, #64748b);
}

body.cab-about-page {
    background:
        rgba(52, 211, 153, 0.11),
        #f8fafc;
}

main.cph-main[data-kf-nav='about'].cab-about--hub {
    display: flex;
    flex-direction: column;
    gap: var(--kf-app-gutter, 5px);
    min-width: 0;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
    font-family: var(--kf-app-font-family, system-ui, sans-serif);
    font-size: var(--kf-app-fs-body);
    color: var(--cab-ink);
}

/* ── Stacked surfaces inside hub module ── */
.mh-page .cab-about__hub .mh-home-basket-module .bh-module {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.cab-about__stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.cab-surface {
    position: relative;
    border-radius: var(--mh-radius-lg, 16px);
    border: 1px solid rgba(203, 213, 225, 0.55);
    background: #ffffff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.88) inset,
        0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.cab-surface--hero {
    padding: 14px 14px 16px;
    text-align: center;
}

.cab-surface--hero-headline-only {
    padding: 20px 16px 22px;
}

.cab-surface--hero-headline-only .cab-about__headline {
    margin: 0;
}

.cab-about__hero-visual {
    position: relative;
    height: 112px;
    margin: -6px -8px 4px;
    border-radius: 14px;
    background:
        rgba(250, 204, 21, 0.14),
        rgba(52, 211, 153, 0.18),
        rgba(236, 253, 245, 0.9);
    border: 1px solid rgba(167, 243, 208, 0.45);
}

.cab-about__hero-orbit {
    position: absolute;
    inset: 10% 18%;
    border-radius: 50%;
    border: 1px dashed rgba(34, 197, 94, 0.22);
    animation: cab-orbit-pulse 5s ease-in-out infinite;
}

.cab-about__hero-svg {
    position: absolute;
    right: 8px;
    bottom: 4px;
    width: 108px;
    height: 108px;
    filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.08));
}

@media (prefers-reduced-motion: reduce) {
    .cab-about__hero-orbit,
    .cab-about__sun,
    .cab-about__leaf {
        animation: none !important;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .cab-about__sun {
        transform-origin: 88px 28px;
        animation: cab-sun-pulse 4s ease-in-out infinite;
    }

    .cab-about__leaf {
        transform-origin: 55px 60px;
        animation: cab-leaf-sway 5.5s ease-in-out infinite;
    }
}

@keyframes cab-orbit-pulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.03);
    }
}

@keyframes cab-sun-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes cab-leaf-sway {
    0%,
    100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

.cab-about__brand-eyebrow {
    margin: 0;
    font-size: var(--kf-app-fs-small);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cab-muted);
}

.cab-about__headline {
    margin: 8px 0 0;
    font-size: clamp(var(--kf-app-fs-heading), 4.2vw, calc(var(--kf-app-fs-heading) * 1.35));
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.18;
    color: var(--cab-ink);
}

.cab-about__headline-line {
    display: block;
}

.cab-about__headline-accent {
    display: block;
    margin-top: 6px;
    font-weight: 400;
    background: #15803d;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .cab-about__headline-accent {
        color: #15803d;
    }
}

.cab-about__lede {
    margin: 10px auto 0;
    font-size: var(--kf-app-fs-body);
    font-weight: 400;
    line-height: 1.55;
    color: var(--cab-muted);
    letter-spacing: -0.012em;
    max-width: 26rem;
}

.cab-about__trust-pills {
    margin: 12px 0 0 !important;
    justify-content: center !important;
}

/* Member reviews (shared copy with public home; horizontal slider) */
.cab-surface--reviews {
    padding: 14px 0 16px;
}

.cab-about__section-head--reviews {
    padding-inline: 14px;
    margin-bottom: 4px;
}

.cab-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cab-reviews-slider {
    min-width: 0;
}

.cab-reviews-slider__viewport {
    --cab-slide: min(18.25rem, calc(100vw - 2.85rem));
    padding: 6px 14px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.55) transparent;
    outline: none;
}

.cab-reviews-slider__viewport:focus-visible {
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35);
    border-radius: 12px;
}

.cab-reviews-slider__track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cab-reviews-slider__slide {
    flex: 0 0 var(--cab-slide);
    width: var(--cab-slide);
    max-width: 100%;
    scroll-snap-align: center;
}

.cab-review-card {
    box-sizing: border-box;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 14px 12px 13px;
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 225, 0.65);
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 6px 20px rgba(15, 23, 42, 0.06);
}

.cab-review-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 8px 18px rgba(22, 101, 52, 0.15);
}

.cab-review-card__title {
    margin: 0;
    font-size: var(--kf-app-fs-body);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: #14532d;
}

.cab-review-card__text {
    margin: 0;
    flex: 1 1 auto;
    font-size: var(--kf-app-fs-small);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: #475569;
}

.cab-review-card__author {
    display: grid;
    gap: 2px;
    margin-top: 2px;
}

.cab-review-card__author strong {
    font-size: var(--kf-app-fs-small);
    font-weight: 400;
    color: var(--cab-ink);
}

.cab-review-card__author span {
    font-size: calc(var(--kf-app-fs-small) * 0.95);
    font-weight: 400;
    color: var(--cab-muted);
}

.cab-reviews-slider__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 4px 14px 2px;
}

.cab-reviews-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.45);
    cursor: pointer;
    transition:
        transform 0.2s var(--cab-ease),
        background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.cab-reviews-slider__dot.is-active {
    background: #16a34a;
    transform: scale(1.15);
}

.cab-reviews-slider__dot:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.35);
}

/* Rhythm / timeline */
.cab-surface--rhythm {
    padding: 14px 12px 16px;
}

.cab-about__section-head {
    margin: 0 2px 10px;
    text-align: center;
}

.cab-about__section-title {
    margin: 0;
    font-size: var(--kf-app-fs-heading);
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--cab-ink);
}

.cab-about__section-lead {
    margin: 6px 0 0;
    font-size: var(--kf-app-fs-small);
    font-weight: 400;
    color: var(--cab-muted);
    letter-spacing: -0.01em;
}

.cab-about__section-lead em {
    font-style: normal;
    font-weight: 400;
    color: #15803d;
}

.cab-timeline {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 4px 0 2px;
}

.cab-timeline::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 12px;
    bottom: 18px;
    width: 2px;
    border-radius: 2px;
    background: rgba(52, 211, 153, 0.55);
    opacity: 0.65;
}

.cab-timeline__step {
    position: relative;
    display: grid;
    grid-template-columns: 40px 28px 1fr;
    gap: 4px 8px;
    align-items: start;
    padding: 0 0 16px;
    margin: 0;
    --cab-i: 0;
    opacity: 0;
    transform: translateY(14px);
}

.cab-timeline__step:last-child {
    padding-bottom: 0;
}

.cab-about--ready .cab-timeline__step {
    animation: cab-step-in 0.52s var(--cab-ease) forwards;
    animation-delay: calc(0.12s + 0.12s * var(--cab-i));
}

.cab-timeline__glyph {
    font-size: 1.25rem;
    line-height: 1;
    text-align: center;
    padding-top: 14px;
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.06));
}

.cab-timeline__marker {
    position: relative;
    z-index: 1;
    width: 12px;
    height: 12px;
    margin-top: 18px;
    margin-left: 8px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #16a34a;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
}

.cab-timeline__step:nth-child(3) .cab-timeline__marker {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.22);
}

.cab-timeline__step:nth-child(4) .cab-timeline__marker {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
}

.cab-timeline__card {
    padding: 11px 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 4px 16px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.2s var(--cab-ease),
        box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cab-timeline__card:hover {
        transform: translateY(-2px);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.95) inset,
            0 10px 26px rgba(15, 23, 42, 0.07);
    }
}

.cab-timeline__label {
    display: inline-block;
    margin: 0 0 4px;
    padding: 2px 7px;
    font-size: calc(var(--kf-app-fs-small) * 0.92);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #065f46;
    background: rgba(209, 250, 229, 0.85);
    border-radius: 6px;
    border: 1px solid rgba(167, 243, 208, 0.55);
}

.cab-timeline__step:nth-child(3) .cab-timeline__label {
    color: #9a3412;
    background: rgba(254, 243, 199, 0.88);
    border-color: rgba(253, 186, 116, 0.45);
}

.cab-timeline__step:nth-child(4) .cab-timeline__label {
    color: #14532d;
    background: rgba(236, 253, 245, 0.95);
    border-color: rgba(134, 239, 172, 0.5);
}

.cab-timeline__when {
    display: block;
    margin: 0 0 4px;
    font-size: var(--kf-app-fs-body);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--cab-ink);
}

.cab-timeline__text {
    margin: 0;
    font-size: var(--kf-app-fs-small);
    font-weight: 400;
    line-height: 1.45;
    color: var(--cab-muted);
}

/* Footer + CTAs */
.cab-surface--foot {
    padding: 14px 14px 16px;
    text-align: center;
    background: rgba(255, 251, 235, 0.95);
    border-color: rgba(251, 191, 36, 0.35);
}

.cab-about__foot-note {
    margin: 0 0 12px;
    font-size: var(--kf-app-fs-small);
    font-weight: 400;
    line-height: 1.5;
    color: #92400e;
}

.cab-about__cta-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.cab-about__cta-row .mh-greet__harvest-cta-wrap {
    margin-top: 0;
}

.cab-about__cta-row--solo {
    align-items: center;
}

.cab-about__cta-row--solo .mh-greet__harvest-cta-wrap {
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
}

.cab-about__cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    padding: 11px 16px;
    font-family: inherit;
    font-size: var(--kf-app-fs-body);
    font-weight: 400;
    text-decoration: none;
    color: var(--ca-ink, #0f172a);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    -webkit-tap-highlight-color: transparent;
}

.cab-about__cta-secondary:active {
    transform: scale(0.99);
}

/* Staggered surface reveal */
.cab-reveal {
    opacity: 0;
    transform: translateY(16px);
}

.cab-about--ready .cab-reveal {
    animation: cab-surface-in 0.55s var(--cab-ease) forwards;
    animation-delay: calc(0.07s + 0.09s * var(--cab-r, 0));
}

@media (prefers-reduced-motion: reduce) {
    .cab-reveal,
    .cab-timeline__step {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .cab-timeline__card:hover {
        transform: none;
    }
}

@keyframes cab-surface-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cab-step-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About: “What Our Farm Member Says” — glass card within unified flow */
body.mh-page main#cph-main.mh-main[data-kf-nav='about'] .cab-about-flow__reviews .cab-surface.cab-surface--reviews.cab-reveal {
    border-radius: var(--mh-radius-lg, 20px);
    padding: 22px 16px 20px;
    margin: 0;
    isolation: isolate;
    background:
        rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(167, 243, 208, 0.55);
    box-shadow:
        var(--mh-prem-glow, 0 20px 50px -12px rgba(22, 101, 52, 0.18)),
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.mh-page main#cph-main.mh-main[data-kf-nav='about'] .cab-about-flow__reviews .cab-surface.cab-surface--reviews.cab-reveal::before {
    content: '';
    position: absolute;
    inset: -1px;
    background:
        rgba(74, 222, 128, 0.2),
        rgba(251, 191, 36, 0.12);
    pointer-events: none;
    z-index: 0;
}

body.mh-page main#cph-main.mh-main[data-kf-nav='about'] .cab-about-flow__reviews .cab-surface.cab-surface--reviews.cab-reveal > * {
    position: relative;
    z-index: 1;
}

body.mh-page main#cph-main.mh-main[data-kf-nav='about'] .cab-about-flow__reviews .cab-surface.cab-surface--reviews.cab-reveal .cab-about__section-head--reviews {
    padding-inline: 0;
}

/* Portal chrome — align with shop / my-basket; tab bar: customer-login-bottom-nav.css */
body.mh-page.cab-about-page:has(main.cab-about--hub) .kph-hero__eyebrow,
body.mh-page.cab-about-page:has(main.cab-about--hub) .kph-hero__tag,
body.mh-page.cab-about-page:has(main.cab-about--hub) .kph-wallet__amt,
body.mh-page.cab-about-page:has(main.cab-about--hub) .kph-wallet-tip__text,
body.mh-page.cab-about-page:has(main.cab-about--hub) .kph-wallet-tip__link {
    font-weight: 400;
}

/* ── About unified (/my-about) — lively farm palette, continuous with portal header ── */
body.cab-about-page-unified.cab-about-page {
    --cab-grow: #22c55e;
    --cab-plan: #0ea5e9;
    --cab-pick: #eab308;
    --cab-enjoy: #10b981;
    --kf-page-bg: var(--kf-nature-page, #f7faf8);
    --kf-earth-green: var(--kf-nature-surface, #f8fcfa);
    background: var(--kf-nature-page-bg, #f8fcfa);
}

body.cab-about-page-unified.bh-page.with-login-bottom-nav header.kph {
    margin-bottom: 0;
    box-shadow: none;
}

body.cab-about-page-unified.bh-page.with-login-bottom-nav .kph-hero {
    border-bottom: none;
    box-shadow: none;
    background: #ffffff;
}

body.cab-about-page-unified.mh-page main#cph-main.cph-main.cab-about-main[data-kf-nav='about'] {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-block: 0;
    min-width: 0;
    background: transparent;
}

body.cab-about-page-unified.mh-page main#cph-main.cab-about-main[data-kf-nav='about'] > .mh-basket-hub.cab-about-page {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    overflow: visible;
}

/* Beat portal-header `main > section { padding }` + design-system hub shell */
body.cab-about-page-unified.bh-page:not(.bh-page--embed) main#cph-main.cph-main > section.mh-basket-hub.cab-about-page {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: none;
}

body.cab-about-page-unified.mh-page main#cph-main > .mh-basket-hub.cab-about-page {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

body.cab-about-page-unified .cab-about-page__body,
body.cab-about-page-unified .mh-basket-hub__zone--basket.cab-about-page__body {
    padding: 0 0 calc(22px + env(safe-area-inset-bottom, 0px));
    background: transparent;
}

body.cab-about-page-unified .mh-basket-hub__chrome,
body.cab-about-page-unified .mh-basket-hub__divider,
body.cab-about-page-unified .mh-basket-hub__grab {
    display: none !important;
}

body.cab-about-page-unified .cab-about-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: none;
    min-width: 0;
}

body.cab-about-page-unified .cab-about-flow__hero,
body.cab-about-page-unified .cab-about-flow__rhythm,
body.cab-about-page-unified .cab-about-flow__reviews,
body.cab-about-page-unified .cab-about-flow__cta {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    box-sizing: border-box;
}

/* Full-bleed bands — edge to edge of viewport on phones (same as portal header) */
@media (max-width: 767.98px) {
    body.cab-about-page-unified .cab-about-hero,
    body.cab-about-page-unified .cab-about-flow__rhythm,
    body.cab-about-page-unified .cab-about-cta-panel {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}

/* Hero — full-width band + floating color blobs */
body.cab-about-page-unified .cab-about-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: none;
    padding: var(--kf-portal-hero-pad-y, 12px) var(--kf-portal-hero-pad-x, 16px);
    text-align: center;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(167, 243, 208, 0.55);
    background: var(--kf-nature-hero-bg, #f8fcfa);
    box-shadow: none;
}

body.cab-about-page-unified .cab-about-hero__blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}

body.cab-about-page-unified .cab-about-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.75;
}

body.cab-about-page-unified .cab-about-hero__blob--a {
    width: 120px;
    height: 120px;
    top: -28px;
    left: -20px;
    background: rgba(74, 222, 128, 0.55);
}

body.cab-about-page-unified .cab-about-hero__blob--b {
    width: 100px;
    height: 100px;
    top: -10px;
    right: -16px;
    background: rgba(251, 191, 36, 0.5);
}

body.cab-about-page-unified .cab-about-hero__blob--c {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: 42%;
    background: rgba(56, 189, 248, 0.45);
}

@media (prefers-reduced-motion: no-preference) {
    body.cab-about-page-unified .cab-about-hero__blob--a {
        animation: cab-about-blob-drift 7s ease-in-out infinite;
    }

    body.cab-about-page-unified .cab-about-hero__blob--b {
        animation: cab-about-blob-drift 8s ease-in-out infinite 0.8s;
    }

    body.cab-about-page-unified .cab-about-hero__blob--c {
        animation: cab-about-blob-drift 6.5s ease-in-out infinite 1.4s;
    }
}

@keyframes cab-about-blob-drift {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(8px, 6px) scale(1.08);
    }
}

body.cab-about-page-unified .cab-about-hero__eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 12px;
    padding: 6px 14px 6px 10px;
    border-radius: 999px;
    font-size: var(--kf-app-fs-small);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #166534;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(74, 222, 128, 0.45);
    box-shadow: 0 4px 14px rgba(22, 101, 52, 0.12);
}

body.cab-about-page-unified .cab-about-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.35);
}

@media (prefers-reduced-motion: no-preference) {
    body.cab-about-page-unified .cab-about-hero__eyebrow-dot {
        animation: cab-about-pulse-dot 2.4s ease-in-out infinite;
    }
}

@keyframes cab-about-pulse-dot {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

body.cab-about-page-unified .cab-about-hero .cab-about__headline {
    position: relative;
    z-index: 1;
    margin: 0;
}

body.cab-about-page-unified .cab-about-hero .cab-about__headline-accent {
    display: inline;
    margin-top: 0;
    color: var(--kf-nature-orange, #b45309);
    background: var(--kf-nature-accent-grad, #15803d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section title */
body.cab-about-page-unified .cab-about__section-kicker {
    display: block;
    margin: 0 0 6px;
    font-size: calc(var(--kf-app-fs-small) * 0.95);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0d9488;
}

body.cab-about-page-unified .cab-about__section-title {
    font-weight: 800;
    background: #14532d;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    body.cab-about-page-unified .cab-about__section-title {
        color: #14532d;
    }
}

body.cab-about-page-unified .cab-about-flow__rhythm {
    padding: 0;
    background: rgba(255, 255, 255, 0.42);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

body.cab-about-page-unified .cab-about-flow__rhythm .cab-about__section-head {
    margin-bottom: 14px;
    padding: 18px 14px 0;
    text-align: center;
    box-sizing: border-box;
}

body.cab-about-page-unified .cab-about-flow__rhythm .cab-timeline {
    padding: 12px 14px 20px;
    box-sizing: border-box;
}

body.cab-about-page-unified .cab-about-flow__rhythm .cab-about__section-head::after {
    content: '';
    display: block;
    width: min(88px, 32%);
    height: 3px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: #22c55e;
}

/* Timeline — rainbow spine + color steps */
body.cab-about-page-unified .cab-timeline--lively::before {
    background: rgba(34, 197, 94, 0.75);
    opacity: 0.85;
    width: 3px;
    left: 30px;
}

body.cab-about-page-unified .cab-timeline__glyph {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-top: 8px;
    padding: 0;
    font-size: 1.35rem;
    line-height: 1;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

body.cab-about-page-unified .cab-timeline__step--grow .cab-timeline__glyph {
    background: #dcfce7;
    border-color: rgba(34, 197, 94, 0.35);
}

body.cab-about-page-unified .cab-timeline__step--plan .cab-timeline__glyph {
    background: #e0f2fe;
    border-color: rgba(14, 165, 233, 0.35);
}

body.cab-about-page-unified .cab-timeline__step--pick .cab-timeline__glyph {
    background: #fef9c3;
    border-color: rgba(234, 179, 8, 0.4);
}

body.cab-about-page-unified .cab-timeline__step--enjoy .cab-timeline__glyph {
    background: #d1fae5;
    border-color: rgba(16, 185, 129, 0.35);
}

@media (prefers-reduced-motion: no-preference) {
    body.cab-about-page-unified .cab-about--ready .cab-timeline__step .cab-timeline__glyph {
        animation: cab-about-glyph-bob 3s ease-in-out infinite;
        animation-delay: calc(0.15s * var(--cab-i));
    }
}

@keyframes cab-about-glyph-bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

body.cab-about-page-unified .cab-timeline__step--grow .cab-timeline__card {
    border-color: rgba(34, 197, 94, 0.35);
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.12);
}

body.cab-about-page-unified .cab-timeline__step--plan .cab-timeline__card {
    border-color: rgba(14, 165, 233, 0.35);
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.1);
}

body.cab-about-page-unified .cab-timeline__step--pick .cab-timeline__card {
    border-color: rgba(234, 179, 8, 0.4);
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(234, 179, 8, 0.12);
}

body.cab-about-page-unified .cab-timeline__step--enjoy .cab-timeline__card {
    border-color: rgba(16, 185, 129, 0.38);
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12);
}

body.cab-about-page-unified .cab-timeline__card {
    border-radius: 0;
    border-width: 1px;
    border-left-width: 4px;
    transition:
        transform 0.22s var(--cab-ease),
        box-shadow 0.22s ease;
}

body.cab-about-page-unified .cab-timeline__step--grow .cab-timeline__card {
    border-left-color: var(--cab-grow);
}

body.cab-about-page-unified .cab-timeline__step--plan .cab-timeline__card {
    border-left-color: var(--cab-plan);
}

body.cab-about-page-unified .cab-timeline__step--pick .cab-timeline__card {
    border-left-color: var(--cab-pick);
}

body.cab-about-page-unified .cab-timeline__step--enjoy .cab-timeline__card {
    border-left-color: var(--cab-enjoy);
}

@media (hover: hover) and (pointer: fine) {
    body.cab-about-page-unified .cab-timeline__card:hover {
        transform: translateY(-2px) translateX(2px);
    }
}

body.cab-about-page-unified .cab-timeline__when {
    font-weight: 700;
    color: var(--cab-ink);
}

/* CTA panel — full-width band */
body.cab-about-page-unified .cab-about-flow__reviews {
    padding: 8px 0 4px;
}

body.cab-about-page-unified .cab-about-flow__cta {
    padding: 0;
}

body.cab-about-page-unified .cab-about-cta-panel {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 18px 14px 22px;
    text-align: center;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(251, 191, 36, 0.35);
    background: #fffbeb;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

body.cab-about-page-unified .cab-about-cta-panel__note {
    margin: 0 0 14px;
    font-size: var(--kf-app-fs-body);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #92400e;
}

@media (prefers-reduced-motion: reduce) {
    body.cab-about-page-unified .cab-about-hero__blob,
    body.cab-about-page-unified .cab-about-hero__eyebrow-dot,
    body.cab-about-page-unified .cab-timeline__glyph {
        animation: none !important;
    }
}

/* ── About page v2 — professional story layout ── */
body.cab-about-page-unified .cab-about-flow--v2 {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    background: #ffffff;
}

.cab-about-story {
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.cab-about-story__head {
    margin: 0;
    padding: 18px 16px 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(165deg, rgba(22, 101, 52, 0.05) 0%, rgba(255, 255, 255, 0) 70%),
        #ffffff;
}

.cab-about-story__kicker {
    margin: 0 0 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #166534;
}

.cab-about-story__title {
    margin: 0 0 12px;
    font-family: var(--kf-app-font-family, inherit);
    font-size: clamp(1.15rem, 4.2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0f172a;
}

.cab-about-story__intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 36rem;
}

.cab-about-story__intro-line {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.55;
    color: #475569;
}

.cab-about-story__founder {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 1px;
    padding: 3px 10px 3px 7px;
    border-radius: 999px;
    background: #ecfdf5;
    border: 1px solid rgba(22, 101, 52, 0.18);
    color: #14532d;
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.3;
    white-space: nowrap;
    vertical-align: baseline;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.cab-about-story__founder-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
    flex: 0 0 auto;
}

.cab-about-story__founder:hover,
.cab-about-story__founder:focus-visible {
    background: #dcfce7;
    border-color: rgba(22, 101, 52, 0.32);
    box-shadow: 0 4px 12px rgba(22, 101, 52, 0.12);
    transform: translateY(-1px);
    outline: none;
}

@media (prefers-reduced-motion: no-preference) {
    .cab-about-story__founder-dot {
        animation: cab-about-founder-pulse 2.2s ease-in-out infinite;
    }
}

@keyframes cab-about-founder-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.16);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.08);
    }
}

.cab-about-story__mission {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.08) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid rgba(22, 101, 52, 0.12);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.cab-about-story__mission:hover {
    border-color: rgba(22, 101, 52, 0.28);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

.cab-about-story__mission-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #166534;
}

.cab-about-story__mission-text {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.cab-about-story__photo {
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: #0f172a;
    overflow: hidden;
}

.cab-about-story__photo-img {
    display: block;
    width: 100%;
    height: clamp(190px, 52vw, 300px);
    object-fit: cover;
    object-position: center 40%;
}

.cab-about-story__photo-caption {
    margin: 0;
    padding: 10px 18px 12px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.4;
    color: #64748b;
    background: #ffffff;
}

.cab-about-story__body {
    margin: 0;
    padding: 22px 18px 28px;
    max-width: 40rem;
}

.cab-about-story__body > p {
    margin: 0 0 1.05rem;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.65;
    color: #475569;
}

.cab-about-story__body > p:last-child {
    margin-bottom: 0;
}

.cab-about-story__emphasis {
    font-weight: 600 !important;
    color: #0f172a !important;
    font-size: 1rem !important;
}

.cab-about-story__discover {
    margin: 1.35rem 0 1.45rem;
    padding: 16px 16px 16px 18px;
    border-left: 3px solid #166534;
    background: linear-gradient(90deg, rgba(22, 101, 52, 0.06) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.cab-about-story__discover-title {
    margin: 0 0 10px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.cab-about-story__list {
    margin: 0;
    padding: 0 0 0 1.1rem;
    list-style: disc;
}

.cab-about-story__list li {
    margin: 0 0 0.45rem;
    padding: 0;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.45;
    color: #334155;
}

.cab-about-story__list li:last-child {
    margin-bottom: 0;
}

.cab-about-story__closer {
    margin-top: 1.35rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    font-style: italic;
    letter-spacing: -0.015em;
    line-height: 1.45 !important;
    color: #14532d !important;
}

.cab-about-contact {
    margin: 0;
    padding: 18px 16px 16px;
    background: #f8fafc;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.cab-about-contact__title {
    margin: 0 0 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #334155;
}

.cab-about-contact__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cab-about-contact__link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 9.5rem;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.cab-about-contact__link--wa {
    border-color: rgba(22, 101, 52, 0.22);
}

.cab-about-contact__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.cab-about-contact__value {
    font-size: 0.92rem;
    font-weight: 700;
    color: #14532d;
}

.cab-about-contact__social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.cab-about-contact__social-link {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #ffffff;
    color: #334155;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
}

.cab-about-contact__social-link:hover,
.cab-about-contact__social-link:focus-visible {
    border-color: rgba(22, 101, 52, 0.35);
    color: #14532d;
    outline: none;
}

body.cab-about-page-unified .cab-about-flow--v2 .cab-about-flow__reviews {
    padding: 4px 0 0;
}
