:root {
    color-scheme: light;
    --broiler-white: #fffdf5;
    --eggshell: #fff4dd;
    --feather-cream: #f3e2c3;
    --layer-brown: #8b5a2b;
    --layer-brown-dark: #6e3f1d;
    --deep-brown: #3a2416;
    --ink: #2b1a12;
    --comb-red: #b42318;
    --warm-red: #d33a2c;
    --data-amber: #d99a28;
    --muted-taupe: #bfa98a;
    --success: #1f7a4d;
    --warning: #b7791f;
    --info: #2f5f8f;
    --surface: #fffaf0;
    --surface-strong: #fffdf8;
    --border: rgba(110, 63, 29, 0.16);
    --shadow-sm: 0 10px 30px rgba(58, 36, 22, 0.08);
    --shadow-lg: 0 28px 72px rgba(43, 26, 18, 0.18);
    --shell: 1180px;
}

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

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--eggshell);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

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

button {
    font: inherit;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--broiler-white);
    color: var(--deep-brown);
    font-weight: 750;
    transform: translateY(-150%);
    transition: transform 180ms ease-out;
}

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

:focus-visible {
    outline: 3px solid var(--data-amber);
    outline-offset: 4px;
}

.section-shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 253, 245, 0.14);
    transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled,
.site-header:has(.mobile-nav:not([hidden])) {
    border-color: rgba(255, 253, 245, 0.1);
    background: rgba(58, 36, 22, 0.96);
    box-shadow: 0 14px 40px rgba(20, 10, 5, 0.18);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.nav-shell {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 36px;
    align-items: center;
    width: min(calc(100% - 40px), var(--shell));
    min-height: 88px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    width: fit-content;
    min-height: 48px;
    text-decoration: none;
}

.brand-mark {
    position: relative;
    display: block;
    width: 52px;
    height: 52px;
    overflow: hidden;
    flex: 0 0 auto;
}

.brand-mark img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 78px;
    max-width: none;
    height: auto;
    transform: translateX(-50%);
}

.brand-word {
    color: var(--broiler-white);
    font-size: 22px;
    font-weight: 780;
    letter-spacing: -0.035em;
}

.brand-word span {
    color: #f25a45;
}

.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav a {
    position: relative;
    min-height: 44px;
    padding: 11px 0;
    color: rgba(255, 253, 245, 0.8);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    background: var(--data-amber);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.desktop-nav a:hover {
    color: var(--broiler-white);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-self: end;
    min-height: 46px;
    padding: 0 17px;
    border: 1px solid rgba(255, 253, 245, 0.28);
    border-radius: 12px;
    color: var(--broiler-white);
    font-size: 14px;
    font-weight: 720;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease;
}

.nav-cta:hover {
    border-color: rgba(255, 253, 245, 0.46);
    background: rgba(255, 253, 245, 0.08);
}

.nav-cta svg {
    width: 18px;
    height: 18px;
}

.menu-button,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 880px;
    overflow: hidden;
    background: var(--deep-brown);
    color: var(--broiler-white);
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.04);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(43, 26, 18, 0.98) 0%, rgba(43, 26, 18, 0.94) 37%, rgba(43, 26, 18, 0.65) 63%, rgba(43, 26, 18, 0.36) 100%),
        linear-gradient(0deg, rgba(43, 26, 18, 0.62), transparent 38%);
}

.hero-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
    gap: 80px;
    align-items: center;
    width: min(calc(100% - 40px), var(--shell));
    margin: 126px auto 90px;
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin: 0 0 21px;
    color: var(--layer-brown-dark);
    font-size: 12px;
    font-weight: 780;
    letter-spacing: 0.145em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 30px;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: #edb750;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(52px, 6.2vw, 84px);
    font-weight: 790;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.hero h1 em {
    color: #efb64b;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.hero-lead {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(255, 244, 221, 0.84);
    font-size: clamp(18px, 1.75vw, 21px);
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 740;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button svg {
    width: 20px;
    height: 20px;
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button-primary {
    background: var(--data-amber);
    box-shadow: 0 12px 28px rgba(217, 154, 40, 0.2);
    color: var(--deep-brown);
}

.button-primary:hover {
    background: #ebb043;
    box-shadow: 0 15px 34px rgba(217, 154, 40, 0.28);
}

.button-ghost {
    border: 1px solid rgba(255, 253, 245, 0.3);
    color: var(--broiler-white);
}

.button-ghost:hover {
    border-color: rgba(255, 253, 245, 0.52);
    background: rgba(255, 253, 245, 0.08);
}

.hero-product {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 660px;
}

.phone-halo {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 253, 245, 0.15);
    border-radius: 50%;
    background: rgba(217, 154, 40, 0.1);
    box-shadow: 0 0 0 80px rgba(217, 154, 40, 0.03);
}

.phone {
    position: relative;
    z-index: 2;
    width: 328px;
    overflow: hidden;
    border: 7px solid #17100b;
    border-radius: 46px;
    background: var(--eggshell);
    box-shadow: 0 42px 90px rgba(0, 0, 0, 0.42);
    color: var(--ink);
    transform: rotate(1.7deg);
}

.phone-top {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 30px;
    padding: 4px 15px 0;
    background: var(--deep-brown);
    color: var(--broiler-white);
    font-size: 9px;
    font-weight: 740;
}

.phone-island {
    width: 78px;
    height: 20px;
    border-radius: 20px;
    background: #130d09;
}

.phone-status {
    display: flex;
    gap: 3px;
    justify-content: flex-end;
    align-items: center;
}

.phone-status svg {
    width: 12px;
    height: 12px;
}

.phone-status svg:last-child {
    width: 17px;
}

.app-bar {
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 8px 14px 13px;
    background: var(--deep-brown);
    color: var(--broiler-white);
}

.app-bar img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.app-bar div {
    display: grid;
    flex: 1;
}

.app-bar strong {
    font-size: 12px;
}

.app-kicker {
    color: rgba(255, 244, 221, 0.62);
    font-size: 8px;
}

.avatar {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border: 1px solid rgba(255, 253, 245, 0.2);
    border-radius: 9px;
    background: rgba(255, 253, 245, 0.08);
    font-size: 8px;
    font-weight: 800;
}

.app-body {
    padding: 14px;
}

.app-greeting {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-greeting > div {
    display: grid;
}

.app-greeting span {
    color: #876e5d;
    font-size: 8px;
}

.app-greeting strong {
    font-size: 13px;
}

.date-chip {
    padding: 5px 8px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--surface);
    font-weight: 700;
}

.alert-good {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 9px;
    align-items: center;
    margin-top: 11px;
    padding: 9px;
    border: 1px solid rgba(31, 122, 77, 0.14);
    border-radius: 10px;
    background: rgba(31, 122, 77, 0.07);
}

.alert-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--success);
    color: white;
}

.alert-icon svg {
    width: 15px;
    height: 15px;
}

.alert-good div {
    display: grid;
}

.alert-good strong {
    color: #175d3b;
    font-size: 9px;
}

.alert-good div span {
    color: #52705f;
    font-size: 7px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 9px;
}

.metric-card {
    display: grid;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface-strong);
    box-shadow: 0 5px 14px rgba(58, 36, 22, 0.04);
}

.metric-icon {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    margin-bottom: 7px;
    border-radius: 7px;
}

.metric-icon svg {
    width: 15px;
    height: 15px;
}

.metric-icon.amber {
    background: rgba(217, 154, 40, 0.12);
    color: var(--data-amber);
}

.metric-icon.brown {
    background: rgba(139, 90, 43, 0.12);
    color: var(--layer-brown);
}

.metric-card > span:not(.metric-icon) {
    color: #816b5c;
    font-size: 7px;
}

.metric-card strong {
    margin-top: 1px;
    color: var(--deep-brown);
    font-size: 17px;
    line-height: 1.2;
}

.metric-card small {
    margin-top: 4px;
    color: var(--success);
    font-size: 6.5px;
    font-weight: 750;
}

.chart-card {
    margin-top: 8px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface-strong);
}

.chart-head {
    display: flex;
    justify-content: space-between;
}

.chart-head > div {
    display: grid;
}

.chart-head span,
.chart-head strong {
    font-size: 7px;
}

.chart-head strong {
    font-size: 9px;
}

.trend-up {
    align-self: center;
    color: var(--success);
    font-weight: 750;
}

.line-chart {
    width: 100%;
    height: 64px;
    margin-top: 5px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    color: #9c8878;
    font-size: 6px;
}

.quick-title {
    display: flex;
    justify-content: space-between;
    margin-top: 11px;
    font-size: 8px;
}

.quick-title span {
    color: var(--layer-brown);
    font-weight: 700;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin-top: 7px;
}

.quick-actions span {
    display: grid;
    gap: 4px;
    place-items: center;
    padding: 7px 2px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: #665044;
    font-size: 6.5px;
    font-weight: 700;
}

.quick-actions svg {
    width: 17px;
    height: 17px;
    color: var(--layer-brown);
}

.phone-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 7px 14px 12px;
    border-top: 1px solid var(--border);
    background: var(--surface-strong);
}

.phone-nav span {
    display: grid;
    gap: 2px;
    place-items: center;
    color: #927d6d;
    font-size: 6px;
    font-weight: 650;
}

.phone-nav svg {
    width: 16px;
    height: 16px;
}

.phone-nav .active {
    color: var(--comb-red);
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    gap: 9px;
    align-items: center;
    min-width: 144px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 253, 245, 0.22);
    border-radius: 13px;
    background: rgba(255, 253, 245, 0.93);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--ink);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.floating-card div {
    display: grid;
}

.floating-card span,
.floating-card strong {
    font-size: 9px;
}

.floating-card span {
    color: #816a5b;
}

.floating-card strong {
    font-size: 11px;
}

.floating-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(217, 154, 40, 0.13);
    color: var(--data-amber) !important;
}

.floating-icon svg {
    width: 17px;
    height: 17px;
}

.floating-stock {
    top: 150px;
    left: -42px;
    transform: rotate(-3deg);
}

.floating-sync {
    right: -35px;
    bottom: 155px;
    transform: rotate(2deg);
}

.sync-dot {
    width: 10px;
    height: 10px;
    border: 3px solid rgba(31, 122, 77, 0.18);
    border-radius: 50%;
    background: var(--success);
}

.illustrative-note {
    position: absolute;
    right: 2px;
    bottom: 42px;
    color: rgba(255, 253, 245, 0.58);
    font-size: 9px;
    letter-spacing: 0.04em;
}

.hero-foot {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    width: min(calc(100% - 40px), var(--shell));
    min-height: 70px;
    margin: 0 auto;
    color: rgba(255, 253, 245, 0.56);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-foot-line {
    height: 1px;
    background: rgba(255, 253, 245, 0.18);
}

.trust-strip {
    border-bottom: 1px solid var(--border);
    background: #f8e8cb;
}

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

.trust-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
    align-items: center;
    min-height: 118px;
    padding: 20px 34px;
}

.trust-item + .trust-item {
    border-left: 1px solid var(--border);
}

.trust-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(139, 90, 43, 0.1);
    color: var(--layer-brown-dark);
}

.trust-icon svg {
    width: 22px;
    height: 22px;
}

.trust-item div {
    display: grid;
}

.trust-item strong {
    color: var(--deep-brown);
    font-size: 15px;
}

.trust-item div span {
    color: #785e4d;
    font-size: 12px;
}

.intro {
    background:
        radial-gradient(circle at 15% 20%, rgba(217, 154, 40, 0.08), transparent 24%),
        var(--eggshell);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
    gap: 100px;
    align-items: start;
}

h2 {
    margin: 0;
    color: var(--deep-brown);
    font-size: clamp(38px, 4.4vw, 60px);
    font-weight: 780;
    letter-spacing: -0.055em;
    line-height: 1.03;
}

.section-lead {
    margin: 26px 0 0;
    color: #664d3e;
    font-size: 18px;
    line-height: 1.72;
}

.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    min-height: 46px;
    margin-top: 26px;
    color: var(--comb-red);
    font-weight: 740;
    text-decoration: none;
}

.text-link svg {
    width: 20px;
    height: 20px;
    transition: transform 160ms ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

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

.value-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.value-list article > span {
    color: var(--data-amber);
    font-size: 12px;
    font-weight: 800;
}

.value-list h3 {
    margin: 0;
    color: var(--deep-brown);
    font-size: 21px;
    letter-spacing: -0.025em;
}

.value-list p {
    margin: 5px 0 0;
    color: #765b49;
}

.feature-stage {
    background: #f8e7ca;
}

.section-heading {
    margin-bottom: 52px;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 90px;
    align-items: end;
}

.split-heading > p {
    margin: 0 0 3px;
    color: #725645;
    font-size: 17px;
    line-height: 1.7;
}

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

.feature-card {
    grid-column: span 4;
    position: relative;
    min-height: 390px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.feature-card-primary {
    grid-column: span 8;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
    gap: 36px;
    min-height: 410px;
    background: var(--deep-brown);
    color: var(--broiler-white);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 13px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-icon.light {
    background: rgba(255, 253, 245, 0.1);
    color: var(--data-amber);
}

.feature-icon.amber {
    background: rgba(217, 154, 40, 0.12);
    color: var(--data-amber);
}

.feature-icon.red {
    background: rgba(180, 35, 24, 0.1);
    color: var(--comb-red);
}

.feature-icon.green {
    background: rgba(31, 122, 77, 0.1);
    color: var(--success);
}

.feature-icon.cream {
    margin: 0 0 16px;
    background: rgba(255, 253, 245, 0.13);
    color: var(--data-amber);
}

.card-kicker {
    margin: 0 0 10px;
    color: var(--layer-brown);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.feature-card-primary .card-kicker,
.image-card .card-kicker {
    color: #e9b452;
}

.feature-card h3 {
    margin: 0;
    color: var(--deep-brown);
    font-size: 30px;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.feature-card-primary h3,
.image-card h3 {
    color: var(--broiler-white);
}

.feature-card > p,
.feature-card-copy > p:last-child,
.image-card-overlay > p:last-child {
    margin: 17px 0 0;
    color: #765b49;
    line-height: 1.66;
}

.feature-card-primary .feature-card-copy > p:last-child,
.image-card-overlay > p:last-child {
    color: rgba(255, 244, 221, 0.72);
}

.activity-preview {
    align-self: center;
    padding: 21px;
    border: 1px solid rgba(255, 253, 245, 0.15);
    border-radius: 16px;
    background: rgba(255, 253, 245, 0.07);
}

.activity-head {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 253, 245, 0.8);
    font-size: 11px;
}

.activity-head span {
    color: #e8b355;
}

.progress {
    height: 5px;
    margin: 12px 0 9px;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255, 253, 245, 0.1);
}

.progress span {
    display: block;
    width: 78%;
    height: 100%;
    border-radius: inherit;
    background: var(--data-amber);
}

.activity-row {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 253, 245, 0.09);
}

.activity-row:last-child {
    border: 0;
}

.activity-row i {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 253, 245, 0.25);
    border-radius: 8px;
}

.activity-row.done i {
    border-color: var(--success);
    background: var(--success);
}

.activity-row svg {
    width: 14px;
    height: 14px;
}

.activity-row div {
    display: grid;
}

.activity-row strong {
    font-size: 11px;
}

.activity-row div span,
.activity-row small {
    color: rgba(255, 244, 221, 0.55);
    font-size: 8px;
}

.mini-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 30px;
}

.mini-kpis span {
    display: grid;
    padding: 12px 9px;
    border-radius: 10px;
    background: var(--eggshell);
}

.mini-kpis small {
    color: #896f5d;
    font-size: 8px;
}

.mini-kpis strong {
    margin-top: 4px;
    color: var(--deep-brown);
    font-size: 14px;
}

.image-card {
    grid-column: span 4;
    padding: 0;
    background: var(--deep-brown);
}

.image-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(43, 26, 18, 0.96) 4%, rgba(43, 26, 18, 0.58) 58%, rgba(43, 26, 18, 0.06));
    content: "";
}

.image-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 30px;
}

.compact-list {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.compact-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #684d3e;
    font-size: 14px;
    font-weight: 650;
}

.compact-list li span {
    width: 8px;
    height: 8px;
    border: 2px solid var(--comb-red);
    border-radius: 50%;
}

.ledger-preview {
    display: grid;
    gap: 8px;
    margin-top: 24px;
}

.ledger-preview span {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 9px 10px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--surface-strong);
    font-size: 10px;
}

.ledger-preview i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ledger-preview i.sale {
    background: var(--success);
}

.ledger-preview i.feed {
    background: var(--data-amber);
}

.ledger-preview i.cost {
    background: var(--comb-red);
}

.ledger-preview b {
    font-weight: 650;
}

.ledger-preview strong {
    color: #806a5b;
    font-size: 9px;
}

.story-section {
    background: var(--eggshell);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1fr);
    gap: 90px;
    align-items: center;
}

.story-image-wrap {
    position: relative;
    padding: 0 36px 36px 0;
}

.story-image-wrap::before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 76%;
    height: 76%;
    border-radius: 18px;
    background: var(--data-amber);
    content: "";
}

.story-image-wrap > img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.story-caption {
    position: absolute;
    right: 0;
    bottom: 68px;
    z-index: 2;
    display: grid;
    grid-template-columns: 12px 1fr;
    gap: 12px;
    width: min(310px, 80%);
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 253, 245, 0.94);
    box-shadow: var(--shadow-sm);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.pulse-mark {
    width: 10px;
    height: 10px;
    margin-top: 5px;
    border: 3px solid rgba(31, 122, 77, 0.2);
    border-radius: 50%;
    background: var(--success);
}

.story-caption div {
    display: grid;
}

.story-caption strong {
    color: var(--deep-brown);
    font-size: 13px;
}

.story-caption div span {
    margin-top: 2px;
    color: #79604f;
    font-size: 10px;
}

.comparison {
    display: grid;
    gap: 19px;
    margin-top: 34px;
}

.comparison > div {
    display: grid;
    grid-template-columns: 13px 1fr;
    gap: 15px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.comparison > div:last-child {
    border-bottom: 1px solid var(--border);
}

.comparison-mark {
    width: 12px;
    height: 38px;
    border-radius: 6px;
}

.comparison-mark.broiler {
    background: var(--data-amber);
}

.comparison-mark.layer {
    background: var(--layer-brown);
}

.comparison strong {
    color: var(--deep-brown);
    font-size: 16px;
}

.comparison p {
    margin: 3px 0 0;
    color: #735746;
}

.intelligence-section {
    position: relative;
    overflow: hidden;
    background: var(--deep-brown);
    color: var(--broiler-white);
}

.intelligence-section::before {
    position: absolute;
    top: -280px;
    right: -200px;
    width: 700px;
    height: 700px;
    border: 100px solid rgba(217, 154, 40, 0.05);
    border-radius: 50%;
    content: "";
}

.intelligence-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1fr);
    gap: 90px;
    align-items: center;
}

.intelligence-copy h2 {
    color: var(--broiler-white);
}

.intelligence-copy > p:not(.eyebrow) {
    margin: 26px 0 0;
    color: rgba(255, 244, 221, 0.72);
    font-size: 18px;
    line-height: 1.7;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 11px;
    align-items: center;
    font-size: 14px;
    font-weight: 650;
}

.check-list svg {
    width: 19px;
    height: 19px;
    padding: 3px;
    border-radius: 6px;
}

.light-list li {
    color: rgba(255, 253, 245, 0.84);
}

.light-list svg {
    background: rgba(217, 154, 40, 0.15);
    color: var(--data-amber);
}

.intelligence-panel {
    padding: 26px;
    border: 1px solid rgba(255, 253, 245, 0.15);
    border-radius: 20px;
    background: rgba(255, 253, 245, 0.07);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 21px;
    border-bottom: 1px solid rgba(255, 253, 245, 0.1);
}

.panel-head > div {
    display: flex;
    gap: 12px;
    align-items: center;
}

.panel-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(217, 154, 40, 0.14);
    color: var(--data-amber);
}

.panel-icon svg {
    width: 23px;
    height: 23px;
}

.panel-head > div > div {
    display: grid;
}

.panel-head strong {
    font-size: 16px;
}

.panel-head div span {
    color: rgba(255, 244, 221, 0.55);
    font-size: 10px;
}

.status-watch {
    display: flex;
    gap: 7px;
    align-items: center;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(183, 121, 31, 0.15);
    color: #f4c166;
    font-size: 10px;
    font-weight: 750;
}

.status-watch i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f4c166;
}

.signal-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 13px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 253, 245, 0.09);
}

.signal-icon {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    border-radius: 11px;
}

.signal-icon svg {
    width: 20px;
    height: 20px;
}

.signal-icon.warning {
    background: rgba(183, 121, 31, 0.14);
    color: #f4c166;
}

.signal-icon.good {
    background: rgba(31, 122, 77, 0.15);
    color: #67c18d;
}

.signal-icon.pending {
    background: rgba(255, 253, 245, 0.08);
    color: rgba(255, 253, 245, 0.6);
}

.signal-row > div {
    display: grid;
}

.signal-row strong {
    font-size: 13px;
}

.signal-row div span {
    color: rgba(255, 244, 221, 0.55);
    font-size: 10px;
}

.signal-change {
    color: rgba(255, 253, 245, 0.65);
    font-size: 10px;
    font-weight: 750;
}

.signal-change.down {
    color: #f4c166;
}

.illustrative-panel-note {
    margin: 13px 0 0;
    color: rgba(255, 253, 245, 0.38);
    font-size: 9px;
    text-align: right;
}

.reliability-section {
    background: var(--eggshell);
}

.centered-heading {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered-heading .eyebrow {
    justify-content: center;
}

.centered-heading > p:last-child {
    max-width: 650px;
    margin: 24px auto 0;
    color: #725746;
    font-size: 17px;
}

.reliability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.reliability-grid article {
    position: relative;
    min-height: 340px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.reliability-grid .number {
    position: absolute;
    top: 26px;
    right: 28px;
    color: rgba(139, 90, 43, 0.38);
    font-size: 12px;
    font-weight: 800;
}

.reliability-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--deep-brown);
    color: var(--data-amber);
}

.reliability-icon svg {
    width: 27px;
    height: 27px;
}

.reliability-grid h3 {
    margin: 48px 0 0;
    color: var(--deep-brown);
    font-size: 24px;
    letter-spacing: -0.035em;
}

.reliability-grid p {
    margin: 14px 0 0;
    color: #745847;
    line-height: 1.7;
}

.security-section {
    background: #f8e7ca;
}

.security-grid {
    display: grid;
    grid-template-columns: minmax(350px, 0.75fr) minmax(0, 1fr);
    gap: 110px;
    align-items: center;
}

.security-mark {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 490px;
}

.shield-rings {
    position: absolute;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(110, 63, 29, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 50px rgba(217, 154, 40, 0.06),
        0 0 0 110px rgba(139, 90, 43, 0.035);
}

.security-mark > span {
    position: relative;
    display: grid;
    place-items: center;
    width: 190px;
    height: 220px;
    color: var(--data-amber);
}

.security-mark > span::before {
    position: absolute;
    inset: 0;
    border-radius: 100px 100px 80px 80px;
    background: var(--deep-brown);
    box-shadow: var(--shadow-lg);
    clip-path: polygon(50% 0, 94% 16%, 86% 70%, 50% 100%, 14% 70%, 6% 16%);
    content: "";
}

.security-mark svg {
    position: relative;
    width: 90px;
    height: 90px;
}

.security-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 28px;
    margin-top: 36px;
    border-top: 1px solid var(--border);
}

.security-points div {
    display: grid;
    padding: 19px 0;
    border-bottom: 1px solid var(--border);
}

.security-points strong {
    color: var(--deep-brown);
    font-size: 14px;
}

.security-points span {
    margin-top: 5px;
    color: #755948;
    font-size: 12px;
    line-height: 1.6;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: var(--comb-red);
    color: var(--broiler-white);
}

.cta-section::before {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(255, 253, 245, 0.05);
    border-radius: 50%;
    content: "";
}

.cta-shell {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.cta-shell h2 {
    max-width: 800px;
    color: var(--broiler-white);
}

.cta-shell .eyebrow {
    color: #f6c165;
}

.cta-shell .button-primary {
    min-width: 210px;
    background: var(--broiler-white);
    box-shadow: none;
    color: var(--comb-red);
}

.cta-shell .button-primary:hover {
    background: var(--eggshell);
}

.site-footer {
    padding: 76px 0 26px;
    background: #25170f;
    color: var(--broiler-white);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
    gap: 100px;
    padding-bottom: 60px;
}

.footer-mark {
    width: 58px;
    height: 58px;
}

.footer-mark img {
    width: 84px;

.footer-about > p {
    max-width: 410px;
    margin: 20px 0 0;
    color: rgba(255, 244, 221, 0.62);
}

.footer-email {
    display: inline-block;
    margin-top: 18px;
    color: #eeb750;
    font-weight: 700;
    text-underline-offset: 4px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.footer-links > div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 5px;
    color: var(--broiler-white);
    font-size: 13px;
}

.footer-links a {
    color: rgba(255, 244, 221, 0.58);
    font-size: 12px;
    text-decoration: none;
    transition: color 160ms ease;
}

.footer-links a:hover {
    color: var(--broiler-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 253, 245, 0.1);
    color: rgba(255, 244, 221, 0.42);
    font-size: 11px;
}

@media (max-width: 1080px) {
    .hero-shell {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 38px;
    }

    .hero-product {
        transform: scale(0.9);
    }

    .intro-grid,
    .story-grid,
    .intelligence-grid,
    .security-grid {
        gap: 60px;
    }

    .feature-card {
        grid-column: span 6;
    }

    .feature-card-primary {
        grid-column: span 12;
    }

    .footer-main {
        gap: 60px;
    }
}

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

    .nav-shell {
        grid-template-columns: 1fr auto;
    }

    .hero {
        min-height: auto;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        padding: 60px 0 90px;
    }

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

    .hero-product {
        min-height: 610px;
        transform: none;
    }

    .hero-shade {
        background:
            linear-gradient(180deg, rgba(43, 26, 18, 0.97) 0%, rgba(43, 26, 18, 0.88) 50%, rgba(43, 26, 18, 0.68) 100%),
            linear-gradient(0deg, rgba(43, 26, 18, 0.6), transparent);
    }

    .trust-item {
        padding-inline: 18px;
    }

    .intro-grid,
    .story-grid,
    .intelligence-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        gap: 60px;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .story-image-wrap {
        max-width: 650px;
    }

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

    .intelligence-grid {
        gap: 54px;
    }

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

    .reliability-grid article {
        min-height: auto;
    }

    .security-mark {
        min-height: 420px;
    }

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

    .cta-shell {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cta-shell .button {
        justify-self: start;
    }

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

@media (max-width: 820px) {
    .site-header:has(.mobile-nav:not([hidden])) {
        min-height: 100dvh;
    }

    .nav-shell {
        min-height: 78px;
    }

    .nav-cta {
        display: none;
    }

    .menu-button {
        display: grid;
        place-items: center;
        width: 46px;
        height: 46px;
        border: 1px solid rgba(255, 253, 245, 0.24);
        border-radius: 12px;
        background: rgba(255, 253, 245, 0.06);
        color: var(--broiler-white);
        cursor: pointer;
    }

    .menu-button svg {
        width: 23px;
        height: 23px;
    }

    .menu-close {
        display: none;
    }

    .menu-button[aria-expanded="true"] .menu-open {
        display: none;
    }

    .menu-button[aria-expanded="true"] .menu-close {
        display: block;
    }

    .mobile-nav:not([hidden]) {
        display: grid;
        gap: 2px;
        width: min(calc(100% - 40px), var(--shell));
        margin: 14px auto 0;
        padding: 14px 0 28px;
        border-top: 1px solid rgba(255, 253, 245, 0.12);
    }

    .mobile-nav a {
        display: flex;
        align-items: center;
        min-height: 54px;
        border-bottom: 1px solid rgba(255, 253, 245, 0.08);
        color: var(--broiler-white);
        font-size: 18px;
        font-weight: 680;
        text-decoration: none;
    }

    .mobile-nav a:last-child {
        justify-content: center;
        margin-top: 16px;
        border: 0;
        border-radius: 12px;
        background: var(--data-amber);
        color: var(--deep-brown);
    }
}

@media (max-width: 700px) {
    .section-shell,
    .nav-shell,
    .hero-shell,
    .hero-foot {
        width: min(calc(100% - 28px), var(--shell));
    }

    .section {
        padding: 82px 0;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
    }

    .brand-mark img {
        width: 70px;
    }

    .brand-word {
        font-size: 20px;
    }

    .hero-shell {
        margin-top: 94px;
        padding-top: 40px;
    }

    .hero h1 {
        font-size: clamp(45px, 15vw, 68px);
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-product {
        min-height: 575px;
        transform: scale(0.9);
    }

    .floating-stock {
        left: -10px;
    }

    .floating-sync {
        right: -10px;
    }

    .illustrative-note {
        right: 26px;
    }

    .hero-foot {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 56px;
    }

    .hero-foot span:last-child,
    .hero-foot-line {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        padding-block: 10px;
    }

    .trust-item {
        min-height: 90px;
        padding: 15px 6px;
    }

    .trust-item + .trust-item {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

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

    h2 {
        font-size: clamp(36px, 11vw, 50px);
    }

    .section-lead {
        font-size: 16px;
    }

    .feature-card,
    .feature-card-primary,
    .image-card {
        grid-column: span 12;
    }

    .feature-card-primary {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .feature-card {
        min-height: auto;
        padding: 24px;
    }

    .image-card {
        min-height: 520px;
        padding: 0;
    }

    .image-card-overlay {
        padding: 24px;
    }

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

    .story-image-wrap {
        padding: 0 20px 24px 0;
    }

    .story-caption {
        right: 0;
        bottom: 44px;
    }

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

    .intelligence-panel {
        padding: 18px;
    }

    .panel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .signal-row {
        grid-template-columns: 39px 1fr;
    }

    .signal-change {
        grid-column: 2;
    }

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

    .security-mark {
        min-height: 330px;
        transform: scale(0.78);
    }

    .security-points {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 74px 0;
    }

    .footer-main {
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 20px;
    }

    .footer-links > div:last-child {
        grid-column: 1 / -1;
    }

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

@media (max-width: 390px) {
    .hero-product {
        margin-inline: -28px;
        transform: scale(0.82);
    }

    .phone {
        width: 318px;
    }

    .floating-card {
        min-width: 132px;
    }

    .floating-stock {
        left: 0;
    }

    .floating-sync {
        right: 0;
    }

    .mini-kpis {
        grid-template-columns: 1fr;
    }
}

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

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

@media print {
    .site-header,
    .hero-product,
    .hero-foot,
    .cta-section,
    .site-footer {
        display: none;
    }

    body,
    .hero,
    .feature-stage,
    .intelligence-section,
    .security-section {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
    }

    .hero-media,
    .hero-shade {
        display: none;
    }

    .hero-shell {
        display: block;
        width: 100%;
        margin: 0;
        padding: 30px 0;
    }

    .hero h1,
    .hero h1 em,
    .hero-lead,
    .feature-card-primary h3,
    .intelligence-copy h2 {
        color: black;
    }

    .section {
        padding: 38px 0;
    }

    .feature-card,
    .reliability-grid article {
        break-inside: avoid;
        box-shadow: none;
    }
}
