:root {
    --bg: #f6efe4;
    --surface: rgba(255, 251, 244, 0.84);
    --surface-strong: #fffaf2;
    --ink: #23160e;
    --muted: #6e5747;
    --line: rgba(65, 41, 25, 0.12);
    --brand: #d2602b;
    --brand-dark: #8f2e15;
    --ok: #1c7c54;
    --warn: #bd7a10;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --shadow: 0 20px 60px rgba(77, 45, 21, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(210, 96, 43, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(24, 79, 69, 0.14), transparent 24%),
        linear-gradient(180deg, #fbf5ec 0%, #f4e7d8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.shell { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
    padding: 18px 0;
    position: relative;
    z-index: 20;
}
.topbar__inner, .section-head, .row, .product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.98rem;
}

.brand__name { letter-spacing: -0.02em; }

.brand__badge {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #db6b2a, #8f2e15);
    color: white;
    box-shadow: 0 16px 40px rgba(143, 46, 21, 0.28);
}

.nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav a, .muted, .timeline li, .order-summary li, .card p, .lead { color: var(--muted); }
.nav a { font-size: 0.92rem; font-weight: 500; }
.nav .button--primary { color: #fff; }
.nav form { margin: 0; }
.nav__logout {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 0.92rem;
    cursor: pointer;
}

.button,
button.button {
    border: 0;
    border-radius: 999px;
    padding: 14px 20px;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--compact { padding: 11px 17px; }
.button--large { min-height: 54px; padding: 15px 24px; }
.button--full { width: 100%; }
.button--light { background: #fff8ef; color: var(--brand-dark); box-shadow: 0 16px 36px rgba(35, 22, 14, 0.18); }
.button--disabled { background: rgba(110, 87, 71, 0.1); color: var(--muted); cursor: not-allowed; box-shadow: none; }
.button--disabled:hover { transform: none; }

.button--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
    box-shadow: 0 16px 38px rgba(143, 46, 21, 0.24);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.62);
    color: var(--ink);
    border: 1px solid var(--line);
}

.panel, .card {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.panel {
    background: var(--surface);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-xl);
}

.card {
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    padding: 22px;
}

.hero, .detail-grid, .shop-hero {
    display: grid;
    gap: 24px;
}

.hero { padding: 36px 0 40px; grid-template-columns: 1.15fr 0.85fr; }
.detail-grid, .shop-hero { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.hero__copy, .detail, .detail-panel, .shop-hero { padding: 30px; }
.hero__showcase { padding: 24px; display: flex; flex-direction: column; gap: 18px; }

.eyebrow, .chip, .status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.88rem;
}

.eyebrow, .chip {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
}

.hero h1, .section-title, .product-title, .shop-title {
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: 0.94; margin: 18px 0; }
.shop-title { font-size: clamp(2.4rem, 5vw, 4.2rem); margin: 14px 0 12px; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 10px; }
.product-title { font-size: clamp(2.4rem, 5vw, 4rem); margin: 14px 0 8px; }

.lead, .card p, .timeline li, .order-summary li { line-height: 1.75; }
.hero__actions, .grid, .form-grid, .kpi-list, .timeline, .order-summary { display: grid; gap: 14px; }
.hero__actions { grid-auto-flow: column; justify-content: start; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2, .stats-grid, .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.hero__stats, .stats-grid {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

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

.stat strong { display: block; font-size: 1.5rem; margin-bottom: 6px; }
.section { padding: 18px 0 40px; }
.shop-header { padding: 18px 0 12px; }
.empty { text-align: center; padding: 32px; color: var(--muted); }

.product-card { display: flex; flex-direction: column; gap: 16px; }
.product-visual {
    min-height: 220px;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 4px);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), transparent 28%),
        linear-gradient(135deg, #eb9b53, #7d2818);
    display: grid;
    place-items: end start;
    padding: 20px;
    color: white;
    font-weight: 700;
    font-size: 2.4rem;
}
.product-visual img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}
.product-visual--detail {
    min-height: 420px;
    margin-bottom: 24px;
}
.product-visual--detail img { min-height: 420px; }

.price { font-size: 1.25rem; font-weight: 700; }
.status--ok { background: rgba(28, 124, 84, 0.12); color: var(--ok); }
.status--warn { background: rgba(189, 122, 16, 0.12); color: var(--warn); }
.status--muted { background: rgba(110, 87, 71, 0.12); color: var(--muted); }

.kpi-list, .timeline, .order-summary { list-style: none; margin: 0; padding: 0; }
.kpi-list li, .timeline li, .order-summary li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.kpi-list li:last-child, .timeline li:last-child, .order-summary li:last-child { border-bottom: 0; }

.field { display: grid; gap: 8px; }
.field label { font-size: 0.92rem; color: var(--muted); }
.field small { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
.field__optional { opacity: 0.72; font-size: 0.75rem; }
.field__error { color: #a32b20 !important; }
.field input, .field textarea, .field select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    padding: 14px 16px;
    font: inherit;
    color: var(--ink);
}

.field textarea { min-height: 120px; resize: vertical; }

.flash {
    margin: 18px 0 0;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(28, 124, 84, 0.12);
    color: var(--ok);
    border: 1px solid rgba(28, 124, 84, 0.2);
}
.flash--error { background: rgba(163, 43, 32, 0.09); color: #87271d; border-color: rgba(163, 43, 32, 0.2); }

.footer { padding: 70px 0 42px; color: var(--muted); font-size: 0.92rem; }
.footer__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.footer__inner p { max-width: 420px; margin: 18px 0 0; line-height: 1.6; }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.brand--footer .brand__badge { width: 34px; height: 34px; border-radius: 12px; }

/* Marketing landing */
.landing-hero {
    min-height: 700px;
    padding: 72px 0 90px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
    gap: 54px;
    align-items: center;
}

.landing-hero__copy { position: relative; z-index: 2; }
.eyebrow--accent { background: rgba(210, 96, 43, 0.1); border-color: rgba(210, 96, 43, 0.2); color: var(--brand-dark); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px rgba(210, 96, 43, 0.12); }

.landing-hero h1,
.landing-section h2,
.final-cta h2,
.auth-intro h1 {
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.landing-hero h1 {
    max-width: 760px;
    margin: 22px 0;
    font-size: clamp(3.5rem, 6.5vw, 6.4rem);
    line-height: 0.9;
}

.landing-hero h1 em,
.auth-intro h1 em { color: var(--brand); font-weight: 400; }
.landing-hero__lead { max-width: 650px; color: var(--muted); font-size: clamp(1.06rem, 1.8vw, 1.25rem); line-height: 1.65; }
.landing-hero .hero__actions { margin-top: 32px; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 30px; color: var(--muted); font-size: 0.84rem; }
.hero-proof span::before { content: "✓"; display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 7px; border-radius: 50%; background: rgba(28, 124, 84, 0.12); color: var(--ok); font-weight: 700; }

.conversion-demo {
    min-height: 570px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.conversion-demo::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 44% 56% 62% 38% / 48% 35% 65% 52%;
    background: linear-gradient(145deg, rgba(30, 98, 84, 0.18), rgba(210, 96, 43, 0.22));
    filter: blur(1px);
    transform: rotate(-8deg);
    z-index: -1;
}

.social-card,
.shop-card {
    width: 255px;
    overflow: hidden;
    border: 1px solid rgba(65, 41, 25, 0.12);
    border-radius: 24px;
    background: #fffaf3;
    box-shadow: 0 28px 65px rgba(60, 35, 18, 0.2);
}

.social-card { position: absolute; left: 0; top: 24px; transform: rotate(-7deg); }
.shop-card { position: absolute; right: 0; bottom: 22px; transform: rotate(5deg); }
.social-card__head { display: flex; align-items: center; gap: 9px; padding: 12px; font-size: 0.72rem; }
.social-card__head > span:nth-child(2) { display: grid; }
.social-card__head small { color: var(--muted); }
.social-card__avatar { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #1e6254, #d2602b); }
.social-card__more { margin-left: auto; letter-spacing: 0.08em; }
.social-card p { margin: 0; padding: 13px 15px 17px; color: var(--muted); font-size: 0.75rem; line-height: 1.5; }
.social-card p strong { color: var(--ink); }

.social-card__photo,
.shop-card__image {
    height: 245px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #d7c0a1, #805e43);
}
.shop-card__image { height: 215px; }
.photo-shape { position: absolute; display: block; }
.photo-shape--one { width: 65%; height: 120%; left: 5%; top: 4%; border-radius: 48% 52% 20% 30%; background: linear-gradient(110deg, #f1e5d4, #b98759); transform: rotate(12deg); box-shadow: 12px 18px 40px rgba(58, 31, 16, 0.25); }
.photo-shape--two { width: 42%; height: 86%; right: -2%; bottom: -20%; border-radius: 80% 20% 0 0; background: #294f46; transform: rotate(-12deg); }
.photo-label { position: absolute; z-index: 2; right: 14px; top: 18px; color: #fff; font-weight: 700; font-size: 1.2rem; line-height: 0.9; text-align: right; }

.conversion-demo__arrow { width: 64px; height: 64px; display: grid; place-items: center; position: relative; z-index: 4; border-radius: 50%; background: var(--ink); color: #fff; font-size: 1.8rem; box-shadow: 0 16px 40px rgba(35, 22, 14, 0.25); }
.shop-card__label { position: absolute; z-index: 4; margin: 12px; padding: 7px 10px; border-radius: 999px; background: #fff; color: var(--ok); font-size: 0.68rem; font-weight: 700; }
.shop-card__body { padding: 16px; }
.shop-card__body h3 { margin: 4px 0 12px; font-size: 1.15rem; }
.shop-card__body .muted { font-size: 0.72rem; }
.shop-card__body .price { font-size: 1.05rem; }
.shop-card__body .status { padding: 5px 8px; font-size: 0.65rem; }
.demo-button { display: block; margin-top: 14px; padding: 11px; border-radius: 999px; background: var(--brand-dark); color: #fff; text-align: center; font-size: 0.76rem; font-weight: 700; }

.trust-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--line);
}
.trust-line span { padding: 20px; background: rgba(255, 250, 242, 0.78); color: var(--muted); text-align: center; font-size: 0.82rem; }

.landing-section { padding: 120px 0 30px; scroll-margin-top: 20px; }
.landing-section__head { max-width: 760px; margin-bottom: 44px; }
.landing-section__head h2,
.final-cta h2 { margin: 18px 0; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.98; }
.landing-section__head p { max-width: 610px; color: var(--muted); line-height: 1.7; }
.landing-section__head--split { max-width: none; display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 40px; }
.landing-section__head--split p { padding-bottom: 10px; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { min-height: 330px; padding: 28px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: rgba(255, 250, 242, 0.78); box-shadow: 0 18px 50px rgba(77, 45, 21, 0.08); }
.step-card--accent { background: #204d43; color: #fff; }
.step-card__number { position: absolute; right: 24px; top: 20px; font-family: "DM Serif Display", Georgia, serif; font-size: 3.3rem; opacity: 0.14; }
.step-card__icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 60px; border-radius: 18px; background: rgba(210, 96, 43, 0.12); color: var(--brand); font-size: 1.55rem; font-weight: 700; }
.step-card--accent .step-card__icon { color: #fff; background: rgba(255, 255, 255, 0.14); }
.step-card h3 { margin: 0 0 12px; font-size: 1.35rem; }
.step-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.step-card--accent p { color: rgba(255, 255, 255, 0.72); }

.feature-grid { display: grid; grid-template-columns: 1fr 0.75fr; gap: 18px; }
.feature-card { min-height: 330px; padding: 30px; overflow: hidden; border-radius: 28px; border: 1px solid var(--line); background: rgba(255, 250, 242, 0.82); box-shadow: 0 18px 50px rgba(77, 45, 21, 0.08); }
.feature-card--wide { grid-column: 1 / -1; min-height: 390px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center; }
.feature-card--dark { color: #fff; background: var(--ink); }
.feature-card__tag { display: inline-flex; padding: 7px 10px; border: 1px solid currentColor; border-radius: 999px; opacity: 0.7; font-size: 0.72rem; }
.feature-card h3 { max-width: 520px; margin: 28px 0 12px; font-size: clamp(1.55rem, 2.5vw, 2.3rem); line-height: 1.12; }
.feature-card p { max-width: 590px; color: var(--muted); line-height: 1.7; }
.feature-card--dark p { color: rgba(255, 255, 255, 0.64); }
.feature-card__metric { display: block; margin-top: 34px; font-family: "DM Serif Display", Georgia, serif; color: #f09963; font-size: 6.4rem; line-height: 0.8; }
.catalog-preview { min-height: 270px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: end; padding: 28px 20px 0; border-radius: 24px; background: #ece0cf; transform: rotate(2deg); }
.catalog-preview span { height: 78%; border-radius: 18px 18px 0 0; background: linear-gradient(160deg, #d5ad81 0 55%, #fffaf2 55%); box-shadow: 0 10px 30px rgba(63, 38, 20, 0.13); }
.catalog-preview span:nth-child(2) { height: 100%; background: linear-gradient(160deg, #38665a 0 55%, #fffaf2 55%); }
.status-preview { display: flex; gap: 10px; margin-top: 38px; }
.status-preview span { padding: 10px 14px; border-radius: 999px; background: rgba(110, 87, 71, 0.1); color: var(--muted); font-size: 0.78rem; }
.status-preview span:last-child { background: rgba(28, 124, 84, 0.12); color: var(--ok); }

.featured-shop { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.featured-shop h2 { margin: 18px 0 8px; font-family: "DM Serif Display", Georgia, serif; font-size: 3.2rem; }
.featured-shop p { max-width: 650px; color: var(--muted); }

.final-cta { min-height: 400px; margin-top: 120px; padding: 58px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; border-radius: 36px; background: linear-gradient(135deg, #b84822, #7f2617); color: #fff; box-shadow: 0 30px 80px rgba(91, 29, 16, 0.25); }
.final-cta .eyebrow { border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.08); }
.final-cta h2 { margin-bottom: 0; }
.final-cta__mark { position: absolute; right: -20px; top: -82px; font-family: "DM Serif Display", Georgia, serif; font-size: 18rem; color: rgba(255, 255, 255, 0.06); line-height: 1; }

/* Authentication */
.auth-section { min-height: 720px; padding: 70px 0 80px; display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 70px; align-items: center; }
.auth-section--login { grid-template-columns: 1fr 0.85fr; }
.auth-intro h1 { margin: 20px 0; font-size: clamp(3.2rem, 5.5vw, 5.3rem); line-height: 0.92; }
.auth-intro > p { max-width: 500px; color: var(--muted); line-height: 1.7; }
.auth-benefits { list-style: none; margin: 42px 0 0; padding: 0; display: grid; gap: 14px; }
.auth-benefits li { display: flex; align-items: center; gap: 15px; color: var(--muted); }
.auth-benefits li span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(210, 96, 43, 0.1); color: var(--brand); font-size: 0.75rem; }
.auth-card { padding: 34px; }
.auth-card--compact { max-width: 560px; width: 100%; justify-self: end; }
.auth-card__head { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.auth-card__head > span { font-size: 1.25rem; font-weight: 700; }
.auth-card__head a { color: var(--brand-dark); font-size: 0.85rem; font-weight: 600; }
.form-consent { margin: 0; color: var(--muted); font-size: 0.76rem; line-height: 1.6; text-align: center; }
.form-consent a { text-decoration: underline; }
.form-errors { padding: 16px 18px; border-radius: 16px; border: 1px solid rgba(163, 43, 32, 0.2); background: rgba(163, 43, 32, 0.07); color: #87271d; }
.form-errors p { margin: 8px 0 0; font-size: 0.84rem; }
.check-row { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.88rem; cursor: pointer; }
.action-row { margin-top: 18px; }
.inset-card { margin-top: 18px; box-shadow: none; }
.order-status-form { margin-top: 18px; }
.field-submit { display: flex; align-items: end; }
.notice-card { display: flex; gap: 15px; margin-bottom: 22px; padding: 18px; border-radius: 18px; background: rgba(210, 96, 43, 0.09); border: 1px solid rgba(210, 96, 43, 0.16); }
.notice-card__icon { flex: 0 0 32px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; }
.notice-card h3 { margin: 2px 0 7px; }
.notice-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.product-meta-card { margin-top: 24px; display: flex; justify-content: space-between; box-shadow: none; }
.product-meta-card span { color: var(--muted); }
.textarea--large { min-height: 320px !important; }
.example-caption p { margin: 0; white-space: pre-line; }
.import-submit { margin-top: 24px; }
.legal-page { max-width: 900px; margin: 0 auto; padding-top: 54px; }
.legal-page p { color: var(--muted); line-height: 1.8; }
.legal-page a { color: var(--brand-dark); text-decoration: underline; }

.reveal { animation: reveal-up 650ms both ease-out; }
.reveal--delay { animation-delay: 140ms; }
@keyframes reveal-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 960px) {
    .hero, .detail-grid, .shop-hero, .grid--3, .grid--2, .stats-grid, .hero__stats { grid-template-columns: 1fr; }
    .hero__actions { grid-auto-flow: row; }
    .topbar__inner, .section-head { align-items: start; flex-direction: column; }
    .landing-hero { grid-template-columns: 1fr; padding-top: 48px; }
    .conversion-demo { width: min(100%, 570px); margin: 0 auto; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { min-height: 280px; }
    .step-card__icon { margin-bottom: 42px; }
    .landing-section__head--split, .feature-card--wide, .auth-section, .auth-section--login { grid-template-columns: 1fr; }
    .auth-section { gap: 42px; }
    .auth-card--compact { justify-self: stretch; max-width: none; }
}

@media (max-width: 680px) {
    .shell { width: min(100% - 22px, 1160px); }
    .topbar { padding: 12px 0; }
    .topbar__inner { flex-direction: row; align-items: center; }
    .nav { gap: 12px; }
    .nav > a:not(.button), .nav__logout { display: none; }
    .brand__name { font-size: 0.9rem; }
    .landing-hero { min-height: auto; padding: 54px 0 60px; gap: 22px; }
    .landing-hero h1 { font-size: clamp(3.15rem, 15vw, 4.7rem); }
    .landing-hero__lead { font-size: 1rem; }
    .hero-proof { display: grid; gap: 10px; }
    .conversion-demo { width: 100%; min-height: 455px; margin: 0; overflow: hidden; }
    .conversion-demo::before { width: 370px; height: 370px; }
    .social-card, .shop-card { width: 210px; }
    .social-card { left: 8px; top: 28px; }
    .shop-card { right: 8px; bottom: 22px; }
    .social-card__photo { height: 200px; }
    .shop-card__image { height: 175px; }
    .conversion-demo__arrow { width: 48px; height: 48px; font-size: 1.4rem; }
    .trust-line { grid-template-columns: repeat(2, 1fr); }
    .landing-section { padding-top: 88px; }
    .landing-section__head h2, .final-cta h2 { font-size: 2.75rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card--wide { grid-column: auto; }
    .catalog-preview { min-height: 220px; }
    .final-cta { margin-top: 90px; padding: 34px 26px; grid-template-columns: 1fr; border-radius: 28px; }
    .final-cta__mark { font-size: 12rem; }
    .auth-section { padding-top: 48px; }
    .auth-intro h1 { font-size: 3.4rem; }
    .auth-card { padding: 24px 18px; }
    .footer__inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { animation: none; }
    .button { transition: none; }
}
