:root {
    color-scheme: dark;
    --bg: #050505;
    --bg-soft: #111111;
    --surface: rgba(17, 17, 17, 0.88);
    --surface-strong: rgba(23, 23, 23, 0.98);
    --line: rgba(245, 217, 138, 0.14);
    --text-main: #f8f5ee;
    --text-muted: #b9b2a6;
    --primary: #111111;
    --primary-light: #2f2f2f;
    --secondary: #f5d98a;
    --secondary-light: #e4bd55;
    --accent-soft: rgba(245, 217, 138, 0.12);
    --glow-a: rgba(245, 217, 138, 0.10);
    --glow-b: rgba(255, 255, 255, 0.05);
    --shadow: 0 32px 90px rgba(0, 0, 0, 0.50);
    --button-bg: rgba(255, 255, 255, 0.05);
    --button-border: rgba(255, 255, 255, 0.10);
    --button-hover: rgba(255, 255, 255, 0.09);
    --cta-bg: #f5d98a;
    --cta-text: #111111;
}

html[data-bio-theme="light"] body.bio-page,
body.bio-page[data-bio-theme="light"] {
    color-scheme: light;
    --bg: #f9f9f7;
    --bg-soft: #f4f1ea;
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --line: rgba(184, 137, 43, 0.14);
    --text-main: #1a202c;
    --text-muted: #718096;
    --primary: #b8892b;
    --primary-light: #d8b25e;
    --secondary: #9b6f19;
    --secondary-light: #d8b25e;
    --accent-soft: rgba(184, 137, 43, 0.14);
    --glow-a: rgba(216, 178, 94, 0.10);
    --glow-b: rgba(245, 217, 138, 0.08);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    --button-bg: rgba(255, 255, 255, 0.85);
    --button-border: rgba(0, 0, 0, 0.08);
    --button-hover: rgba(255, 255, 255, 0.98);
    --cta-bg: #d8b25e;
    --cta-text: #111111;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.bio-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, var(--glow-a), transparent 30%),
        radial-gradient(circle at top right, var(--glow-b), transparent 30%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 58%, var(--bg) 100%);
    overflow-x: hidden;
    position: relative;
}

body.bio-page::before,
body.bio-page::after {
    content: "";
    position: fixed;
    width: min(58vw, 760px);
    height: min(58vw, 760px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(110px);
    opacity: 0.55;
}

body.bio-page::before {
    top: -18%;
    left: -18%;
    background: radial-gradient(circle, var(--glow-a) 0%, transparent 68%);
}

body.bio-page::after {
    bottom: -18%;
    right: -18%;
    background: radial-gradient(circle, var(--glow-b) 0%, transparent 68%);
}

a {
    color: inherit;
}

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

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

.page-shell {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 24px));
    margin: 0 auto;
    padding: calc(14px + env(safe-area-inset-top, 0px)) 0 calc(56px + env(safe-area-inset-bottom, 0px));
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0 22px;
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    letter-spacing: 0;
}

.brand img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.header-note {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid var(--line);
    color: var(--secondary);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--button-border);
    background: var(--button-bg);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.nav-button:hover {
    transform: translateY(-1px);
    background: var(--button-hover);
}

.nav-button.primary {
    background: var(--cta-bg);
    color: var(--cta-text);
    border-color: transparent;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.surface {
    background: linear-gradient(180deg, var(--surface-strong), var(--surface));
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

html.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.72s ease, transform 0.72s ease;
    will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
    html.reveal-ready .reveal,
    html.reveal-ready .reveal.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

h1,
h2,
h3 {
    font-family: "Outfit", sans-serif;
    margin: 0;
    line-height: 1.02;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 4.8rem);
}

h2 {
    font-size: clamp(1.6rem, 3.8vw, 2.8rem);
    letter-spacing: 0;
}

h3 {
    font-size: 1.12rem;
    line-height: 1.18;
    letter-spacing: 0;
}

.hero-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.2vw, 18px);
    position: relative;
    margin: 0;
    white-space: nowrap;
}

.hero-title-text {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-mark {
    width: clamp(54px, 7.5vw, 88px);
    height: auto;
    display: block;
    flex: 0 0 auto;
    margin-left: 2px;
    position: relative;
    z-index: 2;
    background: transparent;
    transform-origin: 50% 72%;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.16));
    animation: heroLogoBounce 1.55s cubic-bezier(0.2, 1.3, 0.28, 1) 0.42s both;
}

@keyframes heroLogoBounce {
    0% {
        opacity: 0;
        transform: translate3d(-2.55em, -1.62em, 0) scale(0.54) rotate(-20deg);
    }
    28% {
        opacity: 1;
        transform: translate3d(-1.35em, -0.82em, 0) scale(0.88) rotate(-8deg);
    }
    50% {
        opacity: 1;
        transform: translate3d(-0.12em, 0.26em, 0) scale(1.08) rotate(7deg);
    }
    68% {
        transform: translate3d(-0.03em, -0.08em, 0) scale(0.98) rotate(-3deg);
    }
    84% {
        transform: translate3d(0.02em, 0.04em, 0) scale(1.01) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(0);
    }
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid var(--line);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

html[data-bio-theme="light"] body.bio-page .eyebrow,
html[data-bio-theme="light"] body.bio-page .section-kicker,
html[data-bio-theme="light"] body.bio-page .label,
html[data-bio-theme="light"] body.bio-page .tag,
html[data-bio-theme="light"] body.bio-page .header-note,
body.bio-page[data-bio-theme="light"] .eyebrow,
body.bio-page[data-bio-theme="light"] .section-kicker,
body.bio-page[data-bio-theme="light"] .label,
body.bio-page[data-bio-theme="light"] .tag,
body.bio-page[data-bio-theme="light"] .header-note {
    color: #8b6418;
    background: rgba(255, 255, 255, 0.66);
    border-color: rgba(184, 137, 43, 0.20);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hub-layout {
    display: grid;
    place-items: center;
    padding: 12px 0 6px;
}

.hub-card {
    width: min(100%, 680px);
    padding: clamp(24px, 5vw, 34px);
    display: grid;
    gap: 18px;
}

.hub-logo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(168px, 22vw, 220px);
    height: clamp(168px, 22vw, 220px);
    margin: 0 auto 2px;
    isolation: isolate;
}

.hub-logo {
    position: relative;
    z-index: 2;
    width: clamp(116px, 16vw, 160px);
    height: auto;
    background: transparent;
    padding: 0;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.18));
}

.hub-logo-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    color: var(--secondary);
    animation: hubLoaderColor 5.5s ease-in-out infinite;
}

.hub-logo-ring-track {
    stroke: rgba(255, 255, 255, 0.08);
}

html[data-bio-theme="light"] body.bio-page .hub-logo-ring-track,
body.bio-page[data-bio-theme="light"] .hub-logo-ring-track {
    stroke: rgba(17, 17, 17, 0.08);
}

.hub-logo-ring-chaser {
    transform-origin: 70px 70px;
    filter: drop-shadow(0 0 8px rgba(245, 217, 138, 0.55));
    animation: hubLoaderSpin 1.15s linear infinite;
}

@keyframes hubLoaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes hubLoaderColor {
    0%, 100% { color: var(--secondary); }
    50% { color: var(--secondary-light); }
}

@media (prefers-reduced-motion: reduce) {
    .hub-logo-ring,
    .hub-logo-ring-chaser {
        animation: none;
    }
}

.hub-copy {
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.03rem;
    line-height: 1.7;
    text-align: center;
}

.hub-links {
    display: grid;
    gap: 12px;
    margin-top: 6px;
}

.hub-button {
    position: relative;
    display: grid;
    gap: 4px;
    min-height: 70px;
    padding: 16px 56px 16px 18px;
    border-radius: 20px;
    text-decoration: none;
    background: var(--button-bg);
    border: 1px solid var(--button-border);
    color: var(--text-main);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.hub-button::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 1.3rem;
    line-height: 1;
    color: var(--secondary);
    transition: transform 0.18s ease;
}

.hub-button:hover {
    transform: translateY(-2px);
    background: var(--button-hover);
    border-color: rgba(255, 255, 255, 0.14);
}

.hub-button:hover::after {
    transform: translateY(-50%) translateX(2px);
}

.hub-button span {
    font-family: "Outfit", sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0;
}

.hub-button small {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.35;
}

.hub-button.primary {
    background: var(--cta-bg);
    color: var(--cta-text);
    border-color: transparent;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.20);
}

.hub-button.primary::after {
    color: var(--cta-text);
}

.hub-button.primary small {
    color: inherit;
    opacity: 0.78;
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 2px 2px 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.coming-soon strong {
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: 0;
}

.coming-soon span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 20px;
    align-items: start;
}

.hero-solo {
    grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
    padding: 28px;
}

.lead {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.94rem;
    border: 1px solid transparent;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: var(--cta-bg);
    color: var(--cta-text);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.btn.secondary {
    background: var(--button-bg);
    border-color: var(--button-border);
    color: var(--text-main);
}

.btn.secondary:hover {
    background: var(--button-hover);
}

.hero-media {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: start;
}

.portrait {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 4 / 5;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid var(--line);
}

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

.journey-page .portrait {
    aspect-ratio: auto;
    height: min(480px, 58vw);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mini-card {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.mini-card strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 0.96rem;
    margin-bottom: 6px;
}

.mini-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.app-shot {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 43 / 93;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.05));
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.hero-shot {
    width: 100%;
}

.fitgotchi-shot {
    position: relative;
    isolation: isolate;
}

.character-showcase {
    padding-top: 24px;
}

.character-live-panel {
    display: grid;
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 24px;
}

.fitgotchi-live-frame {
    position: relative;
    isolation: isolate;
    min-height: 420px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 18%, rgba(245, 217, 138, 0.16), transparent 34%),
        linear-gradient(180deg, #091321 0%, #05070c 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.fitgotchi-fallback,
.fitgotchi-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fitgotchi-fallback {
    z-index: 0;
    object-fit: cover;
    object-position: center top;
    transition: opacity 0.35s ease;
}

.fitgotchi-stage {
    z-index: 1;
}

.fitgotchi-shot.is-live .fitgotchi-fallback {
    opacity: 0;
}

.fitgotchi-live-frame.is-live .fitgotchi-loading {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.fitgotchi-stage canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.fitgotchi-stage .avatar3d-overlay {
    display: none !important;
}

.fitgotchi-loading {
    position: absolute;
    inset: auto 18px 18px;
    z-index: 2;
    min-height: 64px;
    display: grid;
    gap: 10px;
    border-radius: 999px;
    padding: 12px 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.045)),
        rgba(12, 13, 16, 0.82);
    border: 1px solid rgba(216, 178, 94, 0.36);
    color: #f8f5ee;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(216, 178, 94, 0.07) inset,
        0 0 26px rgba(216, 178, 94, 0.12);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fitgotchi-loading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fitgotchi-loading-text {
    white-space: nowrap;
}

.fitgotchi-loading-percent {
    color: #d8b25e;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.4px;
}

.fitgotchi-loading-track {
    position: relative;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.34);
}

.fitgotchi-loading-fill {
    position: relative;
    display: block;
    width: var(--character-load-progress, 0%);
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    background:
        linear-gradient(90deg, #9f7427 0%, #d8b25e 48%, #f5d98a 100%);
    box-shadow: 0 0 18px rgba(216, 178, 94, 0.55);
    transition: width 0.34s ease;
}

.fitgotchi-live-frame.is-loading .fitgotchi-loading-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.62) 48%, transparent 66% 100%);
    transform: translateX(-100%);
    animation: characterLoadShine 1.35s ease-in-out infinite;
}

@keyframes characterLoadShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.character-live-copy {
    display: grid;
    gap: 14px;
}

.app-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.app-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    grid-auto-flow: dense;
}

.app-shot-card {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
}

.app-shot-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.shot-copy {
    display: grid;
    gap: 8px;
}

.shot-copy h3 {
    font-size: 1.08rem;
}

.shot-copy p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.62;
}

.section {
    padding-top: 18px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-end;
    margin: 8px 0 16px;
}

.section-kicker {
    margin-bottom: 10px;
}

.section-title {
    margin-top: 10px;
}

.section-text {
    margin: 0;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.link-card {
    text-decoration: none;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    min-height: 220px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid var(--line);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.link-card .title {
    margin-top: 14px;
}

.link-card .copy {
    margin: 10px 0 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.94rem;
}

.link-card .action {
    color: var(--secondary);
    font-weight: 800;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 14px;
}

.quote-card {
    padding: 22px;
}

.quote-card .quote-mark {
    font-family: "Outfit", sans-serif;
    font-size: 3.2rem;
    line-height: 0.7;
    color: rgba(216, 178, 94, 0.42);
    margin-bottom: 6px;
}

.quote-card p {
    margin: 0;
    font-size: 1.14rem;
    line-height: 1.7;
    color: var(--text-main);
}

.quote-card p + p {
    margin-top: 12px;
}

.info-card {
    padding: 22px;
}

.info-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.info-list li {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    color: var(--text-main);
    line-height: 1.55;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
}

.timeline-year {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-family: "Outfit", sans-serif;
    font-size: 1.02rem;
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: 0;
}

.timeline-body p {
    margin: 10px 0 0;
    color: var(--text-muted);
    line-height: 1.72;
}

.timeline-photo {
    width: min(100%, 380px);
    margin: 14px 0 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.timeline-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--button-bg);
    border: 1px solid var(--button-border);
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 700;
}

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

.character-offer-grid {
    grid-template-columns: minmax(0, 1fr);
}

.offer-card {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trial-card {
    margin-bottom: 14px;
}

.feature-motion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.feature-motion-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 24px;
    display: grid;
    grid-template-rows: auto minmax(260px, 1fr);
    gap: 18px;
}

.feature-motion-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 24% 20%, rgba(245, 217, 138, 0.12), transparent 34%),
        radial-gradient(circle at 82% 80%, rgba(255, 255, 255, 0.08), transparent 36%);
    opacity: 0.8;
}

html.reveal-ready .feature-motion-card:not(.is-motion-live) *,
html.reveal-ready .feature-motion-card:not(.is-motion-live) *::before,
html.reveal-ready .feature-motion-card:not(.is-motion-live) *::after {
    animation-play-state: paused !important;
}

.feature-motion-copy,
.feature-motion-scene {
    position: relative;
    z-index: 1;
}

.feature-motion-copy {
    display: grid;
    gap: 12px;
}

.feature-motion-copy h3 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.feature-motion-scene {
    min-height: 280px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at 50% 0%, rgba(245, 217, 138, 0.14), transparent 52%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.ask-scene {
    background:
        radial-gradient(circle at 50% 16%, rgba(90, 166, 166, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(216, 178, 94, 0.10), rgba(255, 255, 255, 0.03));
}

.ask-thread {
    position: absolute;
    inset: 22px 18px;
}

.ask-input-shell {
    position: absolute;
    left: 0;
    right: 0;
    top: 12px;
    min-height: 58px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: #151515;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.10);
    animation: askInputLift 4.2s ease-in-out infinite;
}

.ask-input-shell span {
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
}

.ask-input-shell i {
    width: 2px;
    height: 24px;
    border-radius: 999px;
    background: #5aa6a6;
    animation: askCursor 1s steps(2, start) infinite;
}

.ask-response,
.ask-typing {
    position: absolute;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    border-radius: 16px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.09);
}

.ask-response {
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.72);
    color: #221f19;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    animation: askBubbleFloat 4.8s ease-in-out infinite;
}

.ask-response-one {
    left: 8px;
    top: 104px;
}

.ask-response-two {
    right: 4px;
    top: 160px;
    animation-delay: -1.6s;
}

.ask-typing {
    left: 28px;
    bottom: 20px;
    gap: 6px;
    padding: 0 14px;
    background: rgba(90, 166, 166, 0.14);
}

.ask-typing i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5aa6a6;
    animation: askTypingDot 1.2s ease-in-out infinite;
}

.ask-typing i:nth-child(2) {
    animation-delay: 0.16s;
}

.ask-typing i:nth-child(3) {
    animation-delay: 0.32s;
}

.nutrition-scene {
    background:
        radial-gradient(circle at 50% 42%, rgba(245, 217, 138, 0.16), transparent 44%),
        linear-gradient(180deg, rgba(184, 137, 43, 0.10), rgba(255, 255, 255, 0.03));
}

.nutrition-orbit {
    position: absolute;
    inset: 18px 10px 62px;
    display: grid;
    place-items: center;
}

.nutrition-orbit .orbit {
    position: absolute;
    width: min(72%, 186px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(184, 137, 43, 0.18);
}

.nutrition-orbit .orbit-one {
    border-top-color: rgba(184, 137, 43, 0.72);
    border-right-color: rgba(184, 137, 43, 0.34);
    animation: orbitSpin 9s linear infinite;
}

.nutrition-orbit .orbit-two {
    width: min(58%, 144px);
    border-bottom-color: rgba(17, 17, 17, 0.32);
    border-left-color: rgba(245, 217, 138, 0.62);
    animation: orbitSpinReverse 11s linear infinite;
}

.nutrition-plate {
    position: relative;
    width: min(50%, 128px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.10);
}

.plate-ring {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background:
        conic-gradient(from 120deg, #d8b25e 0 42%, rgba(255, 255, 255, 0.92) 42% 55%, #8fbd6b 55% 76%, rgba(255, 255, 255, 0.92) 76% 83%, #bf6f4a 83% 100%);
    animation: plateBreathe 3.8s ease-in-out infinite;
}

.plate-core {
    position: relative;
    width: 64%;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    align-content: center;
    background: rgba(255, 255, 255, 0.94);
    color: #151515;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.07);
}

.plate-core strong {
    font-family: "Outfit", sans-serif;
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0;
}

.plate-core span {
    color: #756c5d;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.macro-chip {
    position: absolute;
    min-height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: #221f19;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
    animation: chipFloat 4.8s ease-in-out infinite;
}

.macro-protein {
    top: 10%;
    left: 10%;
}

.macro-carbs {
    right: 7%;
    top: 36%;
    animation-delay: -1.4s;
}

.macro-iron {
    left: 13%;
    bottom: 8%;
    animation-delay: -2.6s;
}

.nutrition-bars {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 9px;
}

.nutrition-bars span {
    position: relative;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
}

.nutrition-bars span::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--fill);
    border-radius: inherit;
    background: linear-gradient(90deg, #d8b25e, #8fbd6b);
    animation: barGlow 2.9s ease-in-out infinite;
}

.micro-dot-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.micro-dot-field i {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(184, 137, 43, 0.55);
    animation: dotBlink 3.6s ease-in-out infinite;
}

.micro-dot-field i:nth-child(1) { top: 18%; left: 62%; }
.micro-dot-field i:nth-child(2) { top: 24%; left: 78%; animation-delay: -0.7s; }
.micro-dot-field i:nth-child(3) { top: 70%; left: 74%; animation-delay: -1.1s; }
.micro-dot-field i:nth-child(4) { top: 62%; left: 24%; animation-delay: -1.6s; }
.micro-dot-field i:nth-child(5) { top: 38%; left: 18%; animation-delay: -2.2s; }
.micro-dot-field i:nth-child(6) { top: 16%; left: 34%; animation-delay: -2.7s; }
.micro-dot-field i:nth-child(7) { top: 82%; left: 46%; animation-delay: -3.1s; }
.micro-dot-field i:nth-child(8) { top: 50%; left: 86%; animation-delay: -3.5s; }

.movement-scene {
    background:
        radial-gradient(circle at 28% 28%, rgba(216, 178, 94, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(10, 20, 22, 0.09), rgba(255, 255, 255, 0.03));
}

.movement-route {
    position: absolute;
    inset: 28px 26px 74px;
}

.route-line {
    position: absolute;
    left: 10%;
    right: 8%;
    top: 49%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.10), #d8b25e, rgba(17, 17, 17, 0.14));
    transform: rotate(-15deg);
    transform-origin: center;
}

.route-node {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f8f5ee;
    border: 4px solid #d8b25e;
    box-shadow: 0 0 0 0 rgba(216, 178, 94, 0.40);
    animation: routePulse 2.6s ease-in-out infinite;
}

.node-one { left: 9%; bottom: 22%; }
.node-two { left: 34%; top: 48%; animation-delay: -0.45s; }
.node-three { right: 32%; top: 33%; animation-delay: -0.9s; }
.node-four { right: 8%; top: 20%; animation-delay: -1.35s; }

.movement-card-mini {
    position: absolute;
    left: 20px;
    top: 22px;
    min-width: 116px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.10);
    animation: cardLift 4.2s ease-in-out infinite;
}

.movement-card-mini strong,
.movement-card-mini span {
    display: block;
}

.movement-card-mini strong {
    font-family: "Outfit", sans-serif;
    color: #151515;
    font-size: 0.98rem;
}

.movement-card-mini span {
    color: #756c5d;
    font-size: 0.76rem;
    font-weight: 800;
}

.movement-bars {
    position: absolute;
    right: 22px;
    bottom: 22px;
    height: 86px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.movement-bars span {
    width: 16px;
    border-radius: 999px 999px 6px 6px;
    background: linear-gradient(180deg, #d8b25e, rgba(216, 178, 94, 0.38));
    animation: repBar 2.4s ease-in-out infinite;
}

.movement-bars span:nth-child(1) { height: 44px; }
.movement-bars span:nth-child(2) { height: 68px; animation-delay: -0.4s; }
.movement-bars span:nth-child(3) { height: 54px; animation-delay: -0.8s; }
.movement-bars span:nth-child(4) { height: 78px; animation-delay: -1.2s; }

.movement-lift {
    position: absolute;
    left: 30px;
    bottom: 38px;
    width: 118px;
    height: 52px;
    animation: liftRep 2.9s ease-in-out infinite;
}

.movement-lift span,
.movement-lift span::before,
.movement-lift span::after {
    position: absolute;
    display: block;
    content: "";
}

.movement-lift span {
    left: 18px;
    right: 18px;
    top: 24px;
    height: 7px;
    border-radius: 999px;
    background: #161616;
}

.movement-lift span::before,
.movement-lift span::after {
    top: -15px;
    width: 18px;
    height: 36px;
    border-radius: 6px;
    background: #d8b25e;
    box-shadow: inset 0 0 0 2px rgba(17, 17, 17, 0.12);
}

.movement-lift span::before { left: -18px; }
.movement-lift span::after { right: -18px; }

.analytics-scene {
    background:
        radial-gradient(circle at 28% 18%, rgba(90, 166, 166, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(90, 166, 166, 0.10), rgba(255, 255, 255, 0.03));
}

.analytics-dashboard {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 22px;
    min-height: 174px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 38px rgba(17, 17, 17, 0.10);
    animation: analyticsCardFloat 5.2s ease-in-out infinite;
}

.analytics-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.analytics-topline strong,
.analytics-topline span,
.analytics-insight strong,
.analytics-insight span {
    display: block;
}

.analytics-topline strong {
    font-family: "Outfit", sans-serif;
    color: #151515;
    font-size: 0.98rem;
}

.analytics-topline span {
    min-width: 56px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(143, 189, 107, 0.18);
    color: #1f6f5a;
    font-size: 0.76rem;
    font-weight: 900;
    text-align: center;
}

.analytics-chart {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;
    height: 90px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.analytics-chart span {
    flex: 1;
    min-width: 0;
    height: var(--height);
    border-radius: 999px 999px 7px 7px;
    background: linear-gradient(180deg, #5aa6a6, rgba(143, 189, 107, 0.58));
    transform-origin: bottom;
    animation: analyticsBarRise 2.8s ease-in-out infinite;
}

.analytics-chart span:nth-child(2) { animation-delay: -0.35s; }
.analytics-chart span:nth-child(3) { animation-delay: -0.7s; }
.analytics-chart span:nth-child(4) { animation-delay: -1.05s; }
.analytics-chart span:nth-child(5) { animation-delay: -1.4s; }

.analytics-line {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 76px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(216, 178, 94, 0.22), #d8b25e, rgba(90, 166, 166, 0.42));
    animation: analyticsLineSweep 3.6s ease-in-out infinite;
}

.analytics-insight {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    padding: 11px 14px;
    border-radius: 16px;
    background: rgba(21, 21, 21, 0.86);
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16);
    animation: analyticsInsightPop 4.2s ease-in-out infinite;
}

.analytics-insight strong {
    color: #fffaf0;
    font-family: "Outfit", sans-serif;
    font-size: 0.86rem;
}

.analytics-insight span {
    margin-top: 2px;
    color: rgba(255, 250, 240, 0.72);
    font-size: 0.68rem;
    font-weight: 800;
}

.analytics-rings {
    position: absolute;
    right: 28px;
    top: 96px;
    width: 58px;
    height: 58px;
    pointer-events: none;
}

.analytics-rings span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(90, 166, 166, 0.34);
    animation: analyticsRingPulse 2.4s ease-out infinite;
}

.analytics-rings span:nth-child(2) {
    animation-delay: 0.65s;
}

.learn-scene {
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 230, 150, 0.24), transparent 32%),
        linear-gradient(180deg, rgba(216, 178, 94, 0.10), rgba(255, 255, 255, 0.03));
}

.learn-bulb {
    position: absolute;
    left: 50%;
    top: 38%;
    width: 112px;
    height: 134px;
    transform: translate(-50%, -50%);
    animation: bulbFloat 4.8s ease-in-out infinite;
}

.learn-bulb::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 44%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 217, 138, 0.34), transparent 66%);
    animation: bulbGlow 2.8s ease-in-out infinite;
}

.learn-bulb span {
    position: absolute;
    left: 50%;
    top: 18px;
    width: 84px;
    height: 84px;
    transform: translateX(-50%);
    border-radius: 50% 50% 45% 45%;
    background: linear-gradient(180deg, #fff7d1, #d8b25e);
    border: 1px solid rgba(17, 17, 17, 0.10);
    box-shadow: 0 18px 46px rgba(216, 178, 94, 0.30);
}

.learn-bulb span::before {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: -28px;
    height: 36px;
    border-radius: 8px;
    background: repeating-linear-gradient(180deg, #24211c 0 5px, #3a3428 5px 9px);
}

.learn-bulb span::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 34px;
    width: 32px;
    height: 24px;
    border: 4px solid rgba(17, 17, 17, 0.18);
    border-top: 0;
    border-radius: 0 0 999px 999px;
}

.learn-notification {
    position: absolute;
    right: 18px;
    top: 22px;
    min-width: 128px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    color: #151515;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.10);
    animation: notifyPop 4s ease-in-out infinite;
}

.learn-notification strong,
.learn-notification span {
    display: block;
}

.learn-notification strong {
    font-family: "Outfit", sans-serif;
    font-size: 0.98rem;
}

.learn-notification span {
    color: #8b6418;
    font-size: 0.78rem;
    font-weight: 900;
}

.learn-ping {
    position: absolute;
    right: 84px;
    top: 54px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(216, 178, 94, 0.70);
    animation: pingOut 2s ease-out infinite;
}

.ping-two {
    animation-delay: 0.72s;
}

.learn-stack {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.learn-stack span {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.66);
    color: #221f19;
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.feed-scene {
    background:
        radial-gradient(circle at 24% 20%, rgba(90, 166, 166, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(143, 189, 107, 0.10), rgba(255, 255, 255, 0.03));
}

.feed-post {
    position: absolute;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.10);
}

.feed-post-main {
    left: 20px;
    right: 20px;
    top: 22px;
    min-height: 154px;
    padding: 16px;
    border-radius: 18px;
    animation: feedCardDrift 5s ease-in-out infinite;
}

.feed-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5aa6a6, #d8b25e);
    box-shadow: 0 0 0 6px rgba(90, 166, 166, 0.12);
}

.feed-lines {
    position: absolute;
    left: 64px;
    right: 18px;
    top: 20px;
    display: grid;
    gap: 8px;
}

.feed-lines span {
    height: 8px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.10);
}

.feed-lines span:first-child {
    width: 72%;
}

.feed-photo {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    height: 72px;
    overflow: hidden;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(216, 178, 94, 0.68), rgba(90, 166, 166, 0.48)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent);
}

.feed-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.42) 42%, transparent 58% 100%);
    transform: translateX(-100%);
    animation: feedSweep 3.8s ease-in-out infinite;
}

.feed-post-small {
    left: 24px;
    bottom: 22px;
    min-width: 104px;
    padding: 10px 12px;
    border-radius: 16px;
    animation: feedSmallPop 4.2s ease-in-out infinite;
}

.feed-post-small strong,
.feed-post-small span {
    display: block;
}

.feed-post-small strong {
    font-family: "Outfit", sans-serif;
    color: #151515;
    font-size: 0.96rem;
}

.feed-post-small span {
    color: #64735a;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.feed-reactions {
    position: absolute;
    right: 20px;
    bottom: 28px;
    min-height: 44px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 16px 32px rgba(17, 17, 17, 0.10);
    animation: reactionPop 3.4s ease-in-out infinite;
}

.feed-reactions span {
    color: #151515;
    font-weight: 900;
    font-size: 0.78rem;
}

.feed-reactions i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bf6f4a;
    box-shadow: 14px 0 0 #8fbd6b;
}

@keyframes askInputLift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes askCursor {
    0%, 45% { opacity: 1; }
    46%, 100% { opacity: 0; }
}

@keyframes askBubbleFloat {
    0%, 100% { transform: translateY(0); opacity: 0.82; }
    50% { transform: translateY(-7px); opacity: 1; }
}

@keyframes askTypingDot {
    0%, 100% { transform: translateY(0); opacity: 0.36; }
    45% { transform: translateY(-4px); opacity: 1; }
}

@keyframes feedCardDrift {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50% { transform: translateY(-7px) rotate(0.5deg); }
}

@keyframes feedSweep {
    0%, 28% { transform: translateX(-110%); }
    70%, 100% { transform: translateX(110%); }
}

@keyframes feedSmallPop {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.02); }
}

@keyframes reactionPop {
    0%, 100% { transform: scale(1); }
    18% { transform: scale(1.06); }
    32% { transform: scale(1); }
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbitSpinReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes plateBreathe {
    0%, 100% { transform: scale(0.98); }
    50% { transform: scale(1.04); }
}

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes barGlow {
    0%, 100% { opacity: 0.74; }
    50% { opacity: 1; }
}

@keyframes dotBlink {
    0%, 100% { opacity: 0.24; transform: scale(0.8); }
    45% { opacity: 1; transform: scale(1.18); }
}

@keyframes routePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(216, 178, 94, 0.30); transform: scale(0.92); }
    50% { box-shadow: 0 0 0 12px rgba(216, 178, 94, 0); transform: scale(1); }
}

@keyframes cardLift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes repBar {
    0%, 100% { transform: scaleY(0.82); opacity: 0.72; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes liftRep {
    0%, 100% { transform: translateY(7px) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes analyticsCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes analyticsBarRise {
    0%, 100% { transform: scaleY(0.86); opacity: 0.78; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes analyticsLineSweep {
    0%, 100% { opacity: 0.68; transform: rotate(-8deg) translateX(-3px); }
    50% { opacity: 1; transform: rotate(-8deg) translateX(4px); }
}

@keyframes analyticsInsightPop {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.015); }
}

@keyframes analyticsRingPulse {
    0% { opacity: 0.85; transform: scale(0.55); }
    100% { opacity: 0; transform: scale(1.35); }
}

@keyframes bulbFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(4px); }
    50% { transform: translate(-50%, -50%) translateY(-6px); }
}

@keyframes bulbGlow {
    0%, 100% { opacity: 0.54; transform: translate(-50%, -50%) scale(0.92); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes notifyPop {
    0%, 100% { transform: translateY(0) scale(1); }
    12% { transform: translateY(-3px) scale(1.03); }
    24% { transform: translateY(0) scale(1); }
}

@keyframes pingOut {
    0% { opacity: 0.85; transform: scale(0.45); }
    100% { opacity: 0; transform: scale(4.8); }
}

@media (prefers-reduced-motion: reduce) {
    .feature-motion-card *,
    .feature-motion-card *::before,
    .feature-motion-card *::after {
        animation: none !important;
    }
}

.offer-card.featured {
    border-color: rgba(216, 178, 94, 0.30);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(216, 178, 94, 0.10) inset;
}

.offer-price {
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: 0;
}

.offer-copy {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.72;
}

.offer-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.offer-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-main);
    line-height: 1.5;
}

.offer-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
}

.card-footer {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.small-note {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 28px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer a:hover {
    color: var(--text-main);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

body.bio-page .hub-layout + .footer {
    width: min(100%, 680px);
    margin: 14px auto 0;
    padding-top: 0;
    gap: 6px 12px;
    font-size: 0.78rem;
    line-height: 1.4;
    opacity: 0.8;
}

body.bio-page .hub-layout + .footer .footer-links {
    gap: 8px;
}

@media (max-width: 980px) {
    .hero,
    .story-grid,
    .offer-grid,
    .link-grid,
    .character-live-panel {
        grid-template-columns: 1fr 1fr;
    }

    .feature-motion-grid {
        grid-template-columns: 1fr;
    }

    .app-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-shot-card-featured {
        grid-column: span 2;
        grid-row: auto;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: min(100% - 18px, 1120px);
    }

    .site-header {
        position: static;
        flex-wrap: wrap;
        padding-bottom: 18px;
    }

    .hero,
    .story-grid,
    .offer-grid,
    .link-grid,
    .character-live-panel {
        grid-template-columns: 1fr;
    }

    .app-gallery {
        grid-template-columns: 1fr;
    }

    .hero {
        gap: 14px;
    }

    .hub-card,
    .hero-copy,
    .hero-media,
    .character-live-panel,
    .quote-card,
    .info-card,
    .offer-card,
    .app-shot-card,
    .timeline-item,
    .link-card {
        padding: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        gap: 12px;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 11vw, 3.2rem);
        line-height: 0.98;
        text-wrap: balance;
    }

    .section-title,
    .timeline-body h3,
    .offer-card h3 {
        text-wrap: balance;
    }

    .lead {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .button-row {
        margin-top: 12px;
        gap: 10px;
    }

    .section {
        padding-top: 14px;
    }

    .section-header {
        gap: 8px;
        margin: 4px 0 12px;
    }

    .section-title {
        margin-top: 4px;
    }

    .section-text {
        line-height: 1.6;
        max-width: none;
    }

    .quote-card,
    .info-card,
    .offer-card,
    .app-shot-card,
    .timeline-item,
    .link-card {
        gap: 10px;
    }

    .offer-card {
        padding: 18px;
    }

    .character-live-panel {
        gap: 16px;
        padding: 18px;
    }

    .fitgotchi-live-frame {
        min-height: 340px;
    }

    .app-shot-card-featured {
        grid-column: auto;
    }

    .offer-copy,
    .timeline-body p,
    .section-text,
    .small-note {
        line-height: 1.62;
    }

    .quote-card p {
        font-size: 1rem;
        line-height: 1.62;
    }

    .timeline-body p {
        margin-top: 8px;
    }

    .footer {
        flex-direction: column;
    }

    body.bio-page .hub-layout + .footer {
        margin-top: 12px;
        gap: 4px;
        font-size: 0.76rem;
    }

    .coming-soon {
        flex-direction: column;
        align-items: flex-start;
    }

    .hub-button {
        padding-right: 50px;
    }

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

/* Landing pages use the same spacious rhythm as the 30-day challenge page. */
.landing-page .page-shell {
    width: 100%;
    padding: 0 0 calc(56px + env(safe-area-inset-bottom, 0px));
}

.landing-page .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: calc(16px + env(safe-area-inset-top, 0px)) 24px 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(15, 15, 15, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

html[data-bio-theme="light"] body.bio-page.landing-page .site-header,
body.bio-page.landing-page[data-bio-theme="light"] .site-header {
    background: rgba(249, 246, 238, 0.82);
}

.landing-page .brand img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.landing-page .brand span {
    font-size: 1.08rem;
}

.landing-page .nav-button.primary {
    min-height: 48px;
    padding: 0 24px;
    font-size: 0.96rem;
    border-radius: 999px;
}

.landing-page main {
    width: 100%;
}

.landing-page .hero {
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: clamp(58px, 8vw, 90px) 24px 72px;
    gap: clamp(28px, 5vw, 54px);
    align-items: center;
}

.landing-page .hero-solo {
    width: min(860px, 100%);
}

.landing-page .hero-copy.surface {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.landing-page .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.landing-page .hero-solo .hero-copy {
    align-items: center;
    text-align: center;
}

.landing-page .eyebrow,
.landing-page .section-kicker {
    min-height: 36px;
    padding: 0 16px;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.landing-page .hero-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.2vw, 18px);
    margin: 0;
    white-space: nowrap;
    font-size: clamp(2.7rem, 8vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.landing-page .hero-title-text {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .hero-title-mark {
    width: clamp(58px, 8.8vw, 92px);
    height: auto;
    display: block;
    flex: 0 0 auto;
    margin-left: 2px;
    position: relative;
    z-index: 2;
    background: transparent;
    transform-origin: 50% 72%;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.16));
    animation: heroLogoBounce 1.55s cubic-bezier(0.2, 1.3, 0.28, 1) 0.42s both;
}

@keyframes heroLogoBounce {
    0% {
        opacity: 0;
        transform: translate3d(-2.55em, -1.62em, 0) scale(0.54) rotate(-20deg);
    }
    28% {
        opacity: 1;
        transform: translate3d(-1.35em, -0.82em, 0) scale(0.88) rotate(-8deg);
    }
    50% {
        opacity: 1;
        transform: translate3d(-0.14em, 0.24em, 0) scale(1.09) rotate(6deg);
    }
    68% {
        transform: translate3d(-0.05em, -0.1em, 0) scale(0.98) rotate(-3deg);
    }
    84% {
        transform: translate3d(0.02em, 0.04em, 0) scale(1.01) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(0);
    }
}

.landing-page .lead {
    max-width: 680px;
    margin-top: 22px;
    font-size: clamp(1.02rem, 2.2vw, 1.24rem);
    line-height: 1.68;
}

.landing-page .hero-solo .lead {
    margin-left: auto;
    margin-right: auto;
}

.landing-page .button-row {
    margin-top: 34px;
    gap: 14px;
}

.landing-page .btn {
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 1rem;
}

.landing-page .hero-media {
    padding: 18px;
    border-radius: 28px;
}

.landing-page .portrait {
    border-radius: 24px;
}

.landing-page .mini-card,
.landing-page .tag,
.landing-page .info-list li {
    background: rgba(255, 255, 255, 0.045);
}

html[data-bio-theme="light"] body.bio-page.landing-page .mini-card,
html[data-bio-theme="light"] body.bio-page.landing-page .tag,
html[data-bio-theme="light"] body.bio-page.landing-page .info-list li,
html[data-bio-theme="light"] body.bio-page.landing-page .label,
body.bio-page.landing-page[data-bio-theme="light"] .mini-card,
body.bio-page.landing-page[data-bio-theme="light"] .tag,
body.bio-page.landing-page[data-bio-theme="light"] .info-list li,
body.bio-page.landing-page[data-bio-theme="light"] .label {
    background: rgba(255, 255, 255, 0.72);
}

.landing-page .section {
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: 72px 24px;
}

.landing-page .section-header {
    display: block;
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.landing-page .section-header .section-text,
.landing-page .section-header > .section-text {
    margin: 18px auto 0;
    max-width: 660px;
}

.landing-page .section-title {
    margin-top: 12px;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.08;
}

.landing-page .section-text {
    font-size: 1.03rem;
}

.landing-page .offer-grid {
    gap: 18px;
}

.landing-page .offer-card,
.landing-page .timeline-item,
.landing-page .quote-card,
.landing-page .info-card,
.landing-page .app-shot-card,
.landing-page .feature-motion-card {
    border-radius: 22px;
    padding: 28px 24px;
}

.landing-page .offer-card {
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.landing-page .offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 217, 138, 0.28);
}

.landing-page .trial-card {
    margin-bottom: 18px;
}

.landing-page .feature-motion-grid {
    margin-bottom: 18px;
}

.landing-page .timeline {
    gap: 20px;
}

.landing-page .timeline-item {
    grid-template-columns: 130px minmax(0, 1fr);
}

.landing-page .story-grid {
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: 44px 24px 0;
}

.landing-page .character-showcase {
    padding-top: 72px;
}

.landing-page .character-live-panel {
    border-radius: 28px;
    padding: 26px;
}

.landing-page .footer {
    width: min(1080px, calc(100% - 48px));
    margin: 34px auto 0;
}

.client-hero-media {
    gap: 16px;
}

.client-photo-stack {
    display: grid;
    gap: 10px;
}

.client-photo-main,
.client-photo-row img,
.client-story-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.client-photo-main {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    border: 1px solid var(--line);
    object-position: center;
}

.client-photo-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.client-photo-row img {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    border: 1px solid var(--line);
}

.client-photo-row img:first-child {
    object-position: center top;
}

.client-story-list {
    width: min(1080px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.client-story-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    overflow: hidden;
    padding: 0;
}

.client-story-card:nth-child(even) {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.client-story-card:nth-child(even) .client-story-image {
    order: 2;
}

.client-story-image {
    min-height: 410px;
    background: rgba(255, 255, 255, 0.04);
}

.client-story-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
}

.client-story-image img {
    object-fit: contain;
    object-position: center;
}

.client-story-image-grid img {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.client-story-card:nth-child(4) .client-story-image img {
    object-position: center top;
}

.client-story-content {
    padding: clamp(24px, 4vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-story-content h2 {
    margin-top: 18px;
    font-size: clamp(1.75rem, 4vw, 2.65rem);
}

.client-story-content p {
    margin: 16px 0 0;
    color: var(--text-muted);
    line-height: 1.72;
    font-size: 1.02rem;
}

.client-story-quote {
    margin: 22px 0 0;
    padding: 18px 20px;
    border-left: 3px solid var(--secondary);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 255, 255, 0.055);
}

.client-story-quote p {
    margin: 0;
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 700;
    line-height: 1.45;
}

.client-story-quote cite {
    display: block;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-style: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.journey-points {
    display: grid;
    gap: 0;
    margin-top: 24px;
    border-top: 1px solid var(--line);
}

.journey-points div {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.journey-points strong {
    color: var(--secondary);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.journey-points span {
    color: var(--text-main);
    line-height: 1.58;
}

.client-bottom-cta {
    padding-top: 22px;
}

.client-result-strip {
    width: min(1080px, 100%);
    margin: 0 auto 22px;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.client-result-card,
.client-result-note {
    margin: 0;
}

.client-result-card {
    overflow: hidden;
    padding: 0;
}

.client-result-card img {
    width: 100%;
    display: block;
}

.client-result-card figcaption {
    padding: 14px 18px 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.client-result-note {
    padding: clamp(24px, 4vw, 36px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-result-note h2 {
    margin-top: 18px;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.client-result-note p {
    margin: 14px 0 0;
    color: var(--text-muted);
    line-height: 1.72;
    max-width: 650px;
}

.review-collage {
    width: min(1080px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.review-card {
    margin: 0;
    padding: 20px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: var(--secondary);
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.review-card p {
    margin: 16px 0 18px;
    color: var(--text-main);
    font-size: 0.98rem;
    line-height: 1.58;
}

.review-card span {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-card-featured {
    grid-column: span 2;
}

@media (max-width: 980px) {
    .landing-page .hero,
    .landing-page .story-grid,
    .landing-page .offer-grid,
    .landing-page .character-live-panel,
    .client-story-card,
    .client-story-card:nth-child(even),
    .client-result-strip {
        grid-template-columns: 1fr;
    }

    .client-story-card:nth-child(even) .client-story-image {
        order: 0;
    }

    .landing-page .hero-copy {
        align-items: center;
        text-align: center;
    }

    .review-collage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-page .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .landing-page .button-row {
        justify-content: center;
    }

    .feature-motion-card {
        min-height: 460px;
    }
}

@media (max-width: 760px) {
    .landing-page .site-header {
        position: sticky;
        padding: calc(12px + env(safe-area-inset-top, 0px)) 18px 12px;
        flex-wrap: nowrap;
    }

    .landing-page .brand {
        gap: 8px;
    }

    .landing-page .brand img {
        width: 40px;
        height: 40px;
    }

    .landing-page .nav-button.primary {
        min-height: 42px;
        padding: 0 16px;
        font-size: 0.86rem;
    }

    .landing-page .hero {
        padding: 52px 20px 54px;
    }

    .landing-page .hero-title {
        font-size: clamp(2.45rem, 13vw, 3.7rem);
    }

    .landing-page .hero-title-mark {
        width: clamp(50px, 12vw, 74px);
    }

    .landing-page .lead {
        margin-top: 18px;
        font-size: 1rem;
        line-height: 1.62;
    }

    .landing-page .button-row {
        width: 100%;
        margin-top: 26px;
    }

    .landing-page .btn {
        width: 100%;
        max-width: 340px;
        min-height: 54px;
    }

    .landing-page .hero-media {
        width: 100%;
        padding: 14px;
    }

    .landing-page .section {
        padding: 54px 20px;
    }

    .landing-page .section-header {
        margin-bottom: 30px;
    }

    .landing-page .section-kicker {
        margin-bottom: 14px;
    }

    .landing-page .section-title {
        margin-top: 8px;
        font-size: clamp(1.9rem, 10vw, 2.7rem);
    }

    .landing-page .offer-card,
    .landing-page .timeline-item,
    .landing-page .quote-card,
    .landing-page .info-card,
    .landing-page .app-shot-card,
    .landing-page .feature-motion-card {
        padding: 22px;
    }

    .landing-page .timeline-item {
        grid-template-columns: 1fr;
    }

    .landing-page .story-grid {
        padding: 20px 20px 0;
    }

    .landing-page .character-showcase {
        padding-top: 54px;
    }

    .landing-page .character-live-panel {
        padding: 18px;
    }

    .feature-motion-grid {
        grid-template-columns: 1fr;
    }

    .feature-motion-card {
        min-height: 430px;
    }

    .feature-motion-scene {
        min-height: 250px;
    }

    .landing-page .footer {
        width: min(100% - 40px, 1080px);
        margin-top: 24px;
    }

    .client-story-list {
        gap: 16px;
    }

    .client-story-image {
        min-height: auto;
        aspect-ratio: 1 / 1;
    }

    .client-story-image-grid {
        aspect-ratio: auto;
        grid-template-columns: 1fr;
    }

    .client-story-image-grid img {
        aspect-ratio: 1 / 1;
    }

    .client-story-content {
        padding: 22px;
    }

    .client-result-note {
        padding: 22px;
    }

    .review-collage {
        grid-template-columns: 1fr;
    }

    .review-card,
    .review-card-featured {
        grid-column: auto;
        min-height: auto;
        padding: 18px;
    }

    .journey-points div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
