:root {
    --background: #e8eee9;
    --background-dark: #dce5df;
    --surface: #e8eee9;
    --surface-light: #f4f7f4;

    --green: #183d2d;
    --green-medium: #315c46;
    --green-light: #769883;

    --gold: #c99748;
    --gold-light: #e5bd77;

    --dark: #132119;
    --text: #24342a;
    --muted: #6d7a70;

    --white: #ffffff;

    --border: rgba(36, 52, 42, 0.1);

    --shadow-dark: rgba(141, 156, 146, 0.55);
    --shadow-light: rgba(255, 255, 255, 0.9);

    --heading-font: "Playfair Display", serif;
    --body-font: "Manrope", sans-serif;

    --container: 1240px;

    --neomorphic-shadow:
        14px 14px 28px var(--shadow-dark),
        -14px -14px 28px var(--shadow-light);

    --neomorphic-shadow-small:
        7px 7px 15px var(--shadow-dark),
        -7px -7px 15px var(--shadow-light);

    --neomorphic-inset:
        inset 7px 7px 14px rgba(151, 165, 156, 0.45),
        inset -7px -7px 14px rgba(255, 255, 255, 0.85);
}

/* Reset */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(
            circle at 10% 8%,
            rgba(255, 255, 255, 0.9),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 16%,
            rgba(201, 151, 72, 0.12),
            transparent 27%
        ),
        var(--background);
    font-family: var(--body-font);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

section {
    position: relative;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.background-blur {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.blur-one {
    top: 100px;
    right: -180px;
    width: 430px;
    height: 430px;
    background: rgba(201, 151, 72, 0.15);
}

.blur-two {
    bottom: 30px;
    left: -200px;
    width: 460px;
    height: 460px;
    background: rgba(49, 92, 70, 0.13);
}

/* Header */

.main-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    padding: 12px 0;
    background: rgba(232, 238, 233, 0.9);
    backdrop-filter: blur(18px);
}

.header-container {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-logo {
    display: flex;
    align-items: center;
    width: 245px;
    padding: 9px 15px;
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow-small);
}

.brand-logo img {
    width: 100%;
    height: 49px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.desktop-nav a {
    position: relative;
    color: #56665b;
    font-size: 0.76rem;
    font-weight: 700;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    content: "";
    background: var(--gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--green);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 11px;
}

.neomorphic-icon,
.mobile-menu {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow-small);
    place-items: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.neomorphic-icon:hover,
.mobile-menu:hover {
    transform: translateY(-2px);
    box-shadow: var(--neomorphic-inset);
}

.search-icon {
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid var(--green);
    border-radius: 50%;
}

.search-icon::after {
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 8px;
    height: 2px;
    content: "";
    background: var(--green);
    transform: rotate(45deg);
}

.account-button {
    display: flex;
    align-items: center;
    gap: 9px;
}

.account-icon {
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--gold-light);
    border-radius: 50%;
    background: var(--green);
    box-shadow: var(--neomorphic-shadow-small);
    font-size: 0.65rem;
    font-weight: 800;
    place-items: center;
}

.account-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.account-text small {
    color: var(--muted);
    font-size: 0.58rem;
}

.account-text strong {
    margin-top: 4px;
    font-size: 0.7rem;
}

.cart-shape {
    position: relative;
    width: 18px;
    height: 13px;
    border: 2px solid var(--green);
    border-top: 0;
    transform: skew(-8deg);
}

.cart-shape::before {
    position: absolute;
    top: -6px;
    left: -4px;
    width: 5px;
    height: 5px;
    content: "";
    border-left: 2px solid var(--green);
}

.cart-shape::after {
    position: absolute;
    bottom: -6px;
    left: 1px;
    width: 3px;
    height: 3px;
    content: "";
    border-radius: 50%;
    background: var(--green);
    box-shadow: 10px 0 var(--green);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    display: grid;
    width: 19px;
    height: 19px;
    color: var(--white);
    border: 2px solid var(--background);
    border-radius: 50%;
    background: var(--gold);
    font-size: 0.55rem;
    font-weight: 800;
    place-items: center;
}

.mobile-menu {
    display: none;
}

.mobile-menu span {
    display: block;
    width: 17px;
    height: 1.5px;
    margin: 2px auto;
    background: var(--green);
}

/* Shared */

.section-tag {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--green);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.section-tag > span {
    width: 28px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3 {
    font-family: var(--heading-font);
}

h1 em,
h2 em {
    color: var(--green-medium);
    font-style: italic;
}

.primary-button,
.soft-button,
.gold-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 0.72rem;
    font-weight: 800;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.primary-button {
    color: var(--white);
    background: var(--green);
    box-shadow:
        10px 10px 22px rgba(112, 128, 118, 0.6),
        -8px -8px 18px rgba(255, 255, 255, 0.75);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow:
        14px 14px 28px rgba(112, 128, 118, 0.7),
        -10px -10px 23px rgba(255, 255, 255, 0.85);
}

.soft-button {
    color: var(--green);
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow-small);
}

.soft-button:hover {
    box-shadow: var(--neomorphic-inset);
    transform: translateY(-2px);
}

.gold-button {
    color: var(--dark);
    background: var(--gold);
    box-shadow:
        9px 9px 20px rgba(78, 61, 31, 0.5),
        -7px -7px 17px rgba(255, 232, 186, 0.23);
}

.gold-button:hover {
    transform: translateY(-3px);
}

.play-circle {
    display: grid;
    width: 28px;
    height: 28px;
    padding-left: 2px;
    border-radius: 50%;
    background: var(--surface);
    box-shadow: var(--neomorphic-inset);
    font-size: 0.5rem;
    place-items: center;
}

/* Hero */

.hero-section {
    padding: 80px 0 100px;
}

.hero-container {
    display: grid;
    min-height: 700px;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    max-width: 720px;
    margin-top: 17px;
    font-size: clamp(3.8rem, 6.5vw, 7rem);
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 0.91;
}

.hero-content h1 em {
    display: block;
}

.hero-description {
    max-width: 590px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-statistics {
    display: grid;
    margin-top: 46px;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.neomorphic-stat {
    padding: 18px;
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow-small);
}

.neomorphic-stat strong {
    font-family: var(--heading-font);
    font-size: 1.65rem;
}

.neomorphic-stat strong span {
    color: var(--gold);
    font-size: 0.9rem;
}

.neomorphic-stat p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 700;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    padding: 17px;
    border-radius: 35px;
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow);
}

.hero-image {
    width: 100%;
    height: 616px;
    border-radius: 25px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.hero-image-card:hover .hero-image {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    inset: 17px;
    border-radius: 25px;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(12, 23, 17, 0.42)
        );
    pointer-events: none;
}

.hero-status-card {
    position: absolute;
    z-index: 4;
    right: 37px;
    bottom: 35px;
    display: flex;
    width: 285px;
    align-items: center;
    gap: 13px;
    padding: 16px;
    color: var(--white);
    border-radius: 18px;
    background: rgba(21, 48, 35, 0.86);
    box-shadow:
        9px 9px 20px rgba(10, 18, 13, 0.45),
        -6px -6px 16px rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.robot-face-icon {
    display: flex;
    width: 45px;
    height: 39px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 3px solid #cbd5ce;
    border-radius: 14px;
    background: #172920;
}

.robot-face-icon i {
    width: 6px;
    height: 8px;
    border-radius: 50%;
    background: #8eeec1;
    box-shadow: 0 0 8px #8eeec1;
}

.hero-status-card > div:last-child {
    display: flex;
    flex-direction: column;
}

.hero-status-card small {
    color: var(--gold-light);
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.hero-status-card strong {
    margin-top: 3px;
    font-family: var(--heading-font);
    font-size: 1rem;
}

.hero-info-card {
    position: absolute;
    z-index: 5;
    width: 205px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(232, 238, 233, 0.9);
    box-shadow: var(--neomorphic-shadow-small);
    backdrop-filter: blur(13px);
}

.hero-info-card small {
    color: var(--gold);
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.hero-info-card strong {
    display: block;
    margin-top: 5px;
    font-family: var(--heading-font);
    font-size: 1rem;
}

.hero-info-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.55rem;
}

.left-info-card {
    top: 65px;
    left: -45px;
}

.right-info-card {
    top: 210px;
    right: -40px;
}

/* Category Strip */

.category-strip {
    padding: 15px 0;
}

.category-strip-inner {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow-x: auto;
    padding: 0 25px;
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow-small);
}

.category-strip-inner span {
    white-space: nowrap;
    color: var(--muted);
    font-family: var(--heading-font);
    font-size: 0.84rem;
    font-style: italic;
}

.category-strip-inner i {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gold);
}

/* Marketplace */

.marketplace-section {
    padding: 125px 0;
}

.section-heading {
    display: grid;
    align-items: end;
    margin-bottom: 52px;
    grid-template-columns: 1fr 0.55fr;
    gap: 70px;
}

.section-heading h2,
.benefits-heading h2 {
    max-width: 730px;
    margin-top: 15px;
    font-size: clamp(3rem, 5.4vw, 5.4rem);
    font-weight: 600;
    letter-spacing: -3px;
    line-height: 0.98;
}

.section-heading > p {
    max-width: 440px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.9;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.category-card {
    position: relative;
    min-height: 330px;
    padding: 35px;
    overflow: hidden;
    border-radius: 26px;
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow-small);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--neomorphic-shadow);
}

.category-number {
    position: absolute;
    top: 23px;
    right: 25px;
    color: rgba(24, 61, 45, 0.2);
    font-family: var(--heading-font);
    font-size: 1.1rem;
}

.category-icon {
    display: grid;
    width: 67px;
    height: 67px;
    color: var(--gold);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--neomorphic-inset);
    font-size: 0.68rem;
    font-weight: 800;
    place-items: center;
}

.category-card h3 {
    margin-top: 29px;
    font-size: 1.7rem;
    font-weight: 600;
}

.category-card p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.75;
}

.category-card a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 24px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--green);
    font-size: 0.64rem;
    font-weight: 800;
}

.fashion-category {
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(190, 132, 105, 0.18),
            transparent 25%
        ),
        var(--surface);
}

.electronics-category {
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(52, 105, 135, 0.16),
            transparent 25%
        ),
        var(--surface);
}

.grocery-category {
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(86, 126, 70, 0.16),
            transparent 25%
        ),
        var(--surface);
}

.business-category {
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(201, 151, 72, 0.2),
            transparent 25%
        ),
        var(--surface);
}

/* Robot Section */

.robot-section {
    padding: 125px 0;
}

.robot-section-container {
    display: grid;
    align-items: center;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 85px;
}

.robot-shopping-visual {
    position: relative;
    min-height: 680px;
}

.robot-shopping-card {
    position: absolute;
    inset: 0;
    overflow: hidden;
    padding: 17px;
    border-radius: 35px;
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow);
}

.robot-shopping-card img {
    width: 100%;
    height: 646px;
    border-radius: 25px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.robot-shopping-card:hover img {
    transform: scale(1.035);
}

.shopping-image-overlay {
    position: absolute;
    inset: 17px;
    border-radius: 25px;
    background:
        linear-gradient(
            to top,
            rgba(16, 27, 20, 0.42),
            transparent 45%
        );
}

.floating-match-card {
    position: absolute;
    z-index: 4;
    right: -24px;
    bottom: 35px;
    display: flex;
    width: 330px;
    align-items: center;
    gap: 13px;
    padding: 17px;
    color: var(--white);
    border-radius: 19px;
    background: rgba(23, 48, 36, 0.91);
    box-shadow:
        10px 10px 23px rgba(48, 62, 52, 0.5),
        -7px -7px 17px rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(13px);
}

.match-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--green);
    border-radius: 50%;
    background: var(--gold);
    font-size: 0.6rem;
    font-weight: 800;
    place-items: center;
}

.floating-match-card > div {
    display: flex;
    flex-direction: column;
}

.floating-match-card strong {
    font-size: 0.72rem;
}

.floating-match-card small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.56rem;
}

.recommendation-score {
    position: absolute;
    z-index: 4;
    top: 35px;
    left: -30px;
    display: flex;
    width: 145px;
    height: 145px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    border: 7px solid rgba(232, 238, 233, 0.8);
    border-radius: 50%;
    background: var(--green);
    box-shadow: var(--neomorphic-shadow-small);
}

.recommendation-score strong {
    font-family: var(--heading-font);
    font-size: 2.2rem;
}

.recommendation-score span {
    font-size: 0.55rem;
}

.robot-section-content h2,
.b2c-content h2,
.b2b-content h2 {
    margin-top: 16px;
    font-size: clamp(3rem, 5.3vw, 5.3rem);
    font-weight: 600;
    letter-spacing: -3px;
    line-height: 0.96;
}

.robot-section-content h2 em,
.b2c-content h2 em,
.b2b-content h2 em {
    display: block;
}

.robot-section-description {
    margin-top: 24px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.9;
}

.robot-feature-list {
    margin: 31px 0 36px;
}

.robot-feature {
    display: grid;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    grid-template-columns: 52px 1fr;
    gap: 16px;
}

.robot-feature > span {
    display: grid;
    width: 40px;
    height: 40px;
    color: var(--gold);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--neomorphic-inset);
    font-family: var(--heading-font);
    place-items: center;
}

.robot-feature h3 {
    font-size: 1.12rem;
}

.robot-feature p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.68rem;
}

/* B2C */

.b2c-section {
    padding: 125px 0;
    color: var(--white);
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(201, 151, 72, 0.17),
            transparent 30%
        ),
        var(--dark);
}

.b2c-container {
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.light-tag {
    color: var(--gold-light);
}

.b2c-content h2 em {
    color: var(--gold-light);
}

.b2c-content > p {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.84rem;
    line-height: 1.9;
}

.b2c-feature-grid {
    display: grid;
    margin: 31px 0 35px;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.b2c-feature-grid article {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    background: #17271e;
    box-shadow:
        8px 8px 18px rgba(5, 12, 8, 0.7),
        -6px -6px 15px rgba(58, 78, 65, 0.3);
}

.b2c-feature-grid article > span {
    display: grid;
    width: 29px;
    height: 29px;
    flex-shrink: 0;
    color: var(--dark);
    border-radius: 50%;
    background: var(--gold);
    font-size: 0.6rem;
    font-weight: 800;
    place-items: center;
}

.b2c-feature-grid article > div {
    display: flex;
    flex-direction: column;
}

.b2c-feature-grid strong {
    font-family: var(--heading-font);
    font-size: 0.9rem;
}

.b2c-feature-grid small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.58rem;
}

.b2c-dashboard,
.b2b-dashboard {
    position: relative;
    min-height: 600px;
}

.dashboard-window,
.business-window {
    position: absolute;
    top: 55px;
    right: 5px;
    left: 5px;
    min-height: 470px;
    overflow: hidden;
    border: 8px solid #536059;
    border-radius: 20px;
    background: #e8eee9;
    box-shadow:
        20px 20px 45px rgba(0, 0, 0, 0.52),
        -10px -10px 28px rgba(255, 255, 255, 0.09);
    transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-topbar {
    display: flex;
    height: 38px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    color: #717c74;
    background: #d5ded8;
}

.dashboard-topbar > div {
    display: flex;
    gap: 5px;
}

.dashboard-topbar > div span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8d9991;
}

.dashboard-topbar small {
    font-size: 0.5rem;
    font-weight: 700;
}

.dashboard-body,
.business-window-body {
    display: grid;
    min-height: 432px;
    grid-template-columns: 58px 1fr;
}

.dashboard-body aside,
.business-window-body aside {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 22px;
    padding-top: 16px;
    background: var(--green);
}

.dashboard-body aside strong,
.business-window-body aside strong {
    display: grid;
    width: 32px;
    height: 32px;
    color: var(--green);
    border-radius: 50%;
    background: var(--gold);
    font-family: var(--heading-font);
    font-size: 0.74rem;
    place-items: center;
}

.dashboard-body aside i,
.business-window-body aside i {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.dashboard-body aside i.active,
.business-window-body aside i.active {
    border-color: var(--gold);
    background: rgba(201, 151, 72, 0.2);
}

.dashboard-main,
.business-main {
    padding: 23px;
    color: var(--text);
}

.dashboard-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-heading > div {
    display: flex;
    flex-direction: column;
}

.dashboard-heading small {
    color: #7d8980;
    font-size: 0.5rem;
}

.dashboard-heading h3 {
    font-size: 1.16rem;
}

.dashboard-heading > span {
    display: grid;
    width: 34px;
    height: 34px;
    color: var(--white);
    border-radius: 50%;
    background: var(--green);
    font-size: 0.55rem;
    font-weight: 800;
    place-items: center;
}

.dashboard-search {
    margin-top: 20px;
    padding: 12px 14px;
    color: #879289;
    border-radius: 12px;
    background: #e8eee9;
    box-shadow: var(--neomorphic-inset);
    font-size: 0.54rem;
}

.product-preview-grid {
    display: grid;
    margin-top: 19px;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
}

.product-preview-grid article {
    padding: 10px;
    border-radius: 13px;
    background: #e8eee9;
    box-shadow: var(--neomorphic-shadow-small);
}

.product-image {
    height: 122px;
    border-radius: 9px;
}

.product-fashion {
    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(255, 255, 255, 0.7),
            transparent 30%
        ),
        linear-gradient(145deg, #c89b7c, #714c3c);
}

.product-electronics {
    background:
        radial-gradient(
            circle at 60% 30%,
            rgba(75, 187, 234, 0.4),
            transparent 30%
        ),
        linear-gradient(145deg, #36566a, #172630);
}

.product-grocery {
    background:
        radial-gradient(
            circle at 60% 30%,
            rgba(255, 255, 255, 0.65),
            transparent 30%
        ),
        linear-gradient(145deg, #b7c69f, #667d4c);
}

.product-preview-grid strong {
    display: block;
    margin-top: 8px;
    font-size: 0.53rem;
}

.product-preview-grid small {
    color: #808a82;
    font-size: 0.44rem;
}

.dashboard-ai-message,
.supplier-match-card {
    position: absolute;
    z-index: 5;
    right: -10px;
    bottom: 25px;
    display: grid;
    width: 370px;
    align-items: center;
    padding: 15px;
    border-radius: 18px;
    background: rgba(23, 39, 30, 0.96);
    box-shadow:
        11px 11px 25px rgba(0, 0, 0, 0.5),
        -7px -7px 18px rgba(87, 115, 96, 0.22);
    grid-template-columns: 45px 1fr auto;
    gap: 12px;
}

.dashboard-ai-message > div:nth-child(2),
.supplier-match-card > div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.dashboard-ai-message strong,
.supplier-match-card strong {
    font-size: 0.65rem;
}

.dashboard-ai-message small,
.supplier-match-card small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.51rem;
}

.dashboard-ai-message button,
.supplier-match-card button {
    padding: 8px 11px;
    color: var(--dark);
    border-radius: 9px;
    background: var(--gold);
    font-size: 0.52rem;
    font-weight: 800;
}

/* B2B */

.b2b-section {
    padding: 125px 0;
}

.b2b-container {
    display: grid;
    align-items: center;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
}

.business-stat-grid {
    display: grid;
    margin-top: 21px;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
}

.business-stat-grid article {
    padding: 15px;
    border-radius: 13px;
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow-small);
}

.business-stat-grid small {
    display: block;
    color: #7d8980;
    font-size: 0.46rem;
}

.business-stat-grid strong {
    display: block;
    margin-top: 4px;
    font-family: var(--heading-font);
    font-size: 1.4rem;
}

.business-stat-grid span {
    color: var(--green);
    font-size: 0.46rem;
    font-weight: 800;
}

.business-chart {
    margin-top: 17px;
    padding: 16px;
    border-radius: 15px;
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow-small);
}

.chart-header {
    display: flex;
    justify-content: space-between;
}

.chart-header strong {
    font-size: 0.56rem;
}

.chart-header small {
    color: #7e8981;
    font-size: 0.46rem;
}

.chart-bars {
    display: flex;
    height: 145px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 19px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(46, 66, 53, 0.12);
}

.chart-bars span {
    width: 25px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(var(--gold), var(--green));
    box-shadow: 4px 4px 9px rgba(117, 129, 121, 0.4);
}

.b2b-content > p {
    margin-top: 24px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.9;
}

.business-features {
    display: grid;
    margin: 31px 0 36px;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.business-features article {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow-small);
    transition: transform 0.3s ease;
}

.business-features article:hover {
    transform: translateY(-5px);
}

.business-features article > span {
    display: grid;
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    color: var(--gold);
    border-radius: 13px;
    background: var(--green);
    font-size: 0.54rem;
    font-weight: 800;
    place-items: center;
}

.business-features article > div {
    display: flex;
    flex-direction: column;
}

.business-features strong {
    font-family: var(--heading-font);
    font-size: 0.92rem;
}

.business-features small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.58rem;
}

/* Benefits */

.benefits-section {
    padding: 125px 0;
}

.benefits-heading {
    max-width: 770px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefits-grid article {
    min-height: 280px;
    padding: 31px;
    border-radius: 25px;
    background: var(--surface);
    box-shadow: var(--neomorphic-shadow-small);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.benefits-grid article:hover {
    transform: translateY(-7px);
    box-shadow: var(--neomorphic-shadow);
}

.benefit-icon {
    display: grid;
    width: 65px;
    height: 65px;
    color: var(--gold);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--neomorphic-inset);
    font-size: 0.62rem;
    font-weight: 800;
    place-items: center;
}

.benefits-grid h3 {
    margin-top: 27px;
    font-size: 1.4rem;
}

.benefits-grid p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.75;
}

/* Contact */

.contact-section {
    padding: 90px 0;
    color: var(--white);
    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(201, 151, 72, 0.2),
            transparent 30%
        ),
        var(--dark);
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-content {
    max-width: 760px;
}

.contact-content > p {
    color: var(--gold-light);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-content h2 {
    margin-top: 14px;
    font-size: clamp(3.1rem, 5.6vw, 5.7rem);
    font-weight: 600;
    letter-spacing: -3px;
    line-height: 0.94;
}

.contact-content h2 em {
    display: block;
    color: var(--gold-light);
}

.contact-buttons {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-top: 31px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.69rem;
    font-weight: 800;
}

.contact-address-card {
    display: flex;
    width: 375px;
    flex-shrink: 0;
    align-items: flex-start;
    gap: 16px;
    padding: 27px;
    border-radius: 24px;
    background: #182a20;
    box-shadow:
        12px 12px 27px rgba(3, 9, 5, 0.75),
        -8px -8px 21px rgba(59, 85, 67, 0.25);
}

.address-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--green);
    border-radius: 50%;
    background: var(--gold);
    place-items: center;
}

.contact-address-card > div {
    display: flex;
    flex-direction: column;
}

.contact-address-card small {
    color: var(--gold-light);
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.contact-address-card strong {
    margin-top: 6px;
    font-family: var(--heading-font);
    font-size: 1.1rem;
}

.contact-address-card p {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.59rem;
}

/* Footer */

.main-footer {
    padding-top: 75px;
    color: var(--white);
    background: #0d1711;
}

.footer-grid {
    display: grid;
    padding-bottom: 58px;
    grid-template-columns: 1.35fr repeat(3, 0.7fr) 1.1fr;
    gap: 42px;
}

.footer-logo {
    width: 240px;
    padding: 10px;
    border-radius: 15px;
    background: var(--surface-light);
}

.footer-brand > p {
    max-width: 340px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.67rem;
    line-height: 1.8;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 20px;
}

.footer-location > span {
    display: grid;
    width: 35px;
    height: 35px;
    color: var(--dark);
    border-radius: 50%;
    background: var(--gold);
    place-items: center;
}

.footer-location > div {
    display: flex;
    flex-direction: column;
}

.footer-location strong {
    font-size: 0.66rem;
}

.footer-location small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.56rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3,
.newsletter-column h3 {
    margin-bottom: 7px;
    font-size: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.64rem;
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.newsletter-column > p {
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.64rem;
    line-height: 1.75;
}

.newsletter-form {
    margin-top: 18px;
}

.newsletter-form label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.newsletter-form > div {
    display: flex;
    overflow: hidden;
    border-radius: 14px;
    background: #14231a;
    box-shadow:
        inset 7px 7px 14px rgba(0, 0, 0, 0.48),
        inset -5px -5px 12px rgba(58, 82, 65, 0.18);
}

.newsletter-form input {
    width: 100%;
    padding: 13px;
    color: var(--white);
    border: 0;
    outline: none;
    background: transparent;
    font-size: 0.62rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.newsletter-form button {
    width: 44px;
    color: var(--dark);
    background: var(--gold);
}

.footer-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.33);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.56rem;
}

.footer-bottom > div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* Responsive */

@media (max-width: 1150px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-container {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.3fr repeat(2, 0.8fr);
    }

    .newsletter-column {
        grid-column: span 2;
    }
}

@media (max-width: 950px) {

    .hero-container,
    .robot-section-container,
    .b2c-container,
    .b2b-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .section-tag,
    .hero-buttons {
        justify-content: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-statistics {
        max-width: 650px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .hero-image-wrapper {
        margin-top: 30px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .robot-section-content {
        grid-row: 1;
    }

    .robot-shopping-visual,
    .b2c-dashboard,
    .b2b-dashboard {
        min-height: 640px;
    }

    .contact-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-address-card {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 700px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .main-header {
        padding: 8px 0;
    }

    .header-container {
        min-height: 59px;
    }

    .brand-logo {
        width: 175px;
        padding: 7px 10px;
    }

    .brand-logo img {
        height: 38px;
    }

    .account-button {
        display: none;
    }

    .neomorphic-icon,
    .mobile-menu {
        width: 39px;
        height: 39px;
    }

    .hero-section {
        padding: 55px 0 80px;
    }

    .hero-content h1 {
        font-size: clamp(3.15rem, 16vw, 5rem);
        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .soft-button,
    .gold-button {
        width: 100%;
    }

    .hero-statistics {
        grid-template-columns: 1fr;
    }

    .neomorphic-stat {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .hero-image-card {
        min-height: 530px;
        padding: 12px;
    }

    .hero-image {
        height: 506px;
    }

    .image-overlay {
        inset: 12px;
    }

    .left-info-card,
    .right-info-card {
        display: none;
    }

    .hero-status-card {
        right: 25px;
        bottom: 25px;
        width: 250px;
    }

    .marketplace-section,
    .robot-section,
    .b2c-section,
    .b2b-section,
    .benefits-section {
        padding: 85px 0;
    }

    .section-heading h2,
    .benefits-heading h2,
    .robot-section-content h2,
    .b2c-content h2,
    .b2b-content h2 {
        font-size: 3.1rem;
        letter-spacing: -2px;
    }

    .category-grid,
    .b2c-feature-grid,
    .business-features,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .robot-shopping-visual {
        min-height: 570px;
    }

    .robot-shopping-card {
        padding: 12px;
    }

    .robot-shopping-card img {
        height: 545px;
    }

    .shopping-image-overlay {
        inset: 12px;
    }

    .recommendation-score {
        top: 20px;
        left: 10px;
        width: 115px;
        height: 115px;
    }

    .recommendation-score strong {
        font-size: 1.75rem;
    }

    .floating-match-card {
        right: 10px;
        bottom: 20px;
        width: calc(100% - 20px);
    }

    .dashboard-window,
    .business-window {
        right: -55px;
        left: 0;
        transform: scale(0.87) perspective(1000px) rotateY(-5deg);
        transform-origin: left top;
    }

    .dashboard-ai-message,
    .supplier-match-card {
        right: 5px;
        bottom: 20px;
        width: calc(100% - 10px);
    }

    .contact-content h2 {
        font-size: 3.2rem;
        letter-spacing: -2px;
    }

    .contact-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .newsletter-column {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .footer-bottom > div {
        flex-wrap: wrap;
    }
}

@media (max-width: 430px) {

    .brand-logo {
        width: 145px;
    }

    .search-icon {
        width: 14px;
        height: 14px;
    }

    .header-actions {
        gap: 6px;
    }

    .hero-content h1 {
        font-size: 3.05rem;
    }

    .hero-image-card {
        min-height: 470px;
    }

    .hero-image {
        height: 446px;
    }

    .hero-status-card {
        width: 225px;
    }

    .product-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-preview-grid article:last-child {
        display: none;
    }

    .business-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-stat-grid article:last-child {
        display: none;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(201, 151, 72, 0.75);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}