/* ============================================
   Noetic Frame - Design System
   Inspired by perfectly.so warm minimalism
   ============================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2b180a;
    background-color: #fcf6ef;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    color: #9b6a3c;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #7a4f28;
}

img {
    max-width: 100%;
    height: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 14px;
    border-radius: 8px;
    background: #20362d;
    color: #fcf6ef;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateY(-160%);
    transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    padding: 20px 0;
    border-bottom: 1px solid #e8d3c0;
    background-color: rgba(252, 246, 239, 0.94);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav__brand {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    color: #2b180a;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav__brand:hover {
    color: #2b180a;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0 0 0 32px;
    padding: 0;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b5744;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav__link:hover {
    color: #2b180a;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid #e8d3c0;
    border-radius: 999px;
    background: #fff8f2;
}

.lang-switch__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #6b5744;
    padding: 6px 10px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-switch__button:hover {
    color: #2b180a;
}

.lang-switch__button.is-active {
    background: #2b180a;
    color: #fcf6ef;
}

.lang-switch__button.is-active:hover {
    color: #fcf6ef;
}

.lang-switch__button:focus-visible,
.nav__toggle:focus-visible,
.btn:focus-visible {
    outline: 2px solid #9b6a3c;
    outline-offset: 2px;
}

/* Mobile nav toggle */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2b180a;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
}

.hero__eyebrow,
.profile-hero__eyebrow,
.service-spotlight__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9b6a3c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 18px 0 16px;
    color: #2b180a;
}

.hero p:not(.hero__eyebrow) {
    font-size: 1.2rem;
    color: #6b5744;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section--bordered {
    border-top: 1px solid #e8d3c0;
}

.section__title {
    font-size: 2.2rem;
    text-align: center;
    margin: 0 0 56px;
    color: #2b180a;
}

.section__title--left {
    text-align: left;
    margin-bottom: 20px;
}

.section__title--compact {
    margin-bottom: 16px;
}

.section__intro {
    max-width: 760px;
    margin: 0 0 32px;
    color: #6b5744;
    font-size: 1rem;
    line-height: 1.75;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.products-grid--single {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.product-card {
    background: #fff8f2;
    border: 1px solid #e8d3c0;
    border-radius: 16px;
    padding: 36px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(43, 24, 10, 0.08);
}

.product-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.product-card__app-icon {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.product-card__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #2b180a;
}

.product-card__desc {
    color: #6b5744;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background-color: #2b180a;
    color: #fcf6ef;
}

.btn--primary:hover {
    background-color: #4a3020;
    color: #fcf6ef;
}

.btn--outline {
    background-color: transparent;
    color: #2b180a;
    border: 1.5px solid #2b180a;
}

.btn--outline:hover {
    background-color: #2b180a;
    color: #fcf6ef;
}

.btn--disabled,
.btn--disabled:hover {
    background: #e7ede8;
    color: #587064;
    cursor: default;
    pointer-events: none;
}

/* Profile Page */
.profile-hero {
    padding: 88px 0 72px;
}

.profile-hero__content {
    max-width: 760px;
}

.profile-hero__title {
    font-size: 3.3rem;
    margin: 18px 0;
}

.profile-hero__lead {
    max-width: 700px;
    color: #5f4b39;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.profile-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

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

.service-card,
.contact-band {
    background: #fff8f2;
    border: 1px solid #e8d3c0;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin: 12px 0 12px;
}

.service-spotlight__copy p:not(.service-spotlight__eyebrow),
.service-card p,
.contact-band p {
    color: #6b5744;
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0;
}

.detail-table-wrap {
    background: #fff8f2;
    border: 1px solid #e8d3c0;
    border-radius: 20px;
    overflow: hidden;
}

.detail-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.detail-table th,
.detail-table td {
    padding: 24px 28px;
    border-bottom: 1px solid #ecd9c8;
    vertical-align: top;
}

.detail-table tbody tr:last-child th,
.detail-table tbody tr:last-child td {
    border-bottom: none;
}

.detail-table th {
    width: 32%;
    color: #9b6a3c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: left;
    text-transform: uppercase;
}

.detail-table td {
    color: #2b180a;
    font-size: 1.02rem;
    line-height: 1.7;
}

.detail-table a {
    color: #2b180a;
}

.detail-table__address {
    white-space: normal;
}

.service-spotlight__copy {
    display: grid;
    gap: 18px;
    align-content: start;
}

.service-grid {
    display: grid;
    gap: 18px;
}

.service-card {
    padding: 24px;
}

.contact-band {
    padding: 40px 32px;
    text-align: center;
}

.contact-band .btn {
    margin-top: 24px;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid #e8d3c0;
    text-align: center;
}

.footer__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.footer__link {
    color: #6b5744;
    font-size: 0.92rem;
    font-weight: 500;
}

.footer__link:hover {
    color: #2b180a;
}

.footer p {
    color: #6b5744;
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   App Landing Page Styles
   ============================================ */

.app-hero {
    padding: 80px 0 60px;
}

.app-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-hero__content {
    text-align: left;
}

.app-hero__icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    margin-bottom: 24px;
}

.app-hero__title {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.app-hero__subtitle {
    font-size: 1.15rem;
    color: #6b5744;
    line-height: 1.6;
    margin-bottom: 28px;
}

.app-hero__badges {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.app-hero__badges a img {
    height: 52px;
}

.app-hero__image img {
    width: 100%;
    border-radius: 12px;
}

.morsel-hero {
    padding: 88px 0 72px;
}

.morsel-hero .container {
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
    gap: clamp(40px, 7vw, 88px);
}

.morsel-hero__eyebrow {
    color: #2f7d64;
    margin: 0 0 14px;
}

.morsel-hero__icon {
    box-shadow: 0 14px 30px rgba(47, 125, 100, 0.16);
}

.morsel-hero__title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    margin: 0 0 18px;
}

.morsel-hero__subtitle {
    max-width: 520px;
    margin-bottom: 28px;
    color: #4f6258;
}

.morsel-hero__image {
    display: flex;
    justify-content: center;
}

.morsel-hero__image img {
    width: min(100%, 330px);
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(47, 125, 100, 0.16);
}

.morsel-store {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.morsel-store__link {
    display: inline-flex;
    min-width: 174px;
    min-height: 54px;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border: 1px solid #28332e;
    border-radius: 11px;
    background: #17211d;
    color: #f8fbf9;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(32, 54, 45, 0.12);
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.morsel-store__link:hover {
    background: #24342d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(32, 54, 45, 0.18);
}

.morsel-store__link:focus-visible {
    outline: 3px solid rgba(47, 125, 100, 0.35);
    outline-offset: 3px;
}

.morsel-store__icon {
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    fill: currentColor;
}

.morsel-store__icon--apple {
    width: 26px;
    height: 26px;
}

.morsel-store__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.morsel-store__copy small {
    margin-bottom: 4px;
    font-size: 0.62rem;
    letter-spacing: 0.02em;
}

.morsel-store__copy strong {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.morsel-section-lead {
    max-width: 560px;
    margin: -2px auto 42px;
    color: #6b5744;
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
}

.morsel-feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.morsel-feature {
    border-top: 1px solid #d7e2d9;
    padding-top: 22px;
}

.morsel-feature h3 {
    color: #20362d;
    font-size: 1.25rem;
    margin: 0 0 10px;
}

.morsel-feature p {
    color: #5a6b62;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.morsel-reading-list {
    margin-top: 56px;
    border-top: 1px solid #d7e2d9;
}

.morsel-reading-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 26px 0;
    border-bottom: 1px solid #d7e2d9;
    color: #20362d;
    transition: color 180ms ease, transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.morsel-reading-link:hover {
    color: #2f7d64;
}

.morsel-reading-link:focus-visible {
    outline: 3px solid rgba(47, 125, 100, 0.35);
    outline-offset: 8px;
}

.morsel-reading-link small,
.morsel-reading-link strong {
    display: block;
}

.morsel-reading-link small {
    margin-bottom: 6px;
    color: #708279;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.morsel-reading-link strong {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.morsel-reading-link__arrow {
    flex: 0 0 auto;
    font-size: 1.6rem;
    transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.morsel-reading-link:active {
    transform: scale(0.985);
}

.morsel-note-library {
    margin-top: clamp(72px, 9vw, 112px);
}

.morsel-note-library__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    column-gap: 48px;
    align-items: end;
    margin-bottom: 30px;
}

.morsel-note-library__heading .morsel-article-section-label {
    grid-column: 1 / -1;
}

.morsel-note-library__heading h2 {
    max-width: 15ch;
    margin: 0;
    color: #20362d;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.06;
}

.morsel-note-library__heading > p:last-child {
    margin: 0;
    color: #61736a;
    line-height: 1.75;
}

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

.morsel-note-card {
    display: flex;
    min-height: 220px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border: 1px solid #d7e2d9;
    border-radius: 22px;
    background: #f8faf8;
    color: #20362d;
    transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), border-color 180ms ease, box-shadow 180ms ease;
}

.morsel-note-card--featured {
    grid-column: 1 / -1;
    min-height: 280px;
    background: #20362d;
    color: #f7faf8;
}

.morsel-note-card small,
.morsel-note-card strong,
.morsel-note-card em {
    display: block;
}

.morsel-note-card small {
    margin-bottom: 16px;
    color: #708279;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.morsel-note-card--featured small {
    color: #9fc7b3;
}

.morsel-note-card strong {
    max-width: 21ch;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 400;
    line-height: 1.22;
}

.morsel-note-card--featured strong {
    max-width: 18ch;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.morsel-note-card em {
    max-width: 44ch;
    margin-top: 14px;
    color: #708279;
    font-size: 0.86rem;
    font-style: normal;
    line-height: 1.65;
}

.morsel-note-card--featured em {
    color: #bfd2c8;
}

.morsel-note-card__arrow {
    flex: 0 0 auto;
    font-size: 1.5rem;
    transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.morsel-note-card:focus-visible {
    outline: 3px solid rgba(47, 125, 100, 0.4);
    outline-offset: 4px;
}

.morsel-note-card:active {
    transform: scale(0.985);
}

/* ============================================
   MorselFlow Editorial Article
   ============================================ */

.morsel-article-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 11vw, 132px) 24px clamp(64px, 9vw, 104px);
    border-bottom: 1px solid #d7e2d9;
    background: #edf3ee;
}

.morsel-article-hero::after {
    content: "";
    position: absolute;
    right: clamp(-90px, -4vw, -28px);
    bottom: clamp(-150px, -12vw, -72px);
    width: clamp(220px, 30vw, 430px);
    aspect-ratio: 1;
    border: 1px solid #c6d7cb;
    border-radius: 50%;
    box-shadow: 0 0 0 34px #e6efe8, 0 0 0 35px #d4e2d8;
    pointer-events: none;
}

.morsel-article-shell {
    position: relative;
    z-index: 1;
    max-width: 940px;
    margin: 0 auto;
}

.morsel-article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: clamp(48px, 7vw, 76px);
    color: #52645b;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 180ms ease, transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.morsel-article-back:hover {
    color: #20362d;
}

.morsel-article-back:focus-visible {
    outline: 2px solid #2f7d64;
    outline-offset: 5px;
}

.morsel-article-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(24px, 5vw, 72px);
    align-items: end;
}

.morsel-article-kicker,
.morsel-article-section-label {
    margin: 0 0 16px;
    color: #2f7d64;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.morsel-article-heading h1 {
    max-width: 15ch;
    margin: 0;
    color: #20362d;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.morsel-article-hero--en .morsel-article-heading h1 {
    max-width: 12ch;
}

.morsel-article-heading h1 em {
    color: #2f7d64;
    font-weight: 400;
}

.morsel-article-icon {
    width: clamp(64px, 8vw, 88px);
    border-radius: 22%;
    box-shadow: 0 16px 38px rgba(47, 125, 100, 0.18);
}

.morsel-article-lead {
    max-width: 690px;
    margin: clamp(32px, 5vw, 52px) 0 0;
    color: #44594f;
    font-size: clamp(1.08rem, 2vw, 1.3rem);
    line-height: 1.85;
}

.morsel-article-meta {
    display: flex;
    gap: 9px;
    margin: 26px 0 0;
    color: #708279;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.morsel-article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(72px, 10vw, 128px) 24px;
    color: #344a40;
}

.morsel-article-body > section + section {
    margin-top: clamp(88px, 12vw, 144px);
}

.morsel-article-body h2 {
    max-width: 17ch;
    margin: 0 0 36px;
    color: #20362d;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.morsel-article-body h3 {
    margin: 0 0 10px;
    color: #20362d;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    line-height: 1.25;
}

.morsel-article-body p {
    font-size: 1rem;
    line-height: 1.9;
}

.morsel-article-opening {
    max-width: 35ch;
    margin: 0 0 clamp(88px, 12vw, 144px);
    color: #2a4136;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.55rem, 3.5vw, 2.15rem) !important;
    line-height: 1.55 !important;
    letter-spacing: -0.015em;
}

.morsel-reason-list {
    border-top: 1px solid #d7e2d9;
}

.morsel-reason {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    padding: 32px 0 34px;
    border-bottom: 1px solid #d7e2d9;
}

.morsel-reason__number {
    padding-top: 5px;
    color: #8aa094;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.morsel-reason p {
    max-width: 60ch;
    margin: 0;
    color: #52645b;
}

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

.morsel-estimate-card {
    min-height: 310px;
    padding: 26px 24px;
    border: 1px solid #cbdcd1;
    border-radius: 22px;
    background: #f4f8f5;
}

.morsel-estimate-card--quiet {
    border-color: #ddd8cf;
    background: #f8f4ee;
}

.morsel-estimate-card__mark {
    display: inline-flex;
    min-width: 52px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
    border-radius: 16px;
    background: #dceae1;
    color: #2f7d64;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.45rem;
    line-height: 1;
}

.morsel-estimate-card--quiet .morsel-estimate-card__mark {
    background: #ebe4db;
    color: #756553;
}

.morsel-estimate-card__eyebrow {
    margin: 0 0 8px !important;
    color: #708279;
    font-size: 0.68rem !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4 !important;
    text-transform: uppercase;
}

.morsel-estimate-card h3 {
    min-height: 2.5em;
}

.morsel-estimate-card > p:last-child {
    margin: 0;
    color: #52645b;
    font-size: 0.9rem;
    line-height: 1.75;
}

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

.morsel-signal-panel {
    padding: 30px;
    border-radius: 22px;
    background: #e7f0ea;
}

.morsel-signal-panel--soft {
    background: #f1ece5;
}

.morsel-signal-panel__label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px !important;
    color: #2f7d64;
    font-size: 0.78rem !important;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.morsel-signal-panel--soft .morsel-signal-panel__label {
    color: #756553;
}

.morsel-signal-panel ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #52645b;
}

.morsel-signal-panel li {
    padding-left: 4px;
    line-height: 1.75;
}

.morsel-signal-panel li + li {
    margin-top: 12px;
}

/* ============================================
   MorselFlow Data Notes
   ============================================ */

.morsel-article-hero--data::after {
    border-color: rgba(47, 125, 100, 0.22);
}

.morsel-article-hero--range {
    background: #f0f3e8;
}

.morsel-article-hero--vegetables {
    background: #edf4e9;
}

.morsel-article-hero--balance {
    background: #edf3ee;
}

.morsel-article-hero--portions {
    background: #f5eee7;
}

.morsel-article-hero--timeline {
    background: #eef1f4;
}

.morsel-article-hero--breakfast {
    background: #f6f0df;
}

.morsel-article-hero--snacks {
    background: #f4edf3;
}

.morsel-article-hero--convenience {
    background: #eaf2f2;
}

.morsel-article-hero--memory {
    background: #f2efe9;
}

.morsel-article-hero--ai-limits {
    background: #e9f1ef;
}

.morsel-article-hero--clock {
    background: #edf0f7;
}

.morsel-article-hero--processed {
    background: #f6eddf;
}

.morsel-article-hero--social {
    background: #f4ece8;
}

.morsel-article-hero--waste {
    background: #eaf2e7;
}

.morsel-article-hero--defaults {
    background: #efeaf4;
}

.morsel-article-hero--sleep {
    background: #e9eef6;
}

.morsel-article-hero--attention {
    background: #f2ece7;
}

.morsel-article-hero--sequence {
    background: #edf2e9;
}

.morsel-article-hero--language {
    background: #f5ece2;
}

.morsel-article-hero--affordability {
    background: #e8f0ed;
}

.morsel-article-hero--pace {
    background: #eef1ec;
}

.morsel-article-hero--variety {
    background: #f4ece8;
}

.morsel-article-hero--frozen {
    background: #e9f2f4;
}

.morsel-article-hero--exposure {
    background: #eef3e8;
}

.morsel-article-hero--retraction {
    background: #f3ece6;
}

.morsel-data-article > section + section {
    margin-top: clamp(88px, 12vw, 144px);
}

.morsel-data-section > p:not(.morsel-article-section-label) {
    max-width: 65ch;
    margin: 0;
    color: #52645b;
}

.morsel-data-section > p + p {
    margin-top: 18px !important;
}

.morsel-data-figure {
    margin: 0;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid #d4e2d8;
    border-radius: 28px;
    background: #f6f9f7;
}

.morsel-data-figure--range {
    background: #f5f7ee;
}

.morsel-data-figure--vegetables {
    background: #f1f7ee;
}

.morsel-data-figure--portions {
    border-color: #e3d8cb;
    background: #faf5ef;
}

.morsel-data-figure--timeline {
    border-color: #d6dfe5;
    background: #f3f6f8;
}

.morsel-data-figure--breakfast {
    border-color: #e5d8b8;
    background: #faf6e9;
}

.morsel-data-figure--snacks {
    border-color: #e4d5e1;
    background: #faf5f9;
}

.morsel-data-figure--convenience {
    border-color: #cedfdf;
    background: #f1f7f7;
}

.morsel-data-figure--memory {
    border-color: #ded8cc;
    background: #f8f5ef;
}

.morsel-data-figure--ai-limits {
    border-color: #cddfda;
    background: #f0f7f5;
}

.morsel-data-figure--clock {
    border-color: #d3dbea;
    background: #f4f6fb;
}

.morsel-data-figure--processed {
    border-color: #e7d7be;
    background: #fbf5eb;
}

.morsel-data-figure--social {
    border-color: #e4d3cc;
    background: #faf4f1;
}

.morsel-data-figure--waste {
    border-color: #d0e0ca;
    background: #f2f8ef;
}

.morsel-data-figure--defaults {
    border-color: #dbcee7;
    background: #f7f3fa;
}

.morsel-data-figure--sleep {
    border-color: #ced9e8;
    background: #f2f6fb;
}

.morsel-data-figure--attention {
    border-color: #e1d4ca;
    background: #faf5f1;
}

.morsel-data-figure--sequence {
    border-color: #d3dfcd;
    background: #f3f7f1;
}

.morsel-data-figure--language {
    border-color: #ead5c2;
    background: #fbf5ee;
}

.morsel-data-figure--affordability {
    border-color: #cdded8;
    background: #f1f7f5;
}

.morsel-data-figure--pace {
    border-color: #d4ded2;
    background: #f4f7f2;
}

.morsel-data-figure--variety {
    border-color: #e3d2ca;
    background: #faf3f0;
}

.morsel-data-figure--frozen {
    border-color: #cbdde1;
    background: #f0f7f8;
}

.morsel-data-figure--exposure {
    border-color: #d4dfca;
    background: #f4f8f0;
}

.morsel-data-figure--retraction {
    border-color: #e1d2c7;
    background: #faf4ef;
}

.morsel-data-figure figcaption {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(82, 100, 91, 0.18);
    color: #708279;
    font-size: 0.75rem;
    line-height: 1.65;
}

.morsel-data-figure figcaption a {
    max-width: 31ch;
    color: #2f7d64;
    font-weight: 600;
    text-align: right;
}

.morsel-sleep-chart {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px 32px;
    align-items: center;
}

.morsel-sleep-chart__night {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    color: #617181;
    font-size: 0.78rem;
}

.morsel-sleep-chart__night i {
    display: block;
    width: var(--sleep-width);
    height: 30px;
    border-radius: 999px;
    background: #a8b8cc;
}

.morsel-sleep-chart__night--longer i {
    background: #496f9d;
}

.morsel-sleep-chart__night b {
    color: #496f9d;
    font-size: 0.74rem;
}

.morsel-sleep-chart__result {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 150px;
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    text-align: center;
}

.morsel-sleep-chart__result strong {
    display: block;
    color: #365f90;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 3.3rem;
    font-weight: 400;
    line-height: 1;
}

.morsel-sleep-chart__result span {
    display: block;
    margin-top: 8px;
    color: #6d7d8d;
    font-size: 0.7rem;
    line-height: 1.5;
}

.morsel-attention-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr) auto) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.morsel-attention-flow > div {
    display: grid;
    min-height: 170px;
    place-content: center;
    padding: 22px;
    border: 1px solid #e8ddd5;
    border-radius: 22px;
    background: #fff;
    text-align: center;
}

.morsel-attention-flow > div > span {
    color: #a06f58;
    font-size: 1.8rem;
}

.morsel-attention-flow > div > strong {
    margin-top: 12px;
    color: #4e403a;
    font-size: 0.95rem;
}

.morsel-attention-flow > div > small {
    margin-top: 7px;
    color: #8b7770;
}

.morsel-attention-flow > i {
    color: #b99d90;
    font-size: 1.2rem;
    font-style: normal;
}

.morsel-attention-flow__split {
    border-color: #cda893 !important;
    box-shadow: inset 0 0 0 4px rgba(205, 168, 147, 0.12);
}

.morsel-sequence-chart__path {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr) auto) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.morsel-sequence-chart__path span {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    color: #496452;
    font-size: 0.82rem;
    font-weight: 600;
}

.morsel-sequence-chart__path b {
    display: inline-grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: #dfead9;
    color: #32694f;
}

.morsel-sequence-chart__path i {
    color: #86a28f;
    font-style: normal;
}

.morsel-sequence-chart__response {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
    margin-top: 30px;
    color: #789080;
    font-size: 0.67rem;
}

.morsel-sequence-chart__response svg {
    width: 100%;
    min-height: 90px;
    border-bottom: 1px solid #cad8cd;
}

.morsel-sequence-chart__key {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 18px;
    color: #687d6d;
    font-size: 0.67rem;
}

.morsel-sequence-chart__key span {
    display: flex;
    gap: 7px;
    align-items: center;
}

.morsel-sequence-chart__key i {
    width: 20px;
    height: 4px;
    border-radius: 999px;
    background: #bd8566;
}

.morsel-sequence-chart__key span:last-child i {
    background: #3c826b;
}

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

.morsel-label-chart > div {
    min-height: 118px;
    padding: 22px;
    border: 1px solid #eadfd5;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.morsel-label-chart small {
    display: block;
    margin-bottom: 12px;
    color: #a0806a;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.morsel-label-chart strong {
    color: #5f493d;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 400;
    line-height: 1.25;
}

.morsel-label-chart__indulgent {
    border-color: #c98f69 !important;
    background: #fff8f0 !important;
    box-shadow: 0 10px 30px rgba(122, 77, 51, 0.08);
}

.morsel-label-chart > p {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px;
    align-items: baseline;
    margin: 14px 0 0;
    color: #8a7162;
    font-size: 0.72rem;
}

.morsel-label-chart > p strong,
.morsel-label-chart > p b {
    color: #a4603c;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
}

.morsel-affordability-chart__hero {
    display: flex;
    gap: 24px;
    align-items: center;
}

.morsel-affordability-chart__hero strong {
    color: #276c5b;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(4rem, 12vw, 7.2rem);
    font-weight: 400;
    line-height: 0.9;
}

.morsel-affordability-chart__hero span {
    color: #5f7a71;
    font-size: 0.78rem;
    line-height: 1.55;
}

.morsel-affordability-chart__hero b {
    color: #385f54;
    font-size: 1rem;
}

.morsel-affordability-chart__line {
    display: grid;
    grid-template-columns: auto minmax(30px, 1fr) auto minmax(30px, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-top: 38px;
}

.morsel-affordability-chart__line span {
    display: grid;
    min-width: 74px;
    gap: 4px;
    padding: 12px;
    border-radius: 15px;
    background: #fff;
    color: #6e857d;
    text-align: center;
}

.morsel-affordability-chart__line span.is-current {
    background: #2f7d64;
    color: #fff;
}

.morsel-affordability-chart__line small {
    font-size: 0.58rem;
}

.morsel-affordability-chart__line b {
    font-size: 0.9rem;
}

.morsel-affordability-chart__line i {
    height: 2px;
    background: #b7cdc5;
}

.morsel-affordability-chart > p {
    margin: 18px 0 0;
    color: #667e76;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: right;
}

.morsel-pace-chart {
    display: grid;
    gap: 16px;
}

.morsel-pace-chart > div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 150px;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.morsel-pace-chart > div > span,
.morsel-variety-chart > div > span {
    color: #51685c;
    font-size: 0.72rem;
    font-weight: 700;
}

.morsel-pace-chart > div > i {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 26px;
    border-bottom: 1px solid #becfc1;
}

.morsel-pace-chart > div > i b {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #778f81;
    transform: translateY(6px);
}

.morsel-pace-chart > div > small {
    color: #718176;
    font-size: 0.68rem;
    text-align: right;
}

.morsel-pace-chart > .morsel-pace-chart__slow {
    border-color: #9bbbab;
    background: #edf6f1;
}

.morsel-pace-chart__slow > i b {
    background: #2f7d64 !important;
}

.morsel-pace-chart > p,
.morsel-variety-chart > p {
    display: flex;
    gap: 16px;
    align-items: baseline;
    margin: 14px 0 0;
    color: #6e8176;
}

.morsel-pace-chart > p strong,
.morsel-variety-chart > p strong {
    color: #2f705c;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 0.9;
}

.morsel-pace-chart > p b,
.morsel-variety-chart > p b {
    margin-left: auto;
    color: #3f6456;
    font-size: 1rem;
}

.morsel-pace-chart > p small {
    max-width: 22ch;
    font-size: 0.68rem;
}

.morsel-variety-chart {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.morsel-variety-chart > div {
    padding: 22px;
    border: 1px solid #e5d9d3;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.morsel-variety-chart > div > i {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 20px 0;
}

.morsel-variety-chart > div > i b {
    height: 62px;
    border-radius: 12px;
    background: #c8bcb6;
}

.morsel-variety-chart__many {
    border-color: #d2a990 !important;
    background: #fff8f3 !important;
}

.morsel-variety-chart__many i b:nth-child(1) {
    background: #d98e68;
}

.morsel-variety-chart__many i b:nth-child(2) {
    background: #d4b953;
}

.morsel-variety-chart__many i b:nth-child(3) {
    background: #74a27f;
}

.morsel-variety-chart__many i b:nth-child(4) {
    background: #8f7fa3;
}

.morsel-variety-chart > div > small {
    color: #806c63;
    font-size: 0.68rem;
}

.morsel-variety-chart > p {
    grid-column: 1 / -1;
}

.morsel-frozen-chart,
.morsel-exposure-chart,
.morsel-retraction-timeline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
}

.morsel-frozen-chart > div,
.morsel-exposure-chart > div,
.morsel-retraction-timeline > div {
    display: grid;
    align-content: center;
    min-height: 150px;
    padding: 20px;
    border: 1px solid #d6e2e4;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
    text-align: center;
}

.morsel-frozen-chart > i,
.morsel-exposure-chart > i,
.morsel-retraction-timeline > i {
    align-self: center;
    color: #7a989e;
    font-style: normal;
}

.morsel-frozen-chart > div > span,
.morsel-exposure-chart > div > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #dde9e9;
    color: #4b747a;
    font-weight: 700;
}

.morsel-frozen-chart > div strong,
.morsel-exposure-chart > div strong,
.morsel-retraction-timeline > div strong {
    color: #3f6265;
    font-size: 0.92rem;
}

.morsel-frozen-chart > div small,
.morsel-exposure-chart > div small,
.morsel-retraction-timeline > div small {
    margin-top: 6px;
    color: #789095;
    font-size: 0.65rem;
    line-height: 1.45;
}

.morsel-frozen-chart__cold {
    border-color: #83b4c1 !important;
    background: #eaf6f9 !important;
}

.morsel-frozen-chart__cold > span {
    background: #cce8ef !important;
    color: #28758a !important;
}

.morsel-frozen-chart > p {
    display: flex;
    grid-column: 1 / -1;
    gap: 8px;
    align-items: center;
    margin: 16px 0 0;
    color: #5c777d;
}

.morsel-frozen-chart > p b {
    padding: 8px 10px;
    border-radius: 999px;
    background: #fff;
    font-size: 0.62rem;
}

.morsel-frozen-chart > p strong {
    margin-left: auto;
    color: #28758a;
    font-size: 0.78rem;
}

.morsel-exposure-chart {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
}

.morsel-exposure-chart > div {
    min-height: 142px;
    border-color: #d9e3d0;
}

.morsel-exposure-chart > i {
    color: #8ba07d;
}

.morsel-exposure-chart > div > span {
    background: #e3eadc;
    color: #5f7652;
}

.morsel-exposure-chart__familiar {
    border-color: #9fbb8d !important;
    background: #f0f7eb !important;
}

.morsel-exposure-chart > p {
    display: flex;
    grid-column: 1 / -1;
    gap: 12px;
    align-items: center;
    margin: 18px 0 0;
    color: #66785b;
    font-size: 0.72rem;
}

.morsel-exposure-chart > p strong {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #afc49f;
    border-radius: 50%;
    color: #628050;
}

.morsel-retraction-timeline {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
}

.morsel-retraction-timeline > div {
    align-content: start;
    min-height: 190px;
    border-color: #e4d7cf;
    text-align: left;
}

.morsel-retraction-timeline time {
    margin-bottom: 18px;
    color: #a27459;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.6rem;
    line-height: 1;
}

.morsel-retraction-timeline > div > span {
    margin-top: 10px;
    color: #785f51;
    font-size: 0.72rem;
    line-height: 1.5;
}

.morsel-retraction-timeline__old {
    opacity: 0.68;
}

.morsel-retraction-timeline__old small {
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: #e9d9cf;
    color: #925c43 !important;
    font-weight: 700;
    text-transform: uppercase;
}

.morsel-retraction-timeline__notice {
    border-color: #c99779 !important;
    background: #fff7f1 !important;
}

.morsel-retraction-timeline__new {
    border-color: #9ab7aa !important;
    background: #f1f7f4 !important;
}

.morsel-retraction-timeline__new time,
.morsel-retraction-timeline__new strong {
    color: #386d59 !important;
}

.morsel-range-chart {
    padding: 28px 4px 6px;
}

.morsel-range-chart__track {
    position: relative;
    height: 24px;
    margin: 24px 0 42px;
    border-radius: 999px;
    background: #dfe5da;
}

.morsel-range-chart__fill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 15%;
    border-radius: 999px;
    background: #2f7d64;
}

.morsel-range-chart__marker {
    position: absolute;
    top: -42px;
    color: #20362d;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.45rem;
    transform: translateX(-50%);
}

.morsel-range-chart__marker::after {
    content: "";
    position: absolute;
    top: 34px;
    left: 50%;
    width: 1px;
    height: 34px;
    background: #8aa094;
}

.morsel-range-chart__marker--start {
    left: 50%;
}

.morsel-range-chart__marker--end {
    left: 65%;
}

.morsel-range-chart__labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #708279;
    font-size: 0.72rem;
}

.morsel-range-chart__labels strong {
    color: #2f7d64;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.morsel-stat-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.morsel-stat-pair > div {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.morsel-stat-pair strong,
.morsel-stat-pair span {
    display: block;
}

.morsel-stat-pair strong {
    color: #20362d;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.65rem;
    line-height: 1.1;
}

.morsel-stat-pair span {
    margin-top: 8px;
    color: #708279;
    font-size: 0.76rem;
    line-height: 1.55;
}

.morsel-bar-chart,
.morsel-percent-chart {
    display: grid;
    gap: 28px;
}

.morsel-bar-row > div:first-child,
.morsel-percent-row > div:first-child {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
    color: #52645b;
    font-size: 0.8rem;
}

.morsel-bar-row strong,
.morsel-percent-row strong {
    color: #20362d;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.55rem;
}

.morsel-bar-track,
.morsel-percent-track {
    height: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: #dce7dc;
}

.morsel-bar-track span,
.morsel-percent-track span {
    display: block;
    width: var(--bar-size);
    height: 100%;
    border-radius: inherit;
    background: #71a26f;
}

.morsel-bar-row--target .morsel-bar-track span {
    background: #2f7d64;
}

.morsel-dish-gap {
    display: grid;
    grid-template-columns: auto minmax(120px, 1fr) minmax(160px, auto);
    gap: 24px;
    align-items: center;
    margin-top: 38px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
}

.morsel-dish-gap > strong {
    color: #2f7d64;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.65rem;
}

.morsel-dish-gap > p {
    margin: 0;
    color: #61736a;
    font-size: 0.82rem;
}

.morsel-dish-gap__plates {
    display: flex;
    align-items: center;
    gap: 9px;
}

.morsel-dish-gap__plates span {
    display: block;
    width: 54px;
    aspect-ratio: 1;
    border: 8px solid #fff;
    border-radius: 50%;
    background: #8fbd7d;
    box-shadow: 0 4px 12px rgba(47, 125, 100, 0.12);
}

.morsel-dish-gap__plates .is-partial {
    clip-path: inset(0 42% 0 0);
}

.morsel-percent-row--young .morsel-percent-track span {
    background: #96aa9f;
}

.morsel-meal-trio {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 36px;
}

.morsel-meal-trio > div {
    padding: 20px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.morsel-meal-trio span {
    display: inline-flex;
    width: 54px;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #dceae1;
    color: #2f7d64;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
}

.morsel-meal-trio strong,
.morsel-meal-trio small {
    display: block;
}

.morsel-meal-trio strong {
    color: #20362d;
    font-size: 0.88rem;
}

.morsel-meal-trio small {
    margin-top: 5px;
    color: #708279;
    font-size: 0.66rem;
    line-height: 1.4;
}

.morsel-plate-chart {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: end;
    min-height: 230px;
}

.morsel-plate-chart > div {
    display: grid;
    justify-items: center;
    gap: 18px;
}

.morsel-plate-chart strong {
    color: #756553;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
}

.morsel-plate {
    display: grid;
    width: var(--plate-size);
    max-width: 100%;
    aspect-ratio: 1;
    place-items: center;
    border: 10px solid #fff;
    border-radius: 50%;
    background: #e7ded4;
    box-shadow: 0 14px 28px rgba(71, 50, 30, 0.1);
}

.morsel-plate i {
    width: var(--food-size);
    aspect-ratio: 1;
    border-radius: 48% 52% 46% 54%;
    background: #bd8251;
}

.morsel-plate--small {
    --plate-size: 112px;
    --food-size: 42%;
}

.morsel-plate--normal {
    --plate-size: 144px;
    --food-size: 54%;
}

.morsel-plate--large {
    --plate-size: 178px;
    --food-size: 67%;
}

.morsel-impact-stat {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin-top: 34px;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
}

.morsel-impact-stat strong {
    color: #9b6a3c;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    white-space: nowrap;
}

.morsel-impact-stat p {
    margin: 0;
    color: #756553;
    font-size: 0.78rem;
    line-height: 1.65;
}

.morsel-clock-chart {
    display: grid;
    gap: 26px;
    padding: 18px 2px 8px;
}

.morsel-clock-row {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 180px;
    gap: 18px;
    align-items: center;
}

.morsel-clock-row strong,
.morsel-clock-row small {
    color: #546274;
    font-size: 0.76rem;
}

.morsel-clock-row small {
    line-height: 1.45;
}

.morsel-clock-row > span {
    position: relative;
    height: 10px;
    border-radius: 999px;
    background: #d8dfec;
}

.morsel-clock-row > span::before,
.morsel-clock-row > span::after {
    position: absolute;
    top: 18px;
    color: #8a95a5;
    font-size: 0.64rem;
}

.morsel-clock-row > span::before {
    left: 0;
    content: "wake";
}

.morsel-clock-row > span::after {
    right: 0;
    content: "sleep";
}

.morsel-clock-row i {
    position: absolute;
    top: 50%;
    left: var(--at);
    width: 22px;
    height: 22px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #526b98;
    box-shadow: 0 4px 12px rgba(57, 78, 118, 0.18);
    transform: translate(-50%, -50%);
}

.morsel-clock-row--late i {
    background: #9d6c90;
}

.morsel-processed-chart {
    display: grid;
    gap: 26px;
    padding-top: 12px;
}

.morsel-processed-chart > div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) 116px;
    gap: 16px;
    align-items: center;
}

.morsel-processed-chart span,
.morsel-processed-chart strong {
    color: #756553;
    font-size: 0.76rem;
}

.morsel-processed-chart i {
    display: block;
    width: max(12px, var(--bar));
    height: 24px;
    border-radius: 999px;
    background: #d8c6a9;
}

.morsel-processed-chart .is-high i {
    background: #b7703f;
}

.morsel-processed-chart .is-high strong {
    color: #9f562a;
}

.morsel-social-chart {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: end;
    min-height: 210px;
}

.morsel-social-chart > div {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.morsel-social-chart strong {
    color: #705d56;
    font-size: 0.78rem;
}

.morsel-social-chart b {
    width: 72%;
    height: var(--social);
    min-height: 30px;
    border-radius: 14px 14px 5px 5px;
    background: linear-gradient(180deg, #b57b6b, #d7a393);
}

.morsel-seats {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    min-height: 30px;
}

.morsel-seats i {
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #865e52;
    box-shadow: 0 2px 8px rgba(77, 51, 44, 0.2);
}

.morsel-waste-chart {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    justify-content: center;
}

.morsel-waste-ring {
    display: grid;
    width: min(100%, 260px);
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(#4f805d 0 60%, #a1b88c 60% 88%, #d2c69d 88% 100%);
}

.morsel-waste-ring::before {
    grid-area: 1 / 1;
    width: 62%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #f2f8ef;
    content: "";
}

.morsel-waste-ring span {
    z-index: 1;
    grid-area: 1 / 1;
    text-align: center;
}

.morsel-waste-ring strong,
.morsel-waste-ring small {
    display: block;
}

.morsel-waste-ring strong {
    color: #315b3e;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.morsel-waste-ring small {
    color: #6c7d6c;
    font-size: 0.72rem;
}

.morsel-waste-chart ul {
    display: grid;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.morsel-waste-chart li {
    display: grid;
    grid-template-columns: 14px 54px 1fr;
    gap: 10px;
    align-items: center;
    color: #61705f;
    font-size: 0.82rem;
}

.morsel-waste-chart li > i {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: #4f805d;
}

.morsel-waste-chart li > .is-service {
    background: #a1b88c;
}

.morsel-waste-chart li > .is-retail {
    background: #d2c69d;
}

.morsel-default-chart {
    display: grid;
    gap: 24px;
}

.morsel-default-chart > div {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 100px;
    gap: 16px;
    align-items: center;
}

.morsel-default-chart strong,
.morsel-default-chart b {
    color: #665775;
    font-size: 0.76rem;
}

.morsel-default-chart b {
    text-align: right;
    white-space: nowrap;
}

.morsel-default-chart span {
    position: relative;
    height: 30px;
    border-radius: 999px;
    background: #e2d8e9;
    overflow: hidden;
}

.morsel-default-chart i::before,
.morsel-default-chart i::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-radius: 999px;
    content: "";
}

.morsel-default-chart i::before {
    z-index: 1;
    width: max(4px, var(--before));
    background: #8f779e;
}

.morsel-default-chart i::after {
    width: var(--after);
    background: #c6afd4;
}

.morsel-default-key {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
    color: #756981;
    font-size: 0.7rem;
}

.morsel-default-key span {
    display: flex;
    gap: 7px;
    align-items: center;
}

.morsel-default-key i {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: #8f779e;
}

.morsel-default-key span + span i {
    background: #c6afd4;
}

.morsel-week-chart {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
    height: 230px;
    padding-top: 20px;
}

.morsel-week-chart > div {
    display: grid;
    height: 100%;
    grid-template-rows: 1fr auto;
    gap: 12px;
    align-items: end;
}

.morsel-week-chart i {
    display: block;
    width: 100%;
    height: var(--day-size);
    border-radius: 12px 12px 5px 5px;
    background: #8aa8b5;
}

.morsel-week-chart div:nth-child(2n) i {
    background: #5e8799;
}

.morsel-week-chart span {
    color: #637984;
    font-size: 0.68rem;
    text-align: center;
}

.morsel-snapshot-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin-top: 30px;
    padding: 22px;
    border-radius: 18px;
    background: #fff;
}

.morsel-snapshot-note strong {
    color: #3e7085;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
    white-space: nowrap;
}

.morsel-snapshot-note p {
    margin: 0;
    color: #637984;
    font-size: 0.78rem;
    line-height: 1.6;
}

.morsel-data-takeaway {
    position: relative;
    overflow: hidden;
    padding: clamp(38px, 7vw, 64px);
    border-radius: 28px;
    background: #20362d;
}

.morsel-data-takeaway::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -84px;
    width: 180px;
    aspect-ratio: 1;
    border: 1px solid #547064;
    border-radius: 50%;
    box-shadow: 0 0 0 24px rgba(84, 112, 100, 0.24);
}

.morsel-data-takeaway .morsel-article-section-label {
    color: #9fc7b3;
}

.morsel-data-takeaway h2 {
    position: relative;
    z-index: 1;
    max-width: 19ch;
    margin-bottom: 0;
    color: #f7faf8;
}

.morsel-breakfast-chart {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(24px, 6vw, 54px);
    align-items: center;
}

.morsel-breakfast-chart__ring {
    display: grid;
    width: clamp(154px, 25vw, 204px);
    aspect-ratio: 1;
    place-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at center, #faf6e9 0 57%, transparent 58%), conic-gradient(#be8f3e 0 28.2%, #e9dfc8 28.2% 100%);
    text-align: center;
}

.morsel-breakfast-chart__ring strong,
.morsel-breakfast-chart__ring span,
.morsel-breakfast-chart__copy strong,
.morsel-breakfast-chart__copy span {
    display: block;
}

.morsel-breakfast-chart__ring strong {
    color: #795923;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.morsel-breakfast-chart__ring span,
.morsel-breakfast-chart__copy span {
    color: #7c735f;
    font-size: 0.76rem;
    line-height: 1.6;
}

.morsel-breakfast-chart__copy strong {
    margin-bottom: 10px;
    color: #4e462f;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.65rem, 4vw, 2.5rem);
    line-height: 1.1;
}

.morsel-week-meals {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-top: 34px;
}

.morsel-week-meals span {
    display: grid;
    min-height: 68px;
    place-content: end center;
    padding: 10px 4px;
    border-radius: 14px;
    background: #eee6d5;
    color: #8b8069;
    font-size: 0.68rem;
}

.morsel-week-meals span::before {
    content: "";
    width: 18px;
    aspect-ratio: 1;
    margin: 0 auto 9px;
    border: 2px solid #cbbd9d;
    border-radius: 50%;
}

.morsel-week-meals .is-filled::before {
    border-color: #be8f3e;
    background: #be8f3e;
    box-shadow: inset 0 0 0 4px #faf6e9;
}

.morsel-snack-meter {
    padding: 34px 4px 10px;
}

.morsel-snack-meter__track {
    position: relative;
    height: 24px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: #eadfe8;
}

.morsel-snack-meter__track span {
    display: block;
    width: var(--snack-size);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #c996b8, #9d688f);
}

.morsel-snack-meter__track i {
    position: absolute;
    top: -34px;
    left: 80%;
    color: #72506a;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    font-style: normal;
    transform: translateX(-50%);
}

.morsel-snack-meter__labels {
    display: flex;
    justify-content: space-between;
    color: #8a7484;
    font-size: 0.7rem;
}

.morsel-snack-meter__labels strong {
    color: #8b5f7f;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.morsel-snack-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.morsel-snack-cards div {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
}

.morsel-snack-cards span,
.morsel-snack-cards strong {
    display: block;
}

.morsel-snack-cards span {
    margin-bottom: 8px;
    color: #8a7484;
    font-size: 0.74rem;
}

.morsel-snack-cards strong {
    color: #65475e;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.45rem;
}

.morsel-convenience-chart {
    display: grid;
    gap: 34px;
}

.morsel-convenience-group > strong {
    display: block;
    margin-bottom: 14px;
    color: #355b5b;
    font-size: 0.86rem;
}

.morsel-convenience-group > div {
    display: grid;
    gap: 9px;
}

.morsel-convenience-group span {
    display: block;
    width: var(--bar-size);
    min-width: 128px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #4e8583;
    color: #fff;
}

.morsel-convenience-group span.is-secondary {
    background: #90aaa9;
}

.morsel-convenience-group i {
    font-size: 0.72rem;
    font-style: normal;
    white-space: nowrap;
}

.morsel-meal-builder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 38px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.morsel-meal-builder span {
    padding: 11px 14px;
    border: 1px solid #c9dddd;
    border-radius: 999px;
    color: #355b5b;
    font-size: 0.76rem;
    font-weight: 700;
    text-align: center;
}

.morsel-meal-builder b {
    color: #7b9997;
    font-weight: 400;
}

.morsel-memory-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.morsel-memory-flow > div {
    min-height: 172px;
    padding: 20px;
    border: 1px solid #e1d9ca;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
}

.morsel-memory-flow span,
.morsel-memory-flow strong,
.morsel-memory-flow small {
    display: block;
}

.morsel-memory-flow span {
    margin-bottom: 32px;
    color: #9a8d77;
    font-size: 0.7rem;
    font-weight: 700;
}

.morsel-memory-flow strong {
    margin-bottom: 9px;
    color: #544c3e;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.15;
}

.morsel-memory-flow small {
    color: #837867;
    font-size: 0.7rem;
    line-height: 1.5;
}

.morsel-memory-flow > b {
    color: #aa9e8a;
    font-weight: 400;
}

.morsel-study-count {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 24px;
    align-items: center;
    margin-top: 34px;
    padding: 22px;
    border-radius: 18px;
    background: #fff;
}

.morsel-study-count strong {
    color: #665d4d;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.7rem;
}

.morsel-study-count div {
    display: grid;
    grid-template-columns: repeat(13, minmax(4px, 1fr));
    gap: 5px;
}

.morsel-study-count i {
    height: 24px;
    border-radius: 999px;
    background: #b3a58e;
}

.morsel-study-count span {
    grid-column: 1 / -1;
    color: #837867;
    font-size: 0.72rem;
}

.morsel-ai-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.morsel-ai-stats div {
    padding: 24px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    text-align: center;
}

.morsel-ai-stats strong,
.morsel-ai-stats span {
    display: block;
}

.morsel-ai-stats strong {
    color: #285c50;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.8rem, 5vw, 2.7rem);
}

.morsel-ai-stats span {
    margin-top: 5px;
    color: #66857d;
    font-size: 0.67rem;
    letter-spacing: 0.04em;
}

.morsel-ai-visibility {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.morsel-ai-visibility div {
    padding: 24px;
    border: 1px solid #cfe2dc;
    border-radius: 18px;
    background: #e2f0ec;
}

.morsel-ai-visibility div.is-difficult {
    border-color: #ded8ca;
    background: #f4f0e8;
}

.morsel-ai-visibility small,
.morsel-ai-visibility strong {
    display: block;
}

.morsel-ai-visibility small {
    margin-bottom: 12px;
    color: #66857d;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.morsel-ai-visibility strong {
    color: #285c50;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.25;
}

.morsel-ai-visibility .is-difficult small {
    color: #867b68;
}

.morsel-ai-visibility .is-difficult strong {
    color: #5d5547;
}

.morsel-article-principle {
    position: relative;
    margin-right: clamp(-56px, -6vw, -24px);
    margin-left: clamp(-56px, -6vw, -24px);
    padding: clamp(40px, 7vw, 64px);
    border-radius: 28px;
    background: #edf3ee;
}

.morsel-article-principle::before {
    content: "“";
    position: absolute;
    top: 18px;
    right: 34px;
    color: #cfddd3;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 7rem;
    line-height: 1;
}

.morsel-article-principle h2 {
    position: relative;
    max-width: 16ch;
}

.morsel-article-principle p {
    position: relative;
    max-width: 60ch;
    margin: 0;
}

.morsel-article-principle p + p {
    margin-top: 16px;
}

.morsel-article-product {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(40px, 7vw, 72px);
    align-items: start;
}

.morsel-article-product h2 {
    margin-bottom: 0;
}

.morsel-article-product__copy p {
    margin: 0;
    color: #52645b;
}

.morsel-article-product__copy p + p {
    margin-top: 18px;
}

.morsel-article-note {
    margin: clamp(72px, 10vw, 112px) 0 0;
    padding-top: 24px;
    border-top: 1px solid #d7e2d9;
    color: #708279;
    font-size: 0.82rem !important;
    line-height: 1.75 !important;
}

.morsel-article-cta {
    padding: 0 24px clamp(72px, 10vw, 120px);
}

.morsel-article-cta__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(24px, 5vw, 48px);
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
    padding: clamp(36px, 6vw, 58px);
    border-radius: 30px;
    background: #20362d;
    color: #edf3ee;
}

.morsel-article-cta__inner > img {
    border-radius: 22%;
    box-shadow: 0 12px 28px rgba(11, 27, 20, 0.28);
}

.morsel-article-cta .morsel-article-kicker {
    margin-bottom: 10px;
    color: #9fc7b3;
}

.morsel-article-cta h2 {
    max-width: 18ch;
    margin: 0;
    color: #f7faf8;
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.morsel-article-cta__copy > p:last-child {
    margin: 14px 0 0;
    color: #c8d8cf;
    font-size: 0.92rem;
}

.morsel-article-cta .morsel-store {
    flex-direction: column;
    align-items: stretch;
}

.morsel-article-cta .morsel-store__link {
    width: 190px;
    border-color: #edf3ee;
    background: #f7faf8;
    color: #20362d;
}

.morsel-article-cta .morsel-store__link:hover {
    background: #edf3ee;
    color: #20362d;
}

.morsel-store__link:active {
    transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
    .morsel-note-card:hover {
        border-color: #a9c2b2;
        transform: translateY(-3px);
        box-shadow: 0 16px 34px rgba(32, 54, 45, 0.1);
    }

    .morsel-note-card:hover .morsel-note-card__arrow {
        transform: translateX(5px);
    }

    .morsel-reading-link:hover .morsel-reading-link__arrow {
        transform: translateX(6px);
    }

    .morsel-article-back:hover {
        transform: translateX(-3px);
    }
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.features-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.feature {
    text-align: center;
    padding: 24px;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature p {
    color: #6b5744;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 24px;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2b180a;
    color: #fcf6ef;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.step h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.step p {
    color: #6b5744;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ============================================
   Legal Pages (Privacy, Terms)
   ============================================ */

.legal {
    padding-top: 60px;
    padding-bottom: 80px;
    max-width: 100%;
    overflow-x: hidden;
}

.legal h1 {
    font-size: clamp(2rem, 6vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: 40px;
    overflow-wrap: anywhere;
}

.legal h2 {
    font-size: 1.4rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #2b180a;
}

.legal p, .legal li {
    color: #4a3020;
    font-size: 0.95rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.legal ul {
    padding-left: 20px;
}

.legal li {
    margin-bottom: 8px;
}

.legal a {
    color: #9b6a3c;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal strong {
    color: #2b180a;
}

.legal__footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e8d3c0;
}

.legal__footer p {
    color: #9b8a7a;
    font-size: 0.85rem;
}

html[data-embedded="true"] .nav {
    position: static;
    padding: 8px 0 0;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
}

html[data-embedded="true"] .nav .container {
    justify-content: flex-end;
    padding-left: max(18px, calc(env(safe-area-inset-left) + 16px));
    padding-right: max(18px, calc(env(safe-area-inset-right) + 16px));
}

html[data-embedded="true"] .nav__brand {
    display: none;
}

html[data-embedded="true"] .nav__actions {
    margin-left: 0;
}

html[data-embedded="true"] .container--narrow {
    padding-left: max(20px, calc(env(safe-area-inset-left) + 16px));
    padding-right: max(20px, calc(env(safe-area-inset-right) + 16px));
}

html[data-embedded="true"] .legal {
    padding-top: 16px;
    padding-bottom: 56px;
}

html[data-embedded="true"] .legal h1 {
    display: none;
}

/* ============================================
   404 Page
   ============================================ */

.not-found {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
}

.not-found__code {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 6rem;
    color: #dab697;
    line-height: 1;
    margin-bottom: 12px;
}

.not-found h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.not-found p {
    color: #6b5744;
    font-size: 1rem;
    margin-bottom: 28px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
    .morsel-note-library__heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .products-grid,
    .app-hero .container,
    .features-grid--three,
    .steps-grid,
    .morsel-feature-list,
    .service-spotlight {
        grid-template-columns: 1fr;
    }

    .app-hero .container,
    .app-hero__content {
        text-align: center;
    }

    .app-hero__badges,
    .morsel-store {
        justify-content: center;
    }

    .morsel-store {
        flex-direction: column;
        gap: 10px;
    }

    .morsel-store__link {
        width: min(100%, 230px);
        justify-content: flex-start;
    }

    .morsel-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .morsel-article-product {
        grid-template-columns: 1fr;
    }

    .morsel-estimate-grid {
        grid-template-columns: 1fr;
    }

    .morsel-estimate-card {
        min-height: 0;
    }

    .morsel-estimate-card h3 {
        min-height: 0;
    }

    .morsel-article-cta__inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .morsel-article-cta .morsel-store {
        grid-column: 1 / -1;
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .morsel-note-grid {
        grid-template-columns: 1fr;
    }

    .morsel-note-card,
    .morsel-note-card--featured {
        grid-column: auto;
        min-height: 210px;
        padding: 24px;
    }

    .morsel-note-card--featured strong {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .morsel-data-figure {
        margin-right: -4px;
        margin-left: -4px;
        padding: 24px 20px;
        border-radius: 22px;
    }

    .morsel-data-figure figcaption {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .morsel-data-figure figcaption a {
        text-align: left;
    }

    .morsel-stat-pair,
    .morsel-meal-trio {
        grid-template-columns: 1fr;
    }

    .morsel-breakfast-chart,
    .morsel-memory-flow,
    .morsel-ai-visibility {
        grid-template-columns: 1fr;
    }

    .morsel-sleep-chart {
        grid-template-columns: 1fr;
    }

    .morsel-sleep-chart__night {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .morsel-sleep-chart__night b {
        grid-column: 2;
    }

    .morsel-sleep-chart__result {
        grid-column: auto;
        grid-row: auto;
    }

    .morsel-attention-flow,
    .morsel-sequence-chart__path {
        grid-template-columns: 1fr;
    }

    .morsel-attention-flow > div {
        min-height: 130px;
    }

    .morsel-attention-flow > i,
    .morsel-sequence-chart__path > i {
        transform: rotate(90deg);
        text-align: center;
    }

    .morsel-label-chart {
        grid-template-columns: 1fr;
    }

    .morsel-label-chart > p {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .morsel-affordability-chart__hero {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .morsel-affordability-chart__line {
        grid-template-columns: 1fr;
    }

    .morsel-affordability-chart__line i {
        width: 2px;
        height: 18px;
        justify-self: center;
    }

    .morsel-pace-chart > div {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .morsel-pace-chart > div > small {
        text-align: left;
    }

    .morsel-pace-chart > p,
    .morsel-variety-chart > p {
        flex-wrap: wrap;
    }

    .morsel-pace-chart > p b,
    .morsel-variety-chart > p b {
        width: 100%;
        margin-left: 0;
    }

    .morsel-pace-chart > p small {
        max-width: none;
    }

    .morsel-variety-chart {
        grid-template-columns: 1fr;
    }

    .morsel-variety-chart > p {
        grid-column: auto;
    }

    .morsel-frozen-chart,
    .morsel-exposure-chart,
    .morsel-retraction-timeline {
        grid-template-columns: 1fr;
    }

    .morsel-frozen-chart > i,
    .morsel-exposure-chart > i,
    .morsel-retraction-timeline > i {
        transform: rotate(90deg);
        text-align: center;
    }

    .morsel-frozen-chart > p,
    .morsel-exposure-chart > p {
        grid-column: auto;
        flex-wrap: wrap;
    }

    .morsel-frozen-chart > p strong {
        width: 100%;
        margin-left: 0;
    }

    .morsel-clock-row {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 12px;
    }

    .morsel-clock-row small {
        grid-column: 2;
    }

    .morsel-processed-chart > div {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 10px;
    }

    .morsel-processed-chart strong {
        grid-column: 2;
    }

    .morsel-social-chart {
        gap: 10px;
        min-height: 180px;
    }

    .morsel-waste-chart {
        grid-template-columns: 1fr;
    }

    .morsel-waste-ring {
        max-width: 220px;
        margin: 0 auto;
    }

    .morsel-default-chart > div {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 10px;
    }

    .morsel-default-chart b {
        grid-column: 2;
        text-align: left;
    }

    .morsel-breakfast-chart__ring {
        margin: 0 auto;
    }

    .morsel-breakfast-chart__copy {
        text-align: center;
    }

    .morsel-snack-cards,
    .morsel-ai-stats {
        grid-template-columns: 1fr;
    }

    .morsel-memory-flow > b {
        transform: rotate(90deg);
        text-align: center;
    }

    .morsel-memory-flow > div {
        min-height: 0;
    }

    .morsel-memory-flow span {
        margin-bottom: 18px;
    }

    .morsel-meal-builder {
        align-items: stretch;
        flex-direction: column;
    }

    .morsel-meal-builder b {
        line-height: 1;
        text-align: center;
    }

    .morsel-dish-gap,
    .morsel-impact-stat,
    .morsel-snapshot-note {
        grid-template-columns: 1fr;
    }

    .morsel-plate-chart {
        gap: 8px;
        min-height: 180px;
    }

    .morsel-plate {
        border-width: 7px;
    }

    .morsel-plate--small {
        --plate-size: 78px;
    }

    .morsel-plate--normal {
        --plate-size: 96px;
    }

    .morsel-plate--large {
        --plate-size: 114px;
    }

    .morsel-week-chart {
        gap: 6px;
        height: 190px;
    }

    .hero {
        padding: 72px 0 64px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero__actions {
        justify-content: center;
    }

    .section__title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .section__title--left {
        margin-bottom: 18px;
    }

    .morsel-hero__image img {
        width: min(100%, 290px);
    }

    .app-hero__title {
        font-size: 2.2rem;
    }

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

    .nav .container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav__actions {
        gap: 10px;
    }

    .nav__links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: calc(100% + 12px);
        left: 24px;
        right: 24px;
        background: #fcf6ef;
        border: 1px solid #e8d3c0;
        border-radius: 16px;
        padding: 20px 24px;
        gap: 16px;
        margin: 0;
        box-shadow: 0 18px 36px rgba(43, 24, 10, 0.08);
    }

    .nav__links.active {
        display: flex;
    }

    .nav__toggle {
        display: block;
    }

    .lang-switch__button {
        padding: 6px 9px;
    }

    .container--narrow {
        padding: 0 20px;
    }

    .legal {
        padding-top: 36px;
        padding-bottom: 72px;
    }

    .legal h1 {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: 32px;
    }

    .legal h2 {
        font-size: 1.25rem;
        line-height: 1.35;
        margin-top: 36px;
        margin-bottom: 12px;
    }

    .legal p,
    .legal li {
        font-size: 0.94rem;
        line-height: 1.85;
    }

    html[data-embedded="true"] .nav {
        padding-top: 6px;
    }

    html[data-embedded="true"] .nav .container {
        flex-wrap: nowrap;
        gap: 0;
    }

    html[data-embedded="true"] .legal {
        padding-top: 14px;
        padding-bottom: 56px;
    }

    html[data-embedded="true"] .legal h2:first-of-type {
        margin-top: 0;
    }

    .product-card {
        padding: 28px;
    }

    .profile-hero {
        padding: 72px 0 56px;
    }

    .profile-hero__title {
        font-size: 2.5rem;
    }

    .profile-hero__actions {
        gap: 10px;
    }

    .detail-table th,
    .detail-table td {
        display: block;
        width: 100%;
        padding: 18px 20px;
    }

    .detail-table th {
        border-bottom: none;
        padding-bottom: 8px;
    }

    .detail-table td {
        padding-top: 0;
    }

    .contact-band {
        padding: 32px 20px;
    }

    .morsel-reading-list {
        margin-top: 42px;
    }

    .morsel-reading-link {
        gap: 18px;
        padding: 22px 0;
    }

    .morsel-signal-grid {
        grid-template-columns: 1fr;
    }

    .morsel-signal-panel {
        padding: 24px;
    }

    .morsel-article-hero {
        padding-right: 20px;
        padding-left: 20px;
    }

    .morsel-article-hero::after {
        opacity: 0.7;
    }

    .morsel-article-heading {
        grid-template-columns: 1fr;
    }

    .morsel-article-heading h1,
    .morsel-article-hero--en .morsel-article-heading h1 {
        max-width: 13ch;
        font-size: clamp(2.55rem, 13vw, 4.2rem);
        line-height: 1;
    }

    .morsel-article-icon {
        grid-row: 1;
        width: 60px;
    }

    .morsel-article-body {
        padding-right: 20px;
        padding-left: 20px;
    }

    .morsel-article-principle {
        margin-right: 0;
        margin-left: 0;
        border-radius: 22px;
    }

    .morsel-reason {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
    }

    .morsel-article-cta {
        padding-right: 16px;
        padding-left: 16px;
    }

    .morsel-article-cta__inner {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .morsel-article-cta .morsel-store {
        grid-column: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .morsel-article-cta .morsel-store__link {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skip-link,
    .morsel-note-card,
    .morsel-note-card__arrow,
    .morsel-reading-link,
    .morsel-reading-link__arrow,
    .morsel-article-back,
    .morsel-store__link {
        transition-duration: 0.01ms;
    }
}
