/* ==========================================================================
   householdbucket — Landingpage
   Theme-Variablen (identisch zu style.css, damit CTA-Buttons nach dem Login
   nahtlos in die echten App-Farben übergehen) + eigenständiges Editorial-
   Design-System für die Marketing-Seite.
   ========================================================================== */

:root,
[data-theme="sand"] {
    --color-primary: #ff735d;
    --color-secondary: #5CFFB4;
    --color-primary-rgb: 255, 115, 93;
    --color-primary-dark: #e07060;
    --color-primary-tint: #fff0ed;
    --color-primary-tint-strong: #f5cfc0;
}
[data-theme="salbei"] {
    --color-primary: #5e8c6a;
    --color-secondary: #8C5E5F;
    --color-primary-rgb: 94, 140, 106;
    --color-primary-dark: #436f4e;
    --color-primary-tint: #eef1ef;
    --color-primary-tint-strong: #d1dcd4;
}
[data-theme="ozean"] {
    --color-primary: #3e7c99;
    --color-secondary: #99703F;
    --color-primary-rgb: 62, 124, 153;
    --color-primary-dark: #2a5d75;
    --color-primary-tint: #ecf1f3;
    --color-primary-tint-strong: #cadbe2;
}
[data-theme="beere"] {
    --color-primary: #9a5476;
    --color-secondary: #549955;
    --color-primary-rgb: 154, 84, 118;
    --color-primary-dark: #7a3c5a;
    --color-primary-tint: #f2edf0;
    --color-primary-tint-strong: #dfced6;
}

:root {
    --paper: #faf5ec;
    --paper-deep: #f2e9d8;
    --ink: #241d1a;
    --ink-soft: rgba(36, 29, 26, .64);
    --ink-faint: rgba(36, 29, 26, .42);
    --line: rgba(36, 29, 26, .12);
    --bezel: #201a17;
    --font-display: "Fraunces", ui-serif, serif;
    --font-body: "Archivo", ui-sans-serif, sans-serif;
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --shadow-card: 0 16px 40px -18px rgba(36, 29, 26, .28);
    --shadow-soft: 0 30px 70px -25px rgba(36, 29, 26, .32);
    --container: 1180px;
    --ease: cubic-bezier(.16, .84, .44, 1);
    color-scheme: light;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--color-primary); color: #fff; }

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: .05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
}
.eyebrow::before {
    content: "";
    width: 16px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

em {
    font-style: italic;
    color: var(--color-primary);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    white-space: nowrap;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.btn-primary {
    background: var(--color-primary);
    color: #fff5f1;
    box-shadow: 0 14px 28px -12px rgba(var(--color-primary-rgb), .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(var(--color-primary-rgb), .65); }
.btn-ghost {
    background: transparent;
    border: 1.5px solid var(--line);
    color: var(--ink);
}
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary-dark); }
.btn-text {
    padding: 8px 0;
    font-weight: 600;
    color: var(--ink-soft);
}
.btn-text:hover { color: var(--color-primary-dark); }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn .bi { font-size: 1em; transition: transform .35s var(--ease); }
.btn-primary:hover .bi { transform: translateX(3px); }

/* ---- Nav ---- */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 0;
    background: rgba(250, 245, 236, .78);
    backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.lp-nav.is-scrolled { border-color: var(--line); box-shadow: 0 12px 30px -24px rgba(36, 29, 26, .5); }
.lp-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lp-nav__brand { display: flex; align-items: center; gap: 10px; }
.lp-nav__mark { width: 30px; height: 30px; color: var(--color-primary); flex-shrink: 0; }
.lp-nav__wordmark {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--ink);
}
.lp-nav__wordmark b { font-weight: 700; color: var(--color-primary-dark); }
.lp-nav__themes { display: flex; align-items: center; gap: 7px; }
.lp-nav__swatch {
    width: 16px; height: 16px; border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--line);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lp-nav__swatch:hover { transform: scale(1.18); }
.lp-nav__swatch.is-active { box-shadow: 0 0 0 2px var(--ink); }
.lp-nav__swatch[data-theme="sand"] { background: #ff735d; }
.lp-nav__swatch[data-theme="salbei"] { background: #5e8c6a; }
.lp-nav__swatch[data-theme="ozean"] { background: #3e7c99; }
.lp-nav__swatch[data-theme="beere"] { background: #9a5476; }
.lp-nav__actions { display: flex; align-items: center; gap: 22px; }

/* ---- Hero ---- */
.lp-hero { position: relative; padding: 76px 0 0; overflow: hidden; }
.lp-hero__glow {
    position: absolute;
    top: -220px; right: -160px;
    width: 620px; height: 620px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(var(--color-primary-rgb), .28), rgba(var(--color-primary-rgb), 0));
    filter: blur(10px);
    pointer-events: none;
    transition: background .5s var(--ease);
}
.lp-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
    gap: 40px;
    align-items: center;
    position: relative;
}
.lp-hero__copy { position: relative; z-index: 2; max-width: 560px; }
.lp-hero__copy .eyebrow { margin-bottom: 22px; }
.lp-hero__title {
    font-family: var(--font-display);
    font-variation-settings: "SOFT" 30, "opsz" 40;
    font-weight: 560;
    font-size: clamp(2.5rem, 1.4rem + 3.6vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -.015em;
    margin: 0 0 26px;
    color: var(--ink);
}
.lp-hero__title .word { display: inline-block; overflow: hidden; padding-bottom: .08em; vertical-align: bottom; }
.lp-hero__title .word__inner { display: inline-block; }
.lp-hero__lead {
    font-size: clamp(1.05rem, .95rem + .5vw, 1.22rem);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 46ch;
    margin-bottom: 34px;
}
.lp-hero__ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-bottom: 40px; }
.lp-hero__meta { display: flex; align-items: center; gap: 14px; color: var(--ink-faint); font-size: .82rem; font-weight: 600; }
.lp-hero__meta .avatars { display: flex; }
.lp-hero__meta .avatars span {
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-primary-tint); color: var(--color-primary-dark);
    border: 2px solid var(--paper);
    font-size: .8rem; margin-left: -8px;
}
.lp-hero__meta .avatars span:first-child { margin-left: 0; }

.lp-hero__visual { position: relative; z-index: 1; min-height: 520px; }

/* ---- Phone mockups ---- */
.phone {
    width: 258px;
    background: var(--bezel);
    border-radius: 42px;
    padding: 14px;
    box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255, 255, 255, .04) inset;
}
.phone--sm { width: 200px; border-radius: 34px; padding: 11px; }
.phone__notch {
    position: absolute;
    top: 14px; left: 50%; transform: translateX(-50%);
    width: 70px; height: 20px;
    background: var(--bezel);
    border-radius: 0 0 14px 14px;
    z-index: 2;
}
.phone__screen {
    position: relative;
    background: #fffdfa;
    border-radius: 30px;
    overflow: hidden;
    padding: 30px 16px 16px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.phone--sm .phone__screen { border-radius: 24px; padding: 24px 13px 13px; min-height: 230px; gap: 10px; }
.app-statusbar {
    position: absolute; top: 8px; left: 16px; right: 16px;
    display: flex; justify-content: space-between;
    font-family: var(--font-body); font-size: .62rem; font-weight: 700; color: var(--ink-faint);
}
.app-topbar { display: flex; align-items: center; justify-content: space-between; }
.app-topbar__title { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink); }
.app-topbar__sub { font-size: .68rem; color: var(--ink-faint); font-weight: 600; }
.app-topbar__icon {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--color-primary-tint); color: var(--color-primary-dark);
    display: flex; align-items: center; justify-content: center; font-size: .78rem;
    transition: background-color .4s var(--ease), color .4s var(--ease);
}

.app-person + .app-person { margin-top: 12px; }
.app-person__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.app-person__name { font-size: .78rem; font-weight: 700; color: var(--ink); }
.app-person__value { font-family: var(--font-display); font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.app-progress { height: 7px; border-radius: 99px; background: var(--color-primary-tint); overflow: hidden; transition: background-color .4s var(--ease); }
.app-progress__bar { height: 100%; border-radius: 99px; background: var(--color-primary); width: 0; transition: background-color .4s var(--ease); }
.app-badge {
    display: inline-flex; align-items: center; margin-top: 6px;
    padding: 3px 9px; border-radius: 99px; font-size: .62rem; font-weight: 700;
    background: var(--color-primary-tint); color: var(--color-primary-dark);
    transition: background-color .4s var(--ease), color .4s var(--ease);
}

.app-sheet-peek {
    margin-top: auto;
    display: flex; align-items: center; gap: 10px;
    background: var(--paper-deep);
    border: 1px dashed var(--line);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: .74rem; font-weight: 600; color: var(--ink-soft);
}
.app-sheet-peek .bi { color: var(--color-primary); font-size: 1rem; transition: color .4s var(--ease); }

.app-list__item { display: flex; align-items: center; gap: 9px; padding: 6px 0; }
.app-checkbox {
    width: 18px; height: 18px; border-radius: 50%;
    border: 1.5px solid var(--line);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .58rem;
    transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.app-checkbox.is-checked { background: var(--color-primary); border-color: var(--color-primary); }
.app-list__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-secondary); flex-shrink: 0; }
.app-list__text { font-size: .78rem; font-weight: 600; color: var(--ink); transition: color .3s var(--ease), opacity .3s var(--ease); }
.app-list__text.is-done { color: var(--ink-faint); text-decoration: line-through; opacity: .6; }
.app-list__qty { margin-left: auto; font-size: .66rem; color: var(--ink-faint); font-weight: 600; }

.recipe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.recipe-thumb { border-radius: 14px; padding: 12px 10px; background: var(--color-primary-tint); transition: background-color .4s var(--ease); }
.recipe-thumb__icon {
    width: 26px; height: 26px; border-radius: 50%;
    background: #fff; color: var(--color-primary-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; margin-bottom: 8px;
    transition: color .4s var(--ease);
}
.recipe-thumb__title { font-size: .68rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.recipe-thumb__meta { font-size: .6rem; color: var(--ink-faint); margin-top: 3px; font-weight: 600; }

.stat-total { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--ink); }
.stat-total__label { font-size: .68rem; color: var(--ink-faint); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.stat-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; margin-top: 6px; }
.stat-bar { flex: 1; height: 100%; border-radius: 6px 6px 2px 2px; background: var(--color-primary-tint-strong); position: relative; overflow: hidden; transition: background-color .4s var(--ease); }
.stat-bar__fill {
    position: absolute; left: 0; right: 0; bottom: 0; height: 0%; border-radius: inherit;
    background: var(--color-primary);
    transition: background-color .4s var(--ease);
}
.stat-bar.is-current .stat-bar__fill { background: var(--color-primary-dark); }

/* floating hero extras */
.lp-hero__float-card {
    position: absolute;
    left: -34px; bottom: 54px;
    width: 178px;
    background: #fffdfa;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: var(--shadow-card);
    display: flex; align-items: center; gap: 10px;
    z-index: 3;
}
.lp-hero__float-card .bi { font-size: 1.3rem; color: var(--color-primary); transition: color .4s var(--ease); }
.lp-hero__float-card strong { display: block; font-family: var(--font-display); font-size: .95rem; color: var(--ink); }
.lp-hero__float-card span { font-size: .68rem; color: var(--ink-faint); font-weight: 600; }

.lp-hero__chip {
    position: absolute;
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    background: #fffdfa; box-shadow: var(--shadow-card);
    font-size: 1.15rem; color: var(--color-primary-dark);
    z-index: 3;
    transition: color .4s var(--ease);
}
.lp-hero__chip--1 { top: 6%; right: 6%; }
.lp-hero__chip--2 { bottom: 14%; right: -6px; }
.lp-hero__chip--3 { top: 44%; left: -18px; }

.lp-hero__stage { position: relative; display: flex; justify-content: center; }

.tear {
    height: 26px; width: 100%;
    background-image:
        linear-gradient(135deg, var(--tear-color, var(--paper)) 50%, transparent 50%),
        linear-gradient(45deg, var(--tear-color, var(--paper)) 50%, transparent 50%);
    background-size: 26px 26px;
    background-position: bottom left, bottom left;
    background-repeat: repeat-x;
}

/* ---- Ticker ---- */
.lp-ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; overflow: hidden; background: var(--paper-deep); }
.lp-ticker__track { display: flex; width: max-content; gap: 52px; }
.lp-ticker__item { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink-soft); white-space: nowrap; }
.lp-ticker__item .bi { color: var(--color-primary); font-size: 1rem; transition: color .4s var(--ease); }
.lp-ticker__item b { color: var(--ink); font-weight: 600; }

/* ---- Feature sections ---- */
.lp-feature { padding: 118px 0; }
.lp-feature--deep { background: var(--paper-deep); }
.lp-feature__inner { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 64px; align-items: center; }
.lp-feature__inner.is-reverse .lp-feature__text { order: 2; }
.lp-feature__inner.is-reverse .lp-feature__visual { order: 1; }
.lp-feature__text { max-width: 480px; }
.lp-feature__title {
    font-family: var(--font-display);
    font-variation-settings: "SOFT" 25, "opsz" 30;
    font-weight: 560;
    font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -.01em;
    margin: 18px 0 18px;
}
.lp-feature__body { font-size: 1.05rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 26px; }
.lp-feature__points { display: flex; flex-direction: column; gap: 13px; }
.lp-feature__points li { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; font-weight: 600; color: var(--ink); }
.lp-feature__points .bi {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: var(--color-primary-tint); color: var(--color-primary-dark);
    display: flex; align-items: center; justify-content: center; font-size: .78rem;
    transition: background-color .4s var(--ease), color .4s var(--ease);
}
.lp-feature__visual { position: relative; display: flex; justify-content: center; min-height: 380px; align-items: center; }

/* sync duo (Einkaufsliste) */
.sync-duo { display: flex; align-items: center; justify-content: center; gap: 6px; }
.sync-duo__pulse { display: flex; flex-direction: column; gap: 7px; padding: 0 4px; }
.sync-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); opacity: .25; transition: background-color .4s var(--ease); }
.phone--peer { transform: translateY(26px) scale(.94); opacity: .88; }

/* mini flow (Rezepte) */
.mini-flow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.mini-flow__step { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 78px; text-align: center; }
.mini-flow__icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fffdfa; box-shadow: var(--shadow-card);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary-dark); font-size: 1.1rem;
    transition: color .4s var(--ease);
}
.mini-flow__step span { font-size: .64rem; font-weight: 700; color: var(--ink-faint); }
.mini-flow__arrow { color: var(--line); font-size: 1rem; margin-top: -22px; }

/* recipe visual composition */
.lp-recipe-visual { position: relative; }
.lp-recipe-visual .phone { position: relative; z-index: 2; }
.lp-recipe-visual__badge {
    position: absolute; top: -16px; right: -22px; z-index: 3;
    background: var(--ink); color: var(--paper);
    font-family: var(--font-display); font-size: .78rem; font-weight: 600;
    padding: 9px 16px; border-radius: 99px; box-shadow: var(--shadow-card);
    display: flex; align-items: center; gap: 6px;
}
.lp-recipe-visual__badge .bi { color: var(--color-secondary); }

/* stats visual composition */
.lp-stats-visual { position: relative; }
.lp-stats-visual__note {
    position: absolute; bottom: -18px; left: -30px; z-index: 3;
    background: #fffdfa; border-radius: var(--radius-md); padding: 12px 16px;
    box-shadow: var(--shadow-card); font-size: .72rem; font-weight: 700; color: var(--ink-soft);
    display: flex; align-items: center; gap: 8px;
}
.lp-stats-visual__note .bi { color: var(--color-primary); font-size: 1rem; }

/* ---- Steps ---- */
.lp-steps { padding: 120px 0; text-align: center; }
.lp-steps__head { max-width: 620px; margin: 0 auto 70px; }
.lp-steps__head .eyebrow { justify-content: center; }
.lp-steps__head h2 {
    font-family: var(--font-display);
    font-weight: 560;
    font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.7rem);
    margin-top: 18px; letter-spacing: -.01em;
}
.lp-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; position: relative; text-align: left; }
.lp-steps__line {
    position: absolute; top: 27px; left: 12.5%; right: 12.5%; height: 1px;
    background-image: linear-gradient(90deg, var(--line) 60%, transparent 0);
    background-size: 12px 1px;
    transform-origin: left center;
    transform: scaleX(0);
}
.lp-step { padding: 0 18px; position: relative; }
.lp-step__num {
    display: flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 50%;
    background: #fffdfa; box-shadow: var(--shadow-card);
    font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--color-primary-dark);
    margin-bottom: 22px; position: relative; z-index: 2;
    transition: color .4s var(--ease);
}
.lp-step__title { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; }
.lp-step__body { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; }

/* ---- Theme showcase ---- */
.lp-themes { padding: 120px 0; background: var(--paper-deep); }
.lp-themes__inner { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: center; }
.lp-themes__title {
    font-family: var(--font-display); font-weight: 560;
    font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.7rem);
    margin: 18px 0 16px; letter-spacing: -.01em;
}
.lp-themes__body { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 32px; max-width: 48ch; }
.lp-themes__swatches { display: flex; gap: 22px; flex-wrap: wrap; }
.lp-theme-swatch { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.lp-theme-swatch__dot {
    width: 56px; height: 56px; border-radius: 50%;
    box-shadow: var(--shadow-card);
    border: 3px solid #fffdfa;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    position: relative;
}
.lp-theme-swatch__dot::after {
    content: "\f26e"; font-family: bootstrap-icons; color: #fff; font-size: .95rem;
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s var(--ease);
}
.lp-theme-swatch.is-active .lp-theme-swatch__dot { transform: scale(1.08); box-shadow: 0 0 0 3px var(--paper-deep), 0 0 0 5px var(--ink), var(--shadow-card); }
.lp-theme-swatch.is-active .lp-theme-swatch__dot::after { opacity: 1; }
.lp-theme-swatch span { font-size: .74rem; font-weight: 700; color: var(--ink-soft); }
.lp-theme-swatch.is-active span { color: var(--ink); }
.lp-theme-swatch[data-theme="sand"] .lp-theme-swatch__dot { background: #ff735d; }
.lp-theme-swatch[data-theme="salbei"] .lp-theme-swatch__dot { background: #5e8c6a; }
.lp-theme-swatch[data-theme="ozean"] .lp-theme-swatch__dot { background: #3e7c99; }
.lp-theme-swatch[data-theme="beere"] .lp-theme-swatch__dot { background: #9a5476; }

.lp-themes__preview { display: flex; justify-content: center; }

/* ---- PWA ---- */
.lp-pwa { padding: 120px 0; }
.lp-pwa__head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.lp-pwa__head .eyebrow { justify-content: center; }
.lp-pwa__head h2 { font-family: var(--font-display); font-weight: 560; font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.7rem); margin: 18px 0 16px; letter-spacing: -.01em; }
.lp-pwa__head p { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.6; }
.lp-pwa__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pwa-point { background: #fffdfa; border-radius: var(--radius-md); padding: 30px 26px; box-shadow: var(--shadow-card); }
.pwa-point__icon {
    width: 46px; height: 46px; border-radius: 14px;
    background: var(--color-primary-tint); color: var(--color-primary-dark);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px;
    transition: background-color .4s var(--ease), color .4s var(--ease);
}
.pwa-point h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; margin-bottom: 8px; }
.pwa-point p { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; }

/* ---- Final CTA ---- */
.lp-cta { position: relative; padding: 130px 0 110px; background: var(--ink); color: var(--paper); text-align: center; overflow: hidden; }
.lp-cta::before {
    content: ""; position: absolute; inset: -40% -10% auto -10%; height: 140%;
    background: radial-gradient(closest-side, rgba(var(--color-primary-rgb), .45), transparent 70%);
    transition: background .5s var(--ease);
}
.lp-cta__inner { position: relative; max-width: 640px; margin: 0 auto; }
.lp-cta .eyebrow { justify-content: center; color: var(--color-secondary); }
.lp-cta .eyebrow::before { background: var(--color-secondary); }
.lp-cta h2 {
    font-family: var(--font-display); font-weight: 560;
    font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3.4rem);
    line-height: 1.08; margin: 20px 0 22px; letter-spacing: -.015em;
}
.lp-cta p { font-size: 1.08rem; color: rgba(250, 245, 236, .72); max-width: 46ch; margin: 0 auto 38px; line-height: 1.6; }
.lp-cta .btn-primary { box-shadow: 0 20px 40px -14px rgba(var(--color-primary-rgb), .6); }
.lp-cta .btn-ghost { border-color: rgba(250, 245, 236, .26); color: var(--paper); }
.lp-cta .btn-ghost:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.lp-cta__ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
.lp-footer { padding: 56px 0 40px; }
.lp-footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.lp-footer__brand { display: flex; align-items: center; gap: 10px; }
.lp-footer__mark { width: 22px; height: 22px; color: var(--color-primary); }
.lp-footer__wordmark { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.lp-footer__tagline { font-size: .78rem; color: var(--ink-faint); margin-top: 2px; }
.lp-footer__links { display: flex; gap: 26px; font-size: .88rem; font-weight: 600; color: var(--ink-soft); }
.lp-footer__links a:hover { color: var(--color-primary-dark); }
.lp-footer__bottom { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .76rem; color: var(--ink-faint); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.lp-footer__bottom .bi { color: var(--color-primary); }

/* ---- Responsive ---- */
@media (max-width: 1080px) {
    .lp-hero__inner { grid-template-columns: 1fr; }
    .lp-hero__copy { max-width: 620px; }
    .lp-hero__visual { min-height: 460px; margin-top: 20px; }
    .lp-feature__inner { grid-template-columns: 1fr; gap: 48px; }
    .lp-feature__inner.is-reverse .lp-feature__text,
    .lp-feature__inner.is-reverse .lp-feature__visual { order: 0; }
    .lp-feature__text { max-width: 620px; }
    .lp-themes__inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
    .lp-themes__body { margin-left: auto; margin-right: auto; }
    .lp-themes__swatches { justify-content: center; }
}
@media (max-width: 860px) {
    .lp-steps__grid { grid-template-columns: 1fr 1fr; row-gap: 46px; }
    .lp-steps__line { display: none; }
    .lp-pwa__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .lp-nav__themes { display: none; }
    .lp-hero { padding-top: 56px; }
    .lp-hero__ctas { flex-direction: column; align-items: stretch; gap: 14px; }
    .lp-hero__ctas .btn { width: 100%; }
    .lp-feature { padding: 84px 0; }
    .lp-feature__points li { font-size: .88rem; }
    .lp-steps { padding: 84px 0; }
    .lp-steps__grid { grid-template-columns: 1fr; text-align: center; }
    .lp-step { padding: 0; }
    .lp-step__num { margin-left: auto; margin-right: auto; }
    .lp-themes { padding: 84px 0; }
    .lp-pwa { padding: 84px 0; }
    .lp-cta { padding: 90px 0 80px; }
    .lp-cta__ctas { flex-direction: column; }
    .lp-footer__inner { flex-direction: column; align-items: flex-start; }
    .phone { width: 224px; }
    .lp-hero__float-card { left: -10px; width: 156px; }
    .lp-hero__chip { width: 44px; height: 44px; font-size: 1rem; }
}
