:root {
    --paper: #f3f1e9;
    --paper-deep: #e9e5da;
    --white: #fffdf8;
    --ink: #14231e;
    --muted: #60706a;
    --line: rgba(20, 35, 30, 0.14);
    --green: #173c32;
    --green-deep: #0d2922;
    --lime: #d6f76a;
    --lime-deep: #badf43;
    --coral: #f16f5c;
    --coral-soft: #ffd4cb;
    --shadow: 0 30px 80px rgba(28, 46, 40, 0.14);
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 42px;
}

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

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

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 11% 4%,
            rgba(214, 247, 106, 0.2),
            transparent 25rem
        ),
        var(--paper);
    color: var(--ink);
    font-family: Inter, 'SF Pro Display', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--lime);
    color: var(--green-deep);
}

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

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

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

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
    margin-top: 0;
}

.shell {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    transform: translateY(-150%);
    border-radius: 999px;
    background: var(--lime);
    color: var(--green-deep);
    font-weight: 700;
    transition: transform 180ms ease;
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(20, 35, 30, 0.08);
    background: rgba(243, 241, 233, 0.86);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    position: relative;
    display: block;
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    transform: rotate(-5deg);
    border: 2px solid var(--green-deep);
    border-radius: 50% 50% 50% 12px;
}

.brand-mark::before {
    position: absolute;
    top: 9px;
    left: 5px;
    width: 17px;
    height: 8px;
    transform: rotate(-35deg);
    border: 2px solid var(--green-deep);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lime) 50%, var(--coral) 50%);
    content: '';
}

.brand-mark::after {
    position: absolute;
    right: -4px;
    bottom: -3px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--paper);
    border-radius: 50%;
    background: var(--coral);
    content: '';
}

.brand-name {
    color: var(--green-deep);
    font-size: 1.32rem;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1;
}

.brand-name > span {
    color: var(--coral);
}

.brand-by {
    color: var(--muted);
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 38px);
    color: #44524d;
    font-size: 0.9rem;
    font-weight: 650;
}

.header-nav a,
.site-footer nav a {
    position: relative;
    transition: color 180ms ease;
}

.header-nav a::after,
.site-footer nav a::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--coral);
    content: '';
    transition: transform 180ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
    color: var(--ink);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    padding: 10px 17px;
    border: 1px solid var(--green);
    border-radius: 999px;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 750;
    transition:
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
    transform: translateY(-2px);
    background: var(--green);
    color: var(--white);
}

.hero {
    position: relative;
    padding: clamp(52px, 7vw, 92px) 0 clamp(84px, 10vw, 138px);
}

.hero::after {
    position: absolute;
    right: 6vw;
    bottom: 5%;
    width: 84px;
    height: 84px;
    border: 1px solid rgba(23, 60, 50, 0.16);
    border-radius: 50%;
    content: '';
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.82fr);
    align-items: center;
    gap: clamp(42px, 7vw, 98px);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker,
.launch-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 27px;
    height: 10px;
    border-radius: 999px;
    background: var(--coral);
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 30px;
    font-size: clamp(3.25rem, 6.4vw, 6.25rem);
    font-weight: 770;
    letter-spacing: -0.075em;
    line-height: 0.94;
}

.hero h1 em {
    position: relative;
    color: var(--coral);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.hero h1 em::after {
    position: absolute;
    right: 0.04em;
    bottom: -0.05em;
    left: 0.05em;
    height: 0.09em;
    border-radius: 999px;
    background: currentColor;
    content: '';
    opacity: 0.5;
    transform: rotate(-1.5deg);
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 36px;
    color: #4c5c56;
    font-size: clamp(1.08rem, 1.7vw, 1.3rem);
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 780;
    line-height: 1;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--green);
    box-shadow: 0 12px 30px rgba(23, 60, 50, 0.2);
    color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 18px 36px rgba(23, 60, 50, 0.27);
}

.button-quiet {
    border-color: var(--line);
    background: rgba(255, 253, 248, 0.54);
    color: var(--ink);
}

.button-quiet:hover,
.button-quiet:focus-visible {
    background: var(--white);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 0;
    color: #52625c;
    font-size: 0.8rem;
    list-style: none;
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-trust span {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: rgba(23, 60, 50, 0.1);
    color: var(--green);
    font-size: 0.66rem;
    font-weight: 900;
}

.hero-figure {
    position: relative;
    min-height: 700px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(214, 247, 106, 0.42),
            transparent 13rem
        ),
        radial-gradient(
            circle at 15% 76%,
            rgba(241, 111, 92, 0.36),
            transparent 14rem
        ),
        linear-gradient(150deg, #214f42, var(--green-deep));
    box-shadow: var(--shadow);
    isolation: isolate;
}

.hero-figure::before,
.hero-figure::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    content: '';
}

.hero-figure::before {
    top: -150px;
    right: -140px;
    width: 410px;
    height: 410px;
}

.hero-figure::after {
    bottom: -190px;
    left: -160px;
    width: 440px;
    height: 440px;
}

.phone {
    position: absolute;
    z-index: 3;
    top: 40px;
    left: 50%;
    width: 322px;
    height: 650px;
    padding: 10px;
    transform: translateX(-50%) rotate(2.2deg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: #0c1714;
    box-shadow: 0 46px 80px rgba(0, 0, 0, 0.38);
}

.phone::before {
    position: absolute;
    z-index: 5;
    top: 17px;
    left: 50%;
    width: 84px;
    height: 22px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #0c1714;
    content: '';
}

.phone-screen {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
    background: #f8f7f2;
    color: #17231f;
}

.phone-status {
    display: flex;
    height: 43px;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    font-size: 0.62rem;
    font-weight: 800;
}

.phone-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px 16px;
}

.phone-heading p {
    margin-bottom: 2px;
    color: #75807b;
    font-size: 0.65rem;
}

.phone-heading h2 {
    margin: 0;
    font-size: 1.48rem;
    letter-spacing: -0.05em;
}

.phone-avatar {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--coral-soft);
    color: #7c2b20;
    font-size: 0.8rem;
    font-weight: 850;
}

.day-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 0 18px 17px;
}

.day-strip span {
    display: flex;
    height: 54px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #34423d;
    font-size: 0.75rem;
    font-weight: 800;
}

.day-strip small {
    margin-bottom: 3px;
    color: #98a09d;
    font-size: 0.48rem;
    letter-spacing: 0.08em;
}

.day-strip .is-today {
    background: var(--green);
    box-shadow: 0 9px 19px rgba(23, 60, 50, 0.17);
    color: white;
}

.day-strip .is-today small {
    color: var(--lime);
}

.phone-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 18px 13px;
    padding: 11px 14px;
    border-radius: 17px;
    background: #edf3d4;
}

.phone-summary p {
    flex: 1;
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.32;
}

.phone-summary small {
    color: #657057;
    font-size: 0.55rem;
}

.summary-dot {
    width: 10px;
    height: 10px;
    border: 3px solid white;
    border-radius: 50%;
    background: #87a91c;
    box-shadow: 0 0 0 1px rgba(84, 105, 18, 0.24);
}

.dose-list {
    display: grid;
    gap: 8px;
    padding: 0 18px;
}

.dose-card {
    display: grid;
    grid-template-columns: 43px 1fr 30px;
    align-items: center;
    gap: 9px;
    min-height: 70px;
    padding: 10px 11px;
    border: 1px solid rgba(20, 35, 30, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(35, 49, 44, 0.05);
}

.dose-card time {
    color: #65716d;
    font-size: 0.64rem;
    font-weight: 800;
}

.dose-copy h3 {
    margin: 0 0 1px;
    font-size: 0.72rem;
    letter-spacing: -0.02em;
}

.dose-copy p {
    margin: 0;
    color: #89918e;
    font-size: 0.53rem;
    line-height: 1.25;
}

.dose-check,
.dose-action {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 900;
}

.dose-check {
    background: var(--green);
    color: var(--lime);
}

.dose-action {
    border: 1px solid rgba(23, 60, 50, 0.19);
    color: var(--green);
}

.dose-card.is-done {
    opacity: 0.7;
}

.family-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 13px 18px 0;
    padding: 10px 12px;
    border-radius: 17px;
    background: #f2e9df;
}

.family-note-avatar {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--coral);
    color: white;
    font-size: 0.62rem;
    font-weight: 800;
}

.family-note p {
    margin: 0;
    font-size: 0.56rem;
    line-height: 1.3;
}

.family-note small {
    color: #8d8580;
    font-size: 0.5rem;
}

.phone-home {
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 91px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #1e2825;
}

.hero-sticker {
    position: absolute;
    z-index: 5;
    display: flex;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.hero-sticker-top {
    top: 82px;
    left: 24px;
    width: 145px;
    flex-direction: column;
    padding: 17px;
    transform: rotate(-6deg);
    border-radius: 20px;
    background: var(--lime);
    color: var(--green-deep);
}

.hero-sticker-top span {
    margin-bottom: 9px;
    font-size: 0.6rem;
    font-weight: 750;
}

.hero-sticker-top strong {
    font-size: 2.3rem;
    letter-spacing: -0.08em;
    line-height: 1;
}

.hero-sticker-top small {
    font-size: 0.56rem;
}

.hero-sticker-bottom {
    right: 17px;
    bottom: 51px;
    align-items: center;
    gap: 10px;
    max-width: 205px;
    padding: 12px 15px;
    transform: rotate(-2deg);
    border-radius: 18px;
    background: var(--white);
    color: var(--ink);
}

.sticker-check {
    display: grid;
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--lime);
    font-size: 0.72rem;
    font-weight: 900;
}

.hero-sticker-bottom p {
    margin: 0;
    font-size: 0.64rem;
    line-height: 1.35;
}

.hero-sticker-bottom small {
    display: block;
    color: #8b9591;
    font-size: 0.54rem;
}

.hero-figure figcaption {
    position: absolute;
    z-index: 4;
    right: 18px;
    bottom: 15px;
    left: 18px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.55rem;
    text-align: center;
}

.problem-section,
.features-section,
.people-section,
.faq-section {
    padding: clamp(84px, 10vw, 142px) 0;
}

.problem-section {
    background: var(--white);
}

.section-heading {
    max-width: 790px;
    margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading-wide {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.5fr);
    column-gap: 70px;
}

.section-heading-wide .section-kicker {
    grid-column: 1 / -1;
}

.section-heading h2,
.how-intro h2,
.safety-copy h2,
.faq-intro h2 {
    margin-bottom: 0;
    font-size: clamp(2.5rem, 5vw, 4.65rem);
    font-weight: 760;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.section-heading > p:last-child {
    align-self: end;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

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

.problem-card {
    min-height: 300px;
    padding: clamp(25px, 3.5vw, 40px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #f7f5ef;
}

.problem-card-accent {
    background: var(--coral-soft);
}

.problem-number {
    display: inline-block;
    margin-bottom: 68px;
    color: var(--coral);
    font-family: Georgia, serif;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 700;
}

.problem-card-accent .problem-number {
    color: #9d382b;
}

.problem-card h3 {
    max-width: 320px;
    margin-bottom: 14px;
    font-size: 1.35rem;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.problem-card p {
    max-width: 330px;
    margin: 0;
    color: #5d6a65;
    font-size: 0.9rem;
    line-height: 1.65;
}

.features-section {
    background:
        linear-gradient(rgba(23, 60, 50, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 60, 50, 0.035) 1px, transparent 1px),
        var(--paper);
    background-size: 32px 32px;
}

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

.feature-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    padding: clamp(25px, 3.5vw, 40px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.feature-card h3 {
    max-width: 430px;
    margin-bottom: 13px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.feature-card p {
    max-width: 530px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.feature-tag,
.person-role {
    display: inline-flex;
    margin-bottom: 21px;
    color: var(--coral);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.feature-symbol {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 42px;
    place-items: center;
    border-radius: 50%;
    font-size: 1.7rem;
    font-weight: 450;
}

.feature-symbol-lime {
    background: var(--lime);
    color: var(--green-deep);
}

.feature-symbol-coral {
    background: var(--coral);
    color: white;
}

.feature-card-schedule {
    display: grid;
    min-height: 430px;
    grid-column: span 8;
    grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.7fr);
    align-items: end;
    gap: 35px;
    background: var(--green);
    color: white;
}

.feature-card-schedule .feature-tag {
    color: var(--lime);
}

.feature-card-schedule p,
.feature-card-chat p {
    color: rgba(255, 255, 255, 0.7);
}

.mini-schedule {
    display: grid;
    gap: 9px;
    padding: 15px;
    transform: rotate(1.5deg);
    border-radius: 24px;
    background: #f7f5ee;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    color: var(--ink);
}

.mini-schedule > div {
    display: grid;
    grid-template-columns: 43px 8px 1fr 28px;
    align-items: center;
    gap: 9px;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(20, 35, 30, 0.08);
}

.mini-schedule > div:last-child {
    border-bottom: 0;
}

.mini-schedule time {
    color: #6f7a76;
    font-size: 0.63rem;
    font-weight: 750;
}

.mini-schedule div > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
}

.mini-schedule p {
    margin: 0;
    color: var(--ink);
    font-size: 0.68rem;
    line-height: 1.3;
}

.mini-schedule small {
    display: block;
    color: #89938f;
    font-size: 0.53rem;
}

.mini-schedule b {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: rgba(23, 60, 50, 0.09);
    color: var(--green);
    font-size: 0.65rem;
}

.feature-card-family {
    grid-column: span 4;
    background: #fff7f3;
}

.family-stack {
    display: flex;
    margin-top: 33px;
}

.family-stack span {
    display: grid;
    width: 47px;
    height: 47px;
    margin-left: -10px;
    place-items: center;
    border: 3px solid #fff7f3;
    border-radius: 50%;
    background: var(--coral-soft);
    color: #80382e;
    font-size: 0.7rem;
    font-weight: 850;
}

.family-stack span:first-child {
    margin-left: 0;
    background: var(--green);
    color: var(--lime);
}

.family-stack span:nth-child(3) {
    background: #e1eec6;
    color: var(--green);
}

.family-stack span:last-child {
    background: var(--paper-deep);
    color: var(--green);
}

.feature-card-scan,
.feature-card-stock,
.feature-card-tasks {
    grid-column: span 4;
}

.feature-card-scan {
    padding-top: 230px;
}

.scan-visual {
    position: absolute;
    top: 28px;
    right: 30px;
    left: 30px;
    height: 170px;
    overflow: hidden;
    border-radius: 20px;
    background: #e7ece6;
}

.scan-paper {
    position: absolute;
    top: 22px;
    left: 50%;
    display: grid;
    width: 150px;
    gap: 12px;
    padding: 25px 22px;
    transform: translateX(-50%) rotate(-4deg);
    border-radius: 6px;
    background: white;
    box-shadow: 0 15px 30px rgba(18, 39, 31, 0.13);
}

.scan-paper span {
    height: 5px;
    border-radius: 99px;
    background: #d7ddd9;
}

.scan-paper span:nth-child(2) {
    width: 75%;
}

.scan-paper span:nth-child(3) {
    width: 90%;
}

.scan-line {
    position: absolute;
    z-index: 2;
    top: 76px;
    right: 23px;
    left: 23px;
    height: 2px;
    background: var(--coral);
    box-shadow: 0 0 15px var(--coral);
}

.scan-result {
    position: absolute;
    z-index: 3;
    right: 13px;
    bottom: 13px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--green);
    color: white;
    font-size: 0.56rem;
    font-weight: 750;
}

.scan-result b {
    color: var(--lime);
}

.feature-card-stock {
    background: var(--lime);
}

.feature-card-stock .feature-tag {
    color: #51650f;
}

.feature-card-stock p {
    color: #4b591f;
}

.stock-meter {
    margin-top: 44px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.56);
}

.stock-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.68rem;
}

.stock-top strong {
    color: #50630f;
    font-size: 0.7rem;
}

.stock-track {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(23, 60, 50, 0.12);
}

.stock-track span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: var(--green);
}

.stock-meter > small {
    color: #607020;
    font-size: 0.56rem;
}

.feature-card-tasks .feature-symbol {
    position: absolute;
    top: 30px;
    right: 30px;
    margin: 0;
}

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

.task-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 13px;
    border-radius: 15px;
    background: #f0eee7;
}

.task-list li > span {
    display: grid;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    place-items: center;
    border: 1px solid rgba(23, 60, 50, 0.18);
    border-radius: 50%;
    color: var(--green);
    font-size: 0.55rem;
    font-weight: 900;
}

.task-list li:first-child > span {
    background: var(--green);
    color: var(--lime);
}

.task-list p {
    margin: 0;
    color: var(--ink);
    font-size: 0.65rem;
    line-height: 1.3;
}

.task-list small {
    display: block;
    color: #8c9692;
    font-size: 0.52rem;
}

.feature-card-chat {
    display: grid;
    min-height: 360px;
    grid-column: span 12;
    grid-template-columns: minmax(0, 0.8fr) minmax(330px, 0.9fr);
    align-items: center;
    gap: 60px;
    background: #d55f4f;
    color: white;
}

.feature-card-chat .feature-tag {
    color: var(--coral-soft);
}

.chat-preview {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    transform: rotate(-1deg);
    border-radius: 28px;
    background: #f9f6ef;
    box-shadow: 0 24px 50px rgba(101, 32, 23, 0.24);
}

.chat-preview p {
    max-width: 77%;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 17px;
    color: var(--ink);
    font-size: 0.7rem;
    line-height: 1.45;
}

.chat-in {
    align-self: flex-start;
    border-bottom-left-radius: 5px !important;
    background: white;
}

.chat-out {
    align-self: flex-end;
    border-bottom-right-radius: 5px !important;
    background: #dcecab;
}

.chat-out span {
    color: #4d6d39;
    font-size: 0.55rem;
}

.chat-preview > small {
    margin-top: 14px;
    color: #89918e;
    font-size: 0.54rem;
    text-align: center;
}

.how-section {
    padding: clamp(84px, 10vw, 145px) 0;
    background: var(--green-deep);
    color: white;
}

.how-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(430px, 0.78fr);
    gap: clamp(70px, 11vw, 150px);
}

.how-intro {
    position: sticky;
    top: 135px;
    align-self: start;
}

.how-intro .section-kicker {
    color: var(--lime);
}

.how-intro > p:not(.section-kicker) {
    max-width: 480px;
    margin: 28px 0;
    color: rgba(255, 255, 255, 0.67);
    line-height: 1.75;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(214, 247, 106, 0.45);
    color: var(--lime);
    font-size: 0.9rem;
    font-weight: 750;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translateX(5px);
}

.steps-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-list li {
    display: grid;
    min-height: 180px;
    grid-template-columns: 65px 1fr;
    gap: 25px;
    padding: 12px 0 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.steps-list li + li {
    padding-top: 38px;
}

.step-number {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--lime);
    font-family: Georgia, serif;
    font-style: italic;
}

.steps-list h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.steps-list p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, 0.63);
    line-height: 1.7;
}

.people-section {
    background: var(--white);
}

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

.person-card {
    min-height: 440px;
    padding: clamp(28px, 3.5vw, 42px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
}

.person-card h3 {
    margin: 36px 0 16px;
    font-size: 2rem;
    letter-spacing: -0.055em;
}

.person-card > p {
    margin-bottom: 43px;
    color: var(--muted);
    line-height: 1.7;
}

.person-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    font-size: 0.82rem;
    list-style: none;
}

.person-card li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.person-card li::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
    content: '';
}

.person-card-dark {
    background: var(--green);
    color: white;
}

.person-card-dark .person-role {
    color: var(--lime);
}

.person-card-dark > p {
    color: rgba(255, 255, 255, 0.67);
}

.person-card-dark li::before {
    background: var(--lime);
}

.person-card-lime {
    background: var(--lime);
}

.person-card-lime .person-role {
    color: #526313;
}

.person-card-lime > p {
    color: #485326;
}

.person-card-lime li::before {
    background: var(--green);
}

.safety-section {
    padding: clamp(84px, 10vw, 145px) 0;
    background: #d35d4d;
    color: white;
}

.safety-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.67fr);
    align-items: center;
    gap: clamp(60px, 9vw, 120px);
}

.section-kicker-light {
    color: #ffe2dc;
}

.safety-lead {
    max-width: 650px;
    margin: 28px 0 50px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.75;
}

.safety-points {
    display: grid;
    gap: 0;
}

.safety-points article {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.safety-points article > span {
    color: #ffc9bf;
    font-family: Georgia, serif;
    font-size: 0.74rem;
    font-style: italic;
}

.safety-points h3 {
    margin-bottom: 7px;
    font-size: 1.05rem;
}

.safety-points p {
    margin: 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 0.88rem;
    line-height: 1.65;
}

.safety-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(
            circle at 88% 0,
            rgba(214, 247, 106, 0.33),
            transparent 14rem
        ),
        var(--green-deep);
    box-shadow: 0 35px 70px rgba(89, 26, 18, 0.24);
}

.shield-mark {
    display: grid;
    width: 76px;
    height: 88px;
    margin-bottom: 75px;
    place-items: center;
    border-radius: 38px 38px 52px 52px;
    background: var(--lime);
    color: var(--green-deep);
    clip-path: polygon(50% 0, 92% 16%, 88% 65%, 50% 100%, 12% 65%, 8% 16%);
}

.shield-mark span {
    font-size: 1.3rem;
    font-weight: 900;
}

.safety-panel-label {
    margin-bottom: 16px;
    color: var(--lime);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.safety-panel blockquote {
    margin-bottom: 48px;
    font-size: clamp(1.45rem, 2.8vw, 2.15rem);
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.22;
}

.safety-panel-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.safety-panel-footer span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.58rem;
}

.medical-note {
    padding: 40px 0;
    background: var(--lime);
    color: var(--green-deep);
}

.medical-note-inner {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: start;
    gap: 26px;
}

.medical-note-mark {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 2px solid var(--green-deep);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 800;
}

.medical-note h2 {
    margin-bottom: 7px;
    font-size: 1.15rem;
    letter-spacing: -0.025em;
}

.medical-note p {
    max-width: 970px;
    margin: 0;
    color: #43521c;
    font-size: 0.86rem;
    line-height: 1.65;
}

.faq-section {
    background: var(--paper);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(480px, 0.9fr);
    gap: clamp(65px, 10vw, 140px);
}

.faq-intro > p:last-child {
    max-width: 330px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

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

.faq-list summary {
    display: grid;
    min-height: 88px;
    grid-template-columns: 1fr 32px;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
    cursor: pointer;
    font-size: 1.04rem;
    font-weight: 750;
    letter-spacing: -0.025em;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 1px;
    transform: translate(-50%, -50%);
    background: var(--green);
    content: '';
    transition: transform 180ms ease;
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
    max-width: 690px;
    margin: -4px 50px 28px 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.75;
}

.launch-section {
    padding: 0 0 clamp(70px, 9vw, 120px);
    background: var(--paper);
}

.launch-card {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    padding: clamp(54px, 8vw, 100px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(
            circle at 88% 14%,
            rgba(214, 247, 106, 0.24),
            transparent 18rem
        ),
        var(--green);
    color: white;
    isolation: isolate;
}

.launch-card > *:not(.launch-orbit):not(.launch-wordmark) {
    position: relative;
    z-index: 2;
}

.launch-kicker {
    color: var(--lime);
}

.launch-card h2 {
    max-width: 790px;
    margin-bottom: 28px;
    font-size: clamp(3rem, 6.2vw, 6rem);
    font-weight: 740;
    letter-spacing: -0.075em;
    line-height: 0.92;
}

.launch-card > p:not(.launch-kicker) {
    max-width: 510px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.68);
}

.button-light {
    background: var(--lime);
    color: var(--green-deep);
}

.button-light:hover,
.button-light:focus-visible {
    box-shadow: 0 17px 35px rgba(0, 0, 0, 0.2);
}

.launch-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
}

.launch-orbit-one {
    top: -220px;
    right: -160px;
    width: 650px;
    height: 650px;
}

.launch-orbit-two {
    right: 90px;
    bottom: -280px;
    width: 520px;
    height: 520px;
}

.launch-wordmark {
    position: absolute;
    right: -22px;
    bottom: -55px;
    color: rgba(255, 255, 255, 0.055);
    font-size: clamp(7rem, 17vw, 14rem);
    font-weight: 900;
    letter-spacing: -0.09em;
    line-height: 1;
    white-space: nowrap;
}

.site-footer {
    padding: 62px 0 27px;
    background: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 0.55fr 1fr 1.1fr;
    align-items: start;
    gap: 50px;
    padding-bottom: 50px;
}

.brand-footer .brand-name {
    font-size: 1.65rem;
}

.brand-footer .brand-mark::after {
    border-color: var(--white);
}

.footer-main > p {
    max-width: 330px;
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 30px;
    font-size: 0.82rem;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
    color: #7b8782;
    font-size: 0.7rem;
}

.footer-bottom p {
    margin: 0;
}

.error-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 30px;
    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(214, 247, 106, 0.34),
            transparent 20rem
        ),
        var(--green-deep);
    color: white;
    text-align: center;
}

.error-card {
    max-width: 630px;
}

.error-code {
    display: block;
    margin-bottom: 20px;
    color: var(--lime);
    font-family: Georgia, serif;
    font-size: clamp(5rem, 17vw, 10rem);
    font-style: italic;
    line-height: 1;
}

.error-card h1 {
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 7vw, 4.5rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.error-card p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
        gap: 45px;
    }

    .hero-figure {
        min-height: 650px;
    }

    .phone {
        top: 35px;
        width: 294px;
        height: 594px;
        transform: translateX(-50%) rotate(2deg) scale(0.98);
        transform-origin: top center;
    }

    .hero-sticker-top {
        left: 14px;
        width: 125px;
    }

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

    .feature-card-schedule .feature-copy {
        align-self: start;
    }
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

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

    .hero-copy {
        max-width: 760px;
    }

    .hero-figure {
        min-height: 690px;
    }

    .phone {
        width: 322px;
        height: 650px;
        transform: translateX(-50%) rotate(1.5deg);
    }

    .section-heading-wide {
        display: block;
    }

    .section-heading-wide > p:last-child {
        max-width: 600px;
        margin-top: 25px;
    }

    .problem-grid,
    .people-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        min-height: 250px;
    }

    .problem-number {
        margin-bottom: 45px;
    }

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

    .feature-card,
    .feature-card-schedule,
    .feature-card-family,
    .feature-card-scan,
    .feature-card-stock,
    .feature-card-tasks,
    .feature-card-chat {
        grid-column: auto;
    }

    .feature-card-schedule,
    .feature-card-chat {
        grid-column: 1 / -1;
    }

    .feature-card-chat {
        gap: 35px;
    }

    .how-grid,
    .safety-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .how-intro {
        position: static;
    }

    .safety-panel {
        max-width: 660px;
    }

    .faq-intro > p:last-child {
        max-width: 560px;
    }

    .person-card {
        min-height: 360px;
    }

    .footer-main {
        grid-template-columns: 0.6fr 1fr;
    }

    .site-footer nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(100% - 28px, 1240px);
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-by {
        display: none;
    }

    .header-cta {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    .hero {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-trust {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-figure {
        min-height: 590px;
        border-radius: 30px;
    }

    .phone {
        top: 27px;
        width: 286px;
        height: 577px;
        transform: translateX(-50%) rotate(1.5deg) scale(0.91);
        transform-origin: top center;
    }

    .hero-sticker-top {
        z-index: 6;
        top: 27px;
        left: 7px;
        width: 107px;
        padding: 12px;
    }

    .hero-sticker-top strong {
        font-size: 1.8rem;
    }

    .hero-sticker-bottom {
        right: 6px;
        bottom: 34px;
        max-width: 180px;
    }

    .hero-figure figcaption {
        display: none;
    }

    .section-heading h2,
    .how-intro h2,
    .safety-copy h2,
    .faq-intro h2 {
        font-size: clamp(2.45rem, 12vw, 3.5rem);
    }

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

    .feature-card,
    .feature-card-schedule,
    .feature-card-chat {
        min-height: auto;
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .feature-card-schedule,
    .feature-card-chat {
        gap: 35px;
    }

    .mini-schedule {
        margin-top: 15px;
    }

    .feature-card-scan {
        padding-top: 225px;
    }

    .chat-preview {
        min-height: 220px;
        padding: 18px;
    }

    .how-grid,
    .safety-grid,
    .faq-grid {
        gap: 48px;
    }

    .steps-list li {
        min-height: 0;
        grid-template-columns: 48px 1fr;
        gap: 15px;
    }

    .step-number {
        width: 43px;
        height: 43px;
    }

    .steps-list h3 {
        font-size: 1.25rem;
    }

    .safety-panel {
        border-radius: 30px;
    }

    .shield-mark {
        margin-bottom: 52px;
    }

    .medical-note-inner {
        grid-template-columns: 42px 1fr;
        gap: 16px;
    }

    .medical-note-mark {
        width: 42px;
        height: 42px;
    }

    .faq-list summary {
        font-size: 0.94rem;
    }

    .faq-list details > p {
        margin-right: 0;
        font-size: 0.88rem;
    }

    .launch-card {
        min-height: 590px;
        padding: 50px 27px;
        border-radius: 30px;
    }

    .launch-card h2 {
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer nav {
        grid-column: auto;
        justify-content: flex-start;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .site-header,
    .hero-actions,
    .launch-section,
    .site-footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    section {
        break-inside: avoid;
    }
}
