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

:root {
    --landing-brand-50: #ecfdf5;
    --landing-brand-100: #d1fae5;
    --landing-brand-200: #a7f3d0;
    --landing-brand-400: #34d399;
    --landing-brand-500: #10b981;
    --landing-brand-600: #059669;
    --landing-brand-700: #047857;
    --landing-paper-0: #ffffff;
    --landing-paper-50: #fafbfc;
    --landing-paper-100: #f4f6f8;
    --landing-paper-200: #e7ebef;
    --landing-paper-300: #d1d7de;
    --landing-ink-900: #0a0f1c;
    --landing-ink-800: #111827;
    --landing-ink-700: #1f2937;
    --landing-ink-600: #374151;
    --landing-ink-500: #4b5563;
    --landing-ink-400: #6b7280;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
    overflow-x: hidden;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--landing-ink-900);
    background: var(--landing-paper-0);
    font-family: "InterVariable", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body,
button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}

.landing-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: calc(0.85rem + env(safe-area-inset-top)) 1.5rem 0.85rem;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(231, 235, 239, 0.9);
    box-shadow: 0 8px 32px rgba(10, 15, 28, 0.04);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.nav-inner {
    width: min(100%, 1180px);
    min-height: 46px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.nav-logo img {
    display: block;
    width: clamp(128px, 12vw, 148px);
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0.8rem;
    border-radius: 0.8rem;
    color: var(--landing-ink-500);
    font-size: 0.86rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 150ms ease, background-color 150ms ease;
}

.nav-links a:hover {
    color: var(--landing-ink-900);
    background: var(--landing-paper-100);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    min-width: 0;
}

.nav-actions .btn-ghost-sm,
.nav-actions .btn-primary-sm {
    white-space: nowrap;
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    min-width: 72px;
    min-height: 44px;
    padding: 0 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid transparent;
    border-radius: 0.8rem;
    color: var(--landing-ink-500);
    background: transparent;
    font: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.lang-btn:hover,
.lang-dropdown.open .lang-btn {
    color: var(--landing-ink-900);
    border-color: var(--landing-paper-200);
    background: var(--landing-paper-0);
}

.lang-btn:focus-visible {
    outline: 2px solid var(--landing-brand-500);
    outline-offset: 2px;
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    z-index: 110;
    width: 168px;
    padding: 0.4rem;
    overflow: hidden;
    border: 1px solid var(--landing-paper-200);
    border-radius: 1rem;
    background: var(--landing-paper-0);
    box-shadow: 0 18px 48px rgba(10, 15, 28, 0.12);
}

.lang-dropdown.open .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-menu form {
    margin: 0;
}

.lang-option {
    width: 100%;
    min-height: 40px;
    padding: 0 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 0;
    border-radius: 0.65rem;
    color: var(--landing-ink-600);
    background: transparent;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.lang-option:hover {
    color: var(--landing-ink-900);
    background: var(--landing-paper-100);
}

.lang-option.active {
    color: var(--landing-brand-700);
    background: var(--landing-brand-50);
}

.landing-hero {
    position: relative;
    min-height: min(920px, 100svh);
    padding: calc(8.75rem + env(safe-area-inset-top)) 1.5rem 6.5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--landing-paper-50);
}

.landing-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -17rem;
    width: 40rem;
    height: 40rem;
    border: 1px solid var(--landing-paper-200);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    align-items: center;
    gap: clamp(3.5rem, 7vw, 7rem);
}

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

.eyebrow {
    margin: 0 0 1rem;
    color: var(--landing-brand-700);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 10ch;
    margin: 0;
    color: var(--landing-ink-900);
    letter-spacing: -0.052em;
    line-height: 0.98;
    text-wrap: balance;
}

.hero-copy h1 span {
    color: var(--landing-brand-600);
}

.hero-sub {
    max-width: 560px;
    margin: 1.6rem 0 0;
    color: var(--landing-ink-500);
    font-size: clamp(1.04rem, 1.65vw, 1.22rem);
    line-height: 1.68;
    text-wrap: pretty;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.hero-actions .btn-primary-lg {
    gap: 0.55rem;
}

.hero-signals {
    max-width: 570px;
    margin: 2rem 0 0;
    padding: 1.15rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.25rem;
    border-top: 1px solid var(--landing-paper-200);
    list-style: none;
}

.hero-signals li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--landing-ink-600);
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.4;
}

.hero-signals li::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--landing-brand-500);
}

.hero-privacy {
    max-width: 560px;
    margin: 1rem 0 0;
    color: var(--landing-ink-400);
    font-size: 0.75rem;
    line-height: 1.55;
}

.hero-privacy a {
    color: var(--landing-brand-700);
    font-weight: 700;
    text-decoration: none;
}

.hero-privacy a:hover {
    text-decoration: underline;
}

.phone-stage {
    position: relative;
    width: 100%;
    min-height: 670px;
    display: grid;
    place-items: center;
    justify-self: center;
}

.phone-stage::before {
    content: "";
    position: absolute;
    width: min(100%, 540px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--landing-brand-50);
    border: 1px solid var(--landing-brand-100);
}

.phone-label {
    position: absolute;
    z-index: 3;
    top: 5.6rem;
    right: clamp(0rem, 4vw, 2.5rem);
    min-height: 38px;
    padding: 0 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--landing-paper-200);
    border-radius: 999px;
    color: var(--landing-ink-600);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 34px rgba(10, 15, 28, 0.08);
    font-size: 0.76rem;
    font-weight: 750;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.phone-label-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--landing-brand-500);
    box-shadow: 0 0 0 4px var(--landing-brand-100);
}

.phone-shell {
    position: relative;
    width: min(100%, 324px);
    margin: 0 auto;
    padding: 7px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3rem;
    background: var(--landing-ink-900);
    box-shadow:
        0 34px 90px rgba(10, 15, 28, 0.2),
        0 8px 24px rgba(10, 15, 28, 0.12);
}

.phone-shell::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 11px;
    left: 50%;
    width: 29%;
    height: 22px;
    border-radius: 999px;
    background: var(--landing-ink-900);
    transform: translateX(-50%);
    pointer-events: none;
}

.phone-shell img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2.55rem;
    background: var(--landing-paper-50);
    object-fit: cover;
    object-position: center;
}

.phone-shell-hero {
    z-index: 2;
    width: min(100%, 330px);
    transform: rotate(1.35deg);
}

.simple-steps {
    padding: 7rem 1.5rem;
    background: var(--landing-paper-0);
}

.section-inner {
    width: min(100%, 1100px);
    margin: 0 auto;
}

.section-heading {
    max-width: 690px;
}

.section-heading-center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2,
.story-copy h2,
.store-copy h2,
.final-cta h2 {
    margin: 0;
    color: var(--landing-ink-900);
    letter-spacing: -0.042em;
    line-height: 1.05;
    text-wrap: balance;
}

.section-heading > p:last-child,
.story-copy > p:last-child,
.store-copy > p:last-child,
.final-cta > p {
    margin: 1.15rem 0 0;
    color: var(--landing-ink-500);
    font-size: 1.02rem;
    line-height: 1.7;
    text-wrap: pretty;
}

.steps-grid {
    margin: 3.8rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    list-style: none;
    counter-reset: landing-steps;
}

.steps-grid li {
    min-width: 0;
    padding-top: 1.25rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.85rem;
    border-top: 1px solid var(--landing-paper-300);
}

.step-number {
    width: 2rem;
    height: 2rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--landing-brand-700);
    background: var(--landing-brand-50);
    font-size: 0.75rem;
    font-weight: 800;
}

.steps-grid h3 {
    margin: 0.2rem 0 0;
    color: var(--landing-ink-900);
    font-size: 1rem;
    font-weight: 780;
    letter-spacing: -0.015em;
}

.steps-grid p {
    margin: 0.55rem 0 0;
    color: var(--landing-ink-400);
    font-size: 0.88rem;
    line-height: 1.58;
}

.product-story {
    padding: 8rem 1.5rem;
    overflow: hidden;
    background: var(--landing-paper-0);
}

.product-story-soft {
    background: var(--landing-paper-50);
}

.story-inner {
    width: min(100%, 1050px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(4rem, 10vw, 8.5rem);
}

.story-inner-reverse .story-visual {
    order: 2;
}

.story-inner-reverse .story-copy {
    order: 1;
}

.story-visual {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    justify-self: center;
}

.story-visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 128%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--landing-paper-200);
    background: var(--landing-paper-100);
}

.product-story-soft .story-visual::before {
    background: var(--landing-paper-0);
}

.story-visual .phone-shell {
    z-index: 1;
}

.story-copy {
    max-width: 510px;
}

.story-copy > p:last-child {
    max-width: 48ch;
    font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.recipe-story .story-copy > p:not(.eyebrow) {
    max-width: 48ch;
    font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.story-points {
    max-width: 490px;
    margin: 1.6rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    list-style: none;
}

.story-points li {
    position: relative;
    padding-left: 1.55rem;
    color: var(--landing-ink-600);
    font-size: 0.88rem;
    line-height: 1.55;
}

.story-points li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--landing-brand-600);
    font-weight: 850;
}

.recipe-generator-card {
    position: relative;
    z-index: 1;
    width: min(100%, 390px);
    padding: clamp(1.6rem, 4vw, 2.25rem);
    border: 1px solid var(--landing-paper-200);
    border-radius: 2rem;
    background: var(--landing-paper-0);
    box-shadow:
        0 32px 80px rgba(10, 15, 28, 0.12),
        0 8px 24px rgba(10, 15, 28, 0.06);
}

.recipe-generator-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--landing-ink-400);
    font-size: 0.74rem;
    font-weight: 650;
}

.recipe-generator-icon {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 1rem;
    color: var(--landing-brand-700);
    background: var(--landing-brand-50);
}

.recipe-generator-label {
    margin: 2rem 0 0;
    color: var(--landing-brand-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.recipe-generator-card h3 {
    max-width: 13ch;
    margin: 0.75rem 0 0;
    color: var(--landing-ink-900);
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 780;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.recipe-generator-card > p:not(.recipe-generator-label) {
    margin: 1.15rem 0 0;
    color: var(--landing-ink-500);
    font-size: 0.9rem;
    line-height: 1.62;
}

.recipe-generator-meta {
    margin-top: 1.6rem;
    padding-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--landing-paper-200);
}

.recipe-generator-meta span {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    color: var(--landing-ink-600);
    background: var(--landing-paper-100);
    font-size: 0.72rem;
    font-weight: 700;
}

.recipe-generator-meta span:first-child {
    color: var(--landing-brand-700);
    background: var(--landing-brand-50);
}

.pricing-section {
    padding: 8rem 1.5rem;
    background: var(--landing-paper-50);
}

.pricing-grid {
    width: min(100%, 850px);
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.price-card {
    min-height: 500px;
    padding: clamp(1.6rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
    border-color: var(--landing-paper-200);
    background: var(--landing-paper-0);
}

.price-card-featured {
    border-color: var(--landing-brand-200);
    box-shadow: 0 22px 62px rgba(16, 185, 129, 0.12);
}

.price-plan {
    margin: 0;
    color: var(--landing-brand-700);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.price-value {
    min-height: 64px;
    margin: 1rem 0 0;
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    color: var(--landing-ink-900);
}

.price-value strong {
    font-size: clamp(2.3rem, 5vw, 3.25rem);
    font-weight: 780;
    letter-spacing: -0.06em;
    line-height: 1;
}

.price-value span {
    padding-bottom: 0.38rem;
    color: var(--landing-ink-400);
    font-size: 0.82rem;
    font-weight: 650;
}

.price-note {
    min-height: 44px;
    margin: 0.75rem 0 0;
    color: var(--landing-ink-400);
    font-size: 0.78rem;
    line-height: 1.5;
}

.price-periods {
    margin: 1.35rem 0 0;
    display: grid;
    gap: 0.55rem;
}

.price-period {
    width: 100%;
    padding: 0.85rem 1rem;
    appearance: none;
    display: grid;
    grid-template-columns: minmax(7.25rem, 1fr) 6.5rem;
    align-items: baseline;
    gap: 0.5rem;
    border: 1px solid var(--landing-paper-200);
    border-radius: 1rem;
    color: inherit;
    background: var(--landing-paper-0);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        border-color 150ms ease,
        background-color 150ms ease,
        box-shadow 150ms ease,
        transform 150ms ease;
}

.price-period:hover {
    border-color: var(--landing-brand-200);
    transform: translateY(-1px);
}

.price-period:focus-visible {
    outline: 3px solid rgba(16, 185, 129, 0.2);
    outline-offset: 2px;
}

.price-period.is-active {
    border-color: var(--landing-brand-300);
    background: var(--landing-brand-50);
    box-shadow: inset 0 0 0 1px var(--landing-brand-100);
}

.price-period-name {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--landing-ink-600);
    font-size: 0.78rem;
    font-weight: 750;
}

.price-period-price {
    color: var(--landing-ink-900);
    font-size: 1.02rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.025em;
    text-align: right;
    white-space: nowrap;
}

.price-saving {
    padding: 0.18rem 0.4rem;
    border-radius: 999px;
    color: var(--landing-brand-700);
    background: var(--landing-brand-100);
    font-size: 0.62rem;
    font-weight: 850;
}

.price-features {
    margin: 1.7rem 0 2rem;
    padding: 1.35rem 0 0;
    display: grid;
    gap: 0.9rem;
    border-top: 1px solid var(--landing-paper-200);
    list-style: none;
}

.price-features li {
    position: relative;
    padding-left: 1.55rem;
    color: var(--landing-ink-600);
    font-size: 0.87rem;
    line-height: 1.52;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--landing-brand-600);
    font-weight: 850;
}

.price-card > .btn-primary,
.price-card > .btn-secondary {
    width: 100%;
    margin-top: auto;
}

.landing-comparison {
    width: min(100%, 970px);
    margin: 6rem auto 0;
}

.comparison-heading {
    margin: 0 auto 2rem;
    text-align: center;
}

.comparison-heading h3 {
    margin: 0;
    color: var(--landing-ink-900);
    font-size: clamp(1.6rem, 3.2vw, 2.35rem);
    font-weight: 780;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.comparison-heading p {
    margin: 0.8rem 0 0;
    color: var(--landing-ink-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.plan-comparison {
    overflow: hidden;
    border: 1px solid var(--landing-paper-200);
    border-radius: 1.5rem;
    background: var(--landing-paper-0);
}

.plan-comparison-row {
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(170px, 0.9fr) repeat(2, minmax(0, 1fr));
    align-items: center;
}

.plan-comparison-row + .plan-comparison-row {
    border-top: 1px solid var(--landing-paper-200);
}

.plan-comparison-row > div {
    min-width: 0;
    padding: 1rem 1.25rem;
    color: var(--landing-ink-500);
    font-size: 0.82rem;
    line-height: 1.5;
}

.plan-comparison-row > div + div {
    border-left: 1px solid var(--landing-paper-200);
}

.plan-comparison-head {
    min-height: 58px;
    background: var(--landing-paper-100);
}

.plan-comparison-head > div {
    color: var(--landing-ink-700);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-comparison-label {
    color: var(--landing-ink-800) !important;
    font-weight: 750;
}

.plan-comparison .is-premium {
    color: var(--landing-brand-700);
    font-weight: 720;
}

.plan-comparison .is-muted {
    color: var(--landing-ink-300);
}

.comparison-shared {
    max-width: 760px;
    margin: 1.15rem auto 0;
    color: var(--landing-ink-400);
    font-size: 0.75rem;
    line-height: 1.6;
    text-align: center;
}

.store-section {
    padding: 5.5rem 1.5rem;
    background: var(--landing-paper-100);
    border-top: 1px solid var(--landing-paper-200);
    border-bottom: 1px solid var(--landing-paper-200);
}

.store-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 3rem;
}

.store-copy {
    max-width: 650px;
}

.store-copy > p:last-child {
    max-width: 52ch;
}

.store-badges {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-badges .store-badge-link {
    width: 210px;
    height: 82px;
    padding: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--landing-paper-300);
    border-radius: 1rem;
    background: var(--landing-paper-0);
    box-shadow: 0 14px 34px rgba(10, 15, 28, 0.1);
    transition:
        transform 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.store-badges .store-badge-link:hover {
    border-color: var(--landing-brand-200);
    box-shadow: 0 18px 42px rgba(10, 15, 28, 0.14);
    transform: translateY(-2px);
}

.store-badges img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 64px;
    object-fit: contain;
    object-position: center;
}

.final-cta {
    padding: 8rem 1.5rem;
    color: var(--landing-paper-0);
    background: var(--landing-ink-900);
}

.final-cta-inner {
    width: min(100%, 780px);
    margin: 0 auto;
    text-align: center;
}

.final-cta .eyebrow {
    color: var(--landing-brand-400);
}

.final-cta h2 {
    color: var(--landing-paper-0);
}

.final-cta > .final-cta-inner > p {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    color: var(--landing-paper-300);
}

.final-cta .btn-primary-lg {
    margin-top: 2rem;
}

.landing-footer {
    padding: 3rem 1.5rem calc(3rem + env(safe-area-inset-bottom));
    background: var(--landing-paper-0);
}

.footer-inner {
    width: min(100%, 1100px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem 3rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
}

.footer-brand img {
    display: block;
    width: 142px;
    height: auto;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem 1.25rem;
    flex-wrap: wrap;
}

.footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--landing-ink-500);
    font-size: 0.8rem;
    font-weight: 650;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--landing-brand-700);
}

.footer-inner > p {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 1.4rem;
    border-top: 1px solid var(--landing-paper-200);
    color: var(--landing-ink-400);
    font-size: 0.74rem;
}

@media (max-width: 980px) {
    .landing-hero {
        min-height: auto;
        padding-top: calc(8rem + env(safe-area-inset-top));
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .hero-copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-copy h1,
    .hero-sub,
    .hero-privacy {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-signals {
        justify-content: center;
    }

    .phone-stage {
        min-height: 650px;
    }

    .phone-label {
        right: calc(50% - 215px);
    }

    .story-inner {
        gap: 4rem;
    }
}

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

    .simple-steps,
    .product-story,
    .pricing-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .story-inner,
    .story-inner-reverse {
        grid-template-columns: 1fr;
        gap: 3.8rem;
    }

    .story-copy,
    .story-inner-reverse .story-copy {
        order: 1;
        max-width: 620px;
        margin: 0 auto;
        text-align: center;
    }

    .story-visual,
    .story-inner-reverse .story-visual {
        order: 2;
    }

    .story-copy > p:last-child {
        margin-right: auto;
        margin-left: auto;
    }

    .recipe-story .story-copy > p:not(.eyebrow),
    .story-points {
        margin-right: auto;
        margin-left: auto;
    }

    .story-points {
        text-align: left;
    }

    .store-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .store-badges {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .landing-nav {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .nav-inner {
        gap: 0.55rem;
    }

    .nav-login {
        display: none !important;
    }

    .lang-btn {
        min-width: 48px;
        padding: 0 0.45rem;
    }

    .lang-btn span:nth-child(2),
    .lang-btn svg {
        display: none;
    }

    .landing-hero {
        padding-right: 1.25rem;
        padding-bottom: 4.5rem;
        padding-left: 1.25rem;
    }

    .hero-copy h1 {
        max-width: 11ch;
    }

    .hero-sub {
        max-width: 36ch;
        font-size: 1rem;
        line-height: 1.62;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary-lg,
    .hero-actions .btn-ghost {
        width: min(100%, 340px);
    }

    .hero-signals {
        max-width: 350px;
        justify-content: flex-start;
        text-align: left;
    }

    .hero-signals li {
        width: 100%;
    }

    .phone-stage {
        min-height: 590px;
    }

    .phone-stage::before {
        width: 470px;
        max-width: 125vw;
    }

    .phone-label {
        top: 4.25rem;
        right: 50%;
        transform: translateX(50%);
    }

    .phone-shell-hero {
        width: min(86vw, 304px);
        transform: none;
    }

    .simple-steps,
    .product-story,
    .pricing-section {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .phone-shell {
        width: min(84vw, 310px);
    }

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

    .price-card {
        min-height: 0;
    }

    .price-note {
        min-height: 0;
    }

    .price-period {
        grid-template-columns: minmax(6.7rem, 1fr) 5.7rem;
        padding-right: 0.85rem;
        padding-left: 0.85rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        width: clamp(116px, 31vw, 132px);
        height: auto;
        object-fit: contain;
    }

    .nav-actions .btn-primary-sm {
        padding-right: 0.8rem;
        padding-left: 0.8rem;
        font-size: 0.78rem;
    }

    .lang-dropdown-menu {
        right: -4.5rem;
    }

    .landing-hero {
        padding-top: calc(7.25rem + env(safe-area-inset-top));
    }

    .hero-copy h1 {
        letter-spacing: -0.045em;
        line-height: 1;
    }

    .hero-actions {
        margin-top: 1.6rem;
    }

    .phone-stage {
        min-height: 550px;
    }

    .phone-label {
        top: 3rem;
    }

    .simple-steps {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .product-story {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }

    .story-inner,
    .story-inner-reverse {
        gap: 3rem;
    }

    .story-visual::before {
        width: 118%;
    }

    .pricing-section {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }

    .landing-comparison {
        margin-top: 4.5rem;
    }

    .plan-comparison {
        display: grid;
        gap: 0.8rem;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .plan-comparison-head {
        display: none;
    }

    .plan-comparison-row {
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: hidden;
        border: 1px solid var(--landing-paper-200);
        border-radius: 1rem;
        background: var(--landing-paper-0);
    }

    .plan-comparison-row + .plan-comparison-row {
        border-top: 1px solid var(--landing-paper-200);
    }

    .plan-comparison-label {
        grid-column: 1 / -1;
        padding-bottom: 0.75rem !important;
        border-bottom: 1px solid var(--landing-paper-200);
        background: var(--landing-paper-100);
    }

    .plan-comparison-row > div {
        padding: 0.85rem 1rem;
    }

    .plan-comparison-row > div:nth-child(2)::before,
    .plan-comparison-row > div:nth-child(3)::before {
        display: block;
        margin-bottom: 0.35rem;
        color: var(--landing-ink-400);
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .plan-comparison-row > div:nth-child(2)::before {
        content: "Free";
    }

    .plan-comparison-row > div:nth-child(3)::before {
        content: "Premium";
    }

    .store-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .store-badges {
        flex-direction: column;
    }

    .store-badges .store-badge-link {
        width: min(100%, 230px);
        height: 88px;
    }

    .final-cta {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

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

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