/* ARSES Homepage — Components */

.arses-chip {
    display: inline-flex;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--arses-green-800);
    background: var(--arses-card);
    border: 1px solid var(--arses-border);
    border-radius: 999px;
    box-shadow: var(--arses-shadow-sm);
    transition: background var(--arses-transition), transform var(--arses-transition), box-shadow var(--arses-transition);
}

.arses-chip:hover {
    background: rgba(184, 230, 207, 0.45);
    transform: translateY(-2px);
    box-shadow: var(--arses-shadow-md);
}

.arses-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background var(--arses-transition), transform var(--arses-transition), box-shadow var(--arses-transition);
}

.arses-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--arses-green-700), var(--arses-green-600));
    box-shadow: var(--arses-shadow-sm);
}

.arses-btn--primary:hover {
    background: linear-gradient(135deg, var(--arses-green-800), var(--arses-green-700));
    transform: translateY(-1px);
    box-shadow: var(--arses-shadow-md);
    color: #fff;
}

.arses-btn--light {
    color: var(--arses-green-900);
    background: #fff;
    box-shadow: var(--arses-shadow-sm);
}

.arses-btn--light:hover {
    background: var(--arses-mint);
    color: var(--arses-green-900);
    transform: translateY(-1px);
}

.arses-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--arses-green-800);
    background: rgba(184, 230, 207, 0.5);
    border-radius: 999px;
}

.arses-tag--light {
    background: rgba(255, 255, 255, 0.85);
}

/* Hero — action buttons */
.arses-hero__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    transition:
        background var(--arses-transition),
        color var(--arses-transition),
        border-color var(--arses-transition),
        transform var(--arses-transition);
}

.arses-hero__action--primary {
    color: #fff;
    background: var(--arses-green-700);
}

.arses-hero__action--primary:hover {
    background: var(--arses-green-800);
    color: #fff;
    transform: translateY(-1px);
    box-shadow:
        0 0 32px rgba(26, 115, 84, 0.32),
        0 8px 24px rgba(13, 59, 46, 0.14);
}

.arses-hero__action--secondary {
    color: var(--arses-green-800);
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(26, 115, 84, 0.18);
    backdrop-filter: blur(8px);
}

.arses-hero__action--secondary:hover {
    background: rgba(184, 230, 207, 0.25);
    border-color: rgba(26, 115, 84, 0.32);
    color: var(--arses-green-900);
    transform: translateY(-1px);
}

.arses-hero__learn-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: clamp(24px, 3.5vw, 32px);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--arses-green-700);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition:
        color var(--arses-transition),
        border-color var(--arses-transition);
}

.arses-hero__learn-link:hover {
    color: var(--arses-green-900);
    border-bottom-color: rgba(26, 115, 84, 0.35);
}

/* Hero V3 — glass intelligence panel */
.arses-hero__panel {
    padding: clamp(18px, 2.2vw, 24px);
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--arses-radius-xl);
    box-shadow:
        0 20px 56px rgba(13, 59, 46, 0.09),
        0 1px 0 rgba(255, 255, 255, 0.7) inset;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease,
        box-shadow 0.4s ease;
}

.arses-hero__panel:hover {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    box-shadow:
        0 24px 64px rgba(13, 59, 46, 0.11),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.arses-hero__panel-section + .arses-hero__panel-section {
    margin-top: clamp(14px, 2vw, 18px);
    padding-top: clamp(14px, 2vw, 18px);
    border-top: 1px solid rgba(26, 115, 84, 0.07);
}

.arses-hero__panel-heading {
    margin: 0 0 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--arses-muted);
}

.arses-hero__panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.arses-hero__panel-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--arses-green-900);
    background: rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    transition: background var(--arses-transition);
}

.arses-hero__panel-card:hover {
    background: rgba(255, 255, 255, 0.72);
}

.arses-hero__panel-text {
    flex: 1;
    min-width: 0;
}

.arses-hero__panel-trend {
    flex-shrink: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--arses-green-600);
    opacity: 0.85;
}

.arses-hero__panel-live {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--arses-green-600);
    box-shadow: 0 0 0 2px rgba(34, 139, 99, 0.2);
}

.arses-hero__signal-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--arses-green-600);
    box-shadow: 0 0 0 2px rgba(34, 139, 99, 0.18);
    animation: arses-signal-pulse 2.8s ease-in-out infinite;
}

@keyframes arses-signal-pulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* Neural Node Network — thinking intelligence visual */
.ai-neural-system {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.ai-neural-network {
    position: relative;
    --ai-neural-width: clamp(200px, 24vw, 260px);
    --ai-neural-height: clamp(130px, 16vw, 170px);
    width: var(--ai-neural-width);
    height: var(--ai-neural-height);
}

.ai-neural-network__ambient {
    position: absolute;
    inset: -8% -6%;
    background: radial-gradient(
        ellipse 80% 70% at 50% 48%,
        rgba(184, 230, 207, 0.22) 0%,
        rgba(107, 196, 154, 0.08) 45%,
        transparent 72%
    );
    filter: blur(18px);
    z-index: 0;
    pointer-events: none;
    animation: ai-neural-ambient-pulse 9s ease-in-out infinite;
}

.ai-neural-network__connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
}

.ai-neural-network__line {
    stroke: rgba(34, 139, 99, 0.28);
    stroke-width: 1;
    stroke-linecap: round;
    animation: ai-neural-line-fade 5.5s ease-in-out infinite;
}

.ai-neural-network__line--1 { animation-duration: 4.8s; animation-delay: 0s; }
.ai-neural-network__line--2 { animation-duration: 6.2s; animation-delay: -1.4s; }
.ai-neural-network__line--3 { animation-duration: 5.1s; animation-delay: -2.8s; }
.ai-neural-network__line--4 { animation-duration: 7s; animation-delay: -0.6s; }
.ai-neural-network__line--5 { animation-duration: 4.4s; animation-delay: -3.2s; }
.ai-neural-network__line--6 { animation-duration: 5.8s; animation-delay: -1.9s; }
.ai-neural-network__line--7 { animation-duration: 6.5s; animation-delay: -4.1s; }
.ai-neural-network__line--8 { animation-duration: 5.3s; animation-delay: -2.2s; }
.ai-neural-network__line--9 { animation-duration: 4.6s; animation-delay: -0.3s; }
.ai-neural-network__line--10 { animation-duration: 6.8s; animation-delay: -3.7s; }
.ai-neural-network__line--11 { animation-duration: 5s; animation-delay: -1.1s; }
.ai-neural-network__line--12 { animation-duration: 7.2s; animation-delay: -2.5s; }
.ai-neural-network__line--13 { animation-duration: 4.2s; animation-delay: -4.6s; }

.ai-neural-network__nodes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.ai-neural-network__node {
    position: absolute;
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: rgba(26, 115, 84, 0.88);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.35),
        0 0 10px rgba(107, 196, 154, 0.45);
    animation: ai-neural-node-pulse 4s ease-in-out infinite;
}

.ai-neural-network__node--1 {
    left: 25%;
    top: 21.4%;
    animation-duration: 3.6s;
    animation-delay: 0s;
}

.ai-neural-network__node--2 {
    left: 55%;
    top: 15.7%;
    width: 5px;
    height: 5px;
    margin: -2.5px 0 0 -2.5px;
    animation-duration: 4.8s;
    animation-delay: -1.2s;
}

.ai-neural-network__node--3 {
    left: 77.5%;
    top: 34.3%;
    width: 7px;
    height: 7px;
    margin: -3.5px 0 0 -3.5px;
    animation-duration: 5.4s;
    animation-delay: -2.6s;
}

.ai-neural-network__node--4 {
    left: 65%;
    top: 58.6%;
    animation-duration: 3.9s;
    animation-delay: -0.8s;
}

.ai-neural-network__node--5 {
    left: 38%;
    top: 70%;
    width: 5px;
    height: 5px;
    margin: -2.5px 0 0 -2.5px;
    animation-duration: 5.1s;
    animation-delay: -3.4s;
}

.ai-neural-network__node--6 {
    left: 18%;
    top: 51.4%;
    animation-duration: 4.3s;
    animation-delay: -1.7s;
}

.ai-neural-network__node--7 {
    left: 48%;
    top: 41.4%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: rgba(34, 139, 99, 0.95);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.5),
        0 0 14px rgba(107, 196, 154, 0.55);
    animation-duration: 3.2s;
    animation-delay: -0.4s;
}

.ai-neural-network__node--8 {
    left: 81%;
    top: 67.9%;
    width: 5px;
    height: 5px;
    margin: -2.5px 0 0 -2.5px;
    animation-duration: 6s;
    animation-delay: -4.2s;
}

.ai-neural-system__label {
    text-align: center;
    max-width: 14em;
}

.ai-neural-system__title {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--arses-green-900);
}

.ai-neural-system__subtitle {
    margin: 4px 0 0;
    font-size: 0.6875rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--arses-muted);
}

/* Hero placement — floating overlay between columns (no layout footprint) */
.ai-neural-system--hero {
    align-items: center;
}

/* Orbit stage — central hub in personalized grid */
.ai-neural-system--orbit {
    grid-area: hub;
    position: relative;
    z-index: 2;
    align-self: center;
    justify-self: center;
}

.ai-neural-system--orbit .ai-neural-network {
    --ai-neural-width: min(220px, 40vw);
    --ai-neural-height: min(148px, 28vw);
}

/* AI Data Flow System — dashed path visualization (hero, V1 Gold) */
.ai-brain-system {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
}

.ai-brain-system__canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 480 / 320;
    background: transparent;
    border: none;
    overflow: visible;
}

.ai-brain-system__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 1;
    pointer-events: none;
}

.ai-brain-system__path {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.5;
    stroke-dasharray: 8 10;
    animation: ai-flow-dash-move 3.2s linear infinite;
    transition: opacity 0.4s ease, stroke-width 0.4s ease;
}

.ai-brain-system__path--commerce {
    animation-duration: 2.8s;
}

.ai-brain-system__path--intelligence {
    animation-duration: 3s;
}

.ai-brain-system__path--marketplace {
    animation-duration: 3.4s;
    animation-direction: reverse;
}

.ai-brain-system__flow-marker {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    margin: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(26, 115, 84, 0.1);
    box-shadow: none;
    transform: translate(-50%, -50%);
    opacity: 0.78;
    cursor: default;
    pointer-events: auto;
    transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.ai-brain-system__flow-marker-label {
    font-size: clamp(0.5625rem, 0.9vw, 0.6875rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    white-space: nowrap;
}

/* Spatial layout — pill labels on flow paths */
.ai-brain-system__flow-marker--search { top: 26%; left: 12%; }
.ai-brain-system__flow-marker--products { top: 22%; left: 42%; }

.ai-brain-system__flow-marker--insights { top: 47%; left: 82%; }

.ai-brain-system__flow-marker--sellers { top: 72%; left: 12%; }
.ai-brain-system__flow-marker--listings { top: 68%; left: 44%; }
.ai-brain-system__flow-marker--fulfillment { top: 74%; left: 82%; }

.ai-brain-system__flow-marker--commerce {
    border-color: rgba(107, 196, 154, 0.22);
}

.ai-brain-system__flow-marker--commerce .ai-brain-system__flow-marker-label {
    color: var(--arses-green-700);
}

.ai-brain-system__flow-marker--marketplace {
    border-color: rgba(91, 159, 212, 0.22);
}

.ai-brain-system__flow-marker--marketplace .ai-brain-system__flow-marker-label {
    color: #3a6a96;
}

.ai-brain-system__flow-marker--intelligence {
    border-color: rgba(232, 184, 109, 0.25);
}

.ai-brain-system__flow-marker--intelligence .ai-brain-system__flow-marker-label {
    color: #9a7030;
}

.ai-brain-system[data-section-flow="commerce"] .ai-brain-system__path--commerce,
.ai-brain-system[data-section-flow="marketplace"] .ai-brain-system__path--marketplace,
.ai-brain-system[data-section-flow="intelligence"] .ai-brain-system__path--intelligence {
    opacity: 0.62;
}

.ai-brain-system__flow-marker.is-marketplace-linked {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
    z-index: 4;
    border-color: rgba(26, 115, 84, 0.28);
}

.ai-brain-system[data-active-flow] .ai-brain-system__path,
.ai-brain-system[data-active-flow] .ai-brain-system__flow-marker {
    opacity: 0.2;
}

.ai-brain-system[data-active-flow="commerce"] .ai-brain-system__path--commerce,
.ai-brain-system[data-active-flow="commerce"] [data-ai-flow="commerce"],
.ai-brain-system[data-active-flow="marketplace"] .ai-brain-system__path--marketplace,
.ai-brain-system[data-active-flow="marketplace"] [data-ai-flow="marketplace"],
.ai-brain-system[data-active-flow="intelligence"] .ai-brain-system__path--intelligence,
.ai-brain-system[data-active-flow="intelligence"] [data-ai-flow="intelligence"] {
    opacity: 1;
}

.ai-brain-system[data-active-flow="commerce"] .ai-brain-system__path--commerce,
.ai-brain-system[data-active-flow="marketplace"] .ai-brain-system__path--marketplace,
.ai-brain-system[data-active-flow="intelligence"] .ai-brain-system__path--intelligence {
    stroke-width: 2.4;
}

.ai-brain-system__flow-marker:focus-visible {
    outline: 2px solid rgba(107, 196, 154, 0.4);
    outline-offset: 3px;
    border-radius: 4px;
}
/* Hero — contextual AI insights panel (v3 Lite) */
.arses-decision-stream {
    display: flex;
    flex-direction: column;
    min-height: 240px;
    padding: clamp(18px, 2.2vw, 26px) clamp(16px, 2vw, 22px);
    background: rgba(255, 255, 255, 0.42);
    border-radius: var(--arses-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(1.15);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 12px 40px rgba(13, 59, 46, 0.05);
    transition: box-shadow 0.45s ease, border-color 0.45s ease;
}

.arses-decision-stream__header {
    margin-bottom: 14px;
}

.arses-decision-stream__title {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--arses-green-900);
    line-height: 1.3;
}

.arses-ai-insights__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.arses-ai-insights__lead {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: var(--arses-muted);
}

.arses-ai-insights__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.arses-ai-insights__line {
    position: relative;
    padding-left: 14px;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--arses-green-800);
    transition: opacity 0.4s ease, color 0.4s ease;
}

.arses-ai-insights__line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--arses-green-500);
    opacity: 0.65;
    transition: opacity 0.4s ease, box-shadow 0.4s ease;
}

.arses-ai-insights[data-active-flow="commerce"] .arses-ai-insights__line::before {
    background: #6bc49a;
}

.arses-ai-insights[data-active-flow="marketplace"] .arses-ai-insights__line::before {
    background: #5b9fd4;
}

.arses-ai-insights[data-active-flow="intelligence"] .arses-ai-insights__line::before {
    background: #e8b86d;
}

.arses-ai-insights[data-active-flow] {
    border-color: rgba(107, 196, 154, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 12px 40px rgba(13, 59, 46, 0.06),
        0 0 24px rgba(107, 196, 154, 0.08);
}

.arses-ai-insights[data-active-flow="commerce"] {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 12px 40px rgba(13, 59, 46, 0.06),
        0 0 24px rgba(107, 196, 154, 0.12);
}

.arses-ai-insights[data-active-flow="marketplace"] {
    border-color: rgba(91, 159, 212, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 12px 40px rgba(13, 59, 46, 0.06),
        0 0 24px rgba(91, 159, 212, 0.12);
}

.arses-ai-insights[data-active-flow="intelligence"] {
    border-color: rgba(232, 184, 109, 0.28);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 12px 40px rgba(13, 59, 46, 0.06),
        0 0 24px rgba(232, 184, 109, 0.14);
}

/* AI Thinking Core — legacy (personalized section) */
.ai-thinking-core {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.ai-thinking-core__field {
    position: relative;
    --ai-core-size: clamp(140px, 18vw, 200px);
    width: var(--ai-core-size);
    height: var(--ai-core-size);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-thinking-core__aura {
    position: absolute;
    pointer-events: none;
    filter: blur(18px);
    animation: ai-thinking-aura-shift var(--aura-duration, 7s) ease-in-out infinite;
    animation-delay: var(--aura-delay, 0s);
}

.ai-thinking-core__aura--primary {
    --aura-duration: 6.4s;
    --aura-delay: 0s;
    width: 78%;
    height: 68%;
    background: radial-gradient(
        ellipse 100% 85% at 42% 38%,
        rgba(107, 196, 154, 0.55) 0%,
        rgba(184, 230, 207, 0.28) 48%,
        transparent 72%
    );
    border-radius: 58% 42% 61% 39% / 44% 56% 38% 62%;
}

.ai-thinking-core__aura--secondary {
    --aura-duration: 8.2s;
    --aura-delay: -2.1s;
    width: 92%;
    height: 82%;
    background: radial-gradient(
        ellipse 90% 70% at 58% 62%,
        rgba(26, 115, 84, 0.32) 0%,
        rgba(107, 196, 154, 0.14) 52%,
        transparent 78%
    );
    border-radius: 44% 56% 48% 52% / 62% 38% 58% 42%;
}

.ai-thinking-core__aura--tertiary {
    --aura-duration: 5.6s;
    --aura-delay: -3.8s;
    width: 64%;
    height: 58%;
    background: radial-gradient(
        ellipse 80% 90% at 50% 50%,
        rgba(212, 240, 228, 0.42) 0%,
        rgba(107, 196, 154, 0.12) 55%,
        transparent 80%
    );
    border-radius: 52% 48% 55% 45% / 48% 52% 46% 54%;
}

.ai-thinking-core__nucleus {
    position: absolute;
    width: 38%;
    height: 34%;
    background: radial-gradient(
        ellipse 100% 90% at 48% 44%,
        rgba(184, 230, 207, 0.92) 0%,
        rgba(107, 196, 154, 0.72) 42%,
        rgba(26, 115, 84, 0.38) 78%,
        transparent 100%
    );
    border-radius: 47% 53% 58% 42% / 52% 48% 55% 45%;
    filter: blur(2px);
    animation: ai-thinking-nucleus-breathe 4.8s ease-in-out infinite;
    z-index: 1;
}

.ai-thinking-core__dots {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.ai-thinking-core__dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 8px rgba(184, 230, 207, 0.85);
    animation: ai-thinking-dot-pulse var(--dot-duration, 1.4s) ease-in-out infinite;
    animation-delay: var(--dot-delay, 0s);
}

.ai-thinking-core__dot--1 {
    --dot-duration: 1.35s;
    --dot-delay: 0s;
}

.ai-thinking-core__dot--2 {
    --dot-duration: 1.55s;
    --dot-delay: -0.45s;
}

.ai-thinking-core__dot--3 {
    --dot-duration: 1.25s;
    --dot-delay: -0.85s;
}

.ai-thinking-core__label {
    margin-top: 12px;
    text-align: center;
    max-width: 14em;
}

.ai-thinking-core__title {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--arses-green-900);
}

.ai-thinking-core__status {
    margin: 4px 0 0;
    font-size: 0.6875rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--arses-muted);
    animation: ai-thinking-status-fade 6s ease-in-out infinite;
}


/* Legacy context panel aliases — backward compat */
.arses-context-panel {
    padding: clamp(20px, 2.5vw, 28px);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(26, 115, 84, 0.1);
    border-radius: var(--arses-radius-xl);
    box-shadow:
        0 8px 32px rgba(13, 59, 46, 0.07),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
    backdrop-filter: blur(16px);
}

.arses-context-panel__header {
    margin-bottom: 16px;
}

.arses-context-panel__badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--arses-green-700);
    background: rgba(184, 230, 207, 0.45);
    border-radius: 999px;
}

.arses-context-panel__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--arses-green-900);
    letter-spacing: -0.01em;
}

.arses-context-panel__activity {
    margin-bottom: 18px;
    padding: 14px 16px;
    background: rgba(240, 252, 246, 0.65);
    border-radius: var(--arses-radius-lg);
    border: 1px solid rgba(26, 115, 84, 0.08);
}

.arses-context-panel__body {
    margin: 0 0 8px;
    font-size: 0.875rem;
    color: var(--arses-muted);
    line-height: 1.55;
}

.arses-context-panel__highlight {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--arses-green-700);
    line-height: 1.45;
}

.arses-context-panel__cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 18px;
}

.arses-context-panel__suggestions-label {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--arses-muted);
}

.arses-context-panel__pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.arses-suggestion-pill {
    display: inline-flex;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--arses-green-800);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(26, 115, 84, 0.12);
    border-radius: 999px;
    cursor: pointer;
    transition:
        background var(--arses-transition),
        border-color var(--arses-transition),
        box-shadow var(--arses-transition);
}

.arses-suggestion-pill:hover {
    background: rgba(184, 230, 207, 0.55);
    border-color: rgba(26, 115, 84, 0.22);
    box-shadow: 0 2px 8px rgba(13, 59, 46, 0.06);
}

/* Legacy chips — used elsewhere on homepage */
/* Journey — premium visual story cards */
.arses-journey {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, var(--arses-cream) 100%);
}

.arses-journey .section-eyebrow {
    display: block;
    margin: 0 0 28px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--arses-green-700);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

.journey-card {
    display: grid;
    grid-template-rows: 7fr 3fr;
    min-height: 300px;
    min-width: 0;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(13, 59, 46, 0.07);
    color: var(--arses-text);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.journey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(13, 59, 46, 0.15);
}

.journey-card__media {
    position: relative;
    overflow: hidden;
    min-height: 0;
    background: var(--arses-sand);
}

.journey-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.journey-card:hover .journey-card__image {
    transform: scale(1.05);
}

.journey-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 18px 20px 20px;
    background: #fff;
}

.journey-card__title {
    margin: 0;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.35;
    color: var(--arses-green-900);
    letter-spacing: -0.01em;
    overflow-wrap: break-word;
}

.journey-card__desc {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--arses-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.journey-card__action {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--arses-green-700);
    transition: transform 0.3s ease, color 0.3s ease;
}

.journey-card:hover .journey-card__action {
    transform: translateX(3px);
    color: var(--arses-green-900);
}

/* Action cards (legacy quick actions) */
.arses-action-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--arses-card);
    border: 1px solid var(--arses-border);
    border-radius: var(--arses-radius-lg);
    box-shadow: var(--arses-shadow-sm);
    color: var(--arses-text);
    position: relative;
}

.arses-action-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.arses-action-card__title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--arses-green-900);
}

.arses-action-card__text {
    font-size: 0.8rem;
    color: var(--arses-muted);
}

.arses-action-card__arrow {
    color: var(--arses-green-600);
    font-weight: 700;
}

/* Commerce V2 — AI-assisted decision system */
.arses-commerce-v2 {
    background: linear-gradient(180deg, #ffffff 0%, rgba(250, 248, 243, 0.35) 100%);
    padding: 48px 0 40px;
}

.arses-commerce-v2__head {
    margin-bottom: 28px;
}

.commerce-v2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 1. Top decision bar */
.commerce-v2__decision {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--arses-radius-xl);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(26, 115, 84, 0.08);
}

.commerce-v2__decision-title {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--arses-green-900);
}

.commerce-v2__decision-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.commerce-v2__decision-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--arses-green-800);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(26, 115, 84, 0.1);
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
    .commerce-v2__decision-btn:hover {
        background: #ffffff;
        border-color: rgba(26, 115, 84, 0.2);
        transform: translateY(-1px);
        color: var(--arses-green-900);
    }
}

.commerce-v2__decision-icon {
    flex-shrink: 0;
    font-size: 0.9em;
    opacity: 0.85;
}

.commerce-v2__decision-label {
    white-space: nowrap;
}

.commerce-v2__decision-meta {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--arses-muted);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 2–4. Three-panel workspace */
.commerce-v2__workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.commerce-v2__panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    padding: 18px 20px;
    border-radius: var(--arses-radius-xl);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(26, 115, 84, 0.07);
}

.commerce-v2__panel--activity {
    background: linear-gradient(160deg, rgba(232, 248, 240, 0.35) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.commerce-v2__panel--ai {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.88) 0%, rgba(232, 248, 240, 0.25) 100%);
    border-color: rgba(26, 115, 84, 0.12);
    box-shadow: 0 4px 24px rgba(13, 59, 46, 0.04);
}

.commerce-v2__panel--feed {
    background: rgba(255, 255, 255, 0.65);
    max-height: 520px;
    overflow: hidden;
}

.commerce-v2__panel-title {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--arses-green-700);
}

/* Activity timeline */
.commerce-v2__timeline {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.commerce-v2__timeline-entry {
    display: grid;
    grid-template-columns: 12px 1fr;
    gap: 12px;
    padding-bottom: 18px;
    position: relative;
}

.commerce-v2__timeline-entry:last-child {
    padding-bottom: 0;
}

.commerce-v2__timeline-entry:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 14px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(26, 115, 84, 0.2) 0%, rgba(26, 115, 84, 0.05) 100%);
}

.commerce-v2__timeline-marker {
    width: 10px;
    height: 10px;
    margin-top: 4px;
    border-radius: 50%;
    background: var(--arses-green-600);
    box-shadow: 0 0 0 3px rgba(184, 230, 207, 0.45);
    position: relative;
    z-index: 1;
}

.commerce-v2__timeline-entry--cart .commerce-v2__timeline-marker {
    background: var(--arses-green-700);
}

.commerce-v2__timeline-entry--intent .commerce-v2__timeline-marker {
    background: var(--arses-mint);
    box-shadow: 0 0 0 3px rgba(184, 230, 207, 0.6);
}

.commerce-v2__timeline-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.commerce-v2__timeline-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.commerce-v2__timeline-label {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--arses-green-900);
}

.commerce-v2__timeline-action {
    flex-shrink: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--arses-green-700);
    text-decoration: none;
}

@media (hover: hover) {
    .commerce-v2__timeline-action:hover {
        color: var(--arses-green-900);
        text-decoration: underline;
    }
}

.commerce-v2__activity-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.commerce-v2__activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(26, 115, 84, 0.05);
    transition: background 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) {
    .commerce-v2__activity-item:hover {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(26, 115, 84, 0.12);
    }
}

.commerce-v2__activity-thumb {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    background: rgba(184, 230, 207, 0.25);
}

.commerce-v2__activity-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.commerce-v2__activity-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--arses-green-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.commerce-v2__activity-meta {
    font-size: 0.6875rem;
    color: var(--arses-muted);
}

.commerce-v2__activity-suggestion {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--arses-green-700);
    font-style: italic;
    line-height: 1.35;
}

.commerce-v2__activity-price {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--arses-green-700);
}

.commerce-v2__signals {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.commerce-v2__signal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--arses-green-800);
    line-height: 1.4;
}

.commerce-v2__signal-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--arses-mint);
}

.commerce-v2__signal--high .commerce-v2__signal-dot {
    background: var(--arses-green-600);
    box-shadow: 0 0 6px rgba(34, 139, 99, 0.4);
}

.commerce-v2__signal--medium .commerce-v2__signal-dot {
    background: var(--arses-green-700);
}

.commerce-v2__signal--low .commerce-v2__signal-dot {
    background: rgba(90, 114, 104, 0.4);
}

/* AI decision layer */
.commerce-v2__insight {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.commerce-v2__insight-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border-radius: var(--arses-radius-lg);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(26, 115, 84, 0.06);
}

.commerce-v2__insight-block--action {
    background: linear-gradient(135deg, rgba(232, 248, 240, 0.5) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-color: rgba(26, 115, 84, 0.14);
}

.commerce-v2__insight-tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--arses-muted);
}

.commerce-v2__insight-tag--action {
    color: var(--arses-green-700);
}

.commerce-v2__insight-text {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--arses-green-900);
}

.commerce-v2__insight-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--arses-green-700);
    text-decoration: none;
}

@media (hover: hover) {
    .commerce-v2__insight-cta:hover {
        color: var(--arses-green-900);
    }
}

.commerce-v2__insight-cta-arrow {
    transition: transform 0.2s ease;
}

@media (hover: hover) {
    .commerce-v2__insight-cta:hover .commerce-v2__insight-cta-arrow {
        transform: translateX(3px);
    }
}

/* Smart feed */
.commerce-v2__feed {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    flex: 1;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(26, 115, 84, 0.2) transparent;
}

.commerce-v2__feed-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.commerce-v2__feed-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.commerce-v2__feed-label {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--arses-green-900);
}

.commerce-v2__feed-badge {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 2px 8px;
    color: var(--arses-green-700);
    background: rgba(184, 230, 207, 0.35);
    border-radius: 999px;
}

.commerce-v2__feed-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.commerce-v2__feed-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(26, 115, 84, 0.08);
    border-radius: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
    .commerce-v2__feed-card:hover {
        transform: translateY(-2px);
        border-color: rgba(26, 115, 84, 0.16);
        box-shadow: 0 4px 12px rgba(13, 59, 46, 0.06);
    }
}

.commerce-v2__feed-media {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(184, 230, 207, 0.2);
}

.commerce-v2__feed-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commerce-v2__feed-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.commerce-v2__feed-name {
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--arses-green-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.commerce-v2__feed-price {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--arses-green-700);
}

.commerce-v2__feed-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--arses-green-800);
}

.commerce-v2__feed-rating .arses-icon--star {
    font-size: 0.6rem;
}

.commerce-v2__empty {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--arses-muted);
    font-style: italic;
}

/* 5. Bottom snapshot bar */
.commerce-v2__snapshot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 20px;
    border-radius: var(--arses-radius-lg);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(26, 115, 84, 0.06);
}

.commerce-v2__snapshot-sellers,
.commerce-v2__snapshot-orders,
.commerce-v2__snapshot-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.commerce-v2__snapshot-label {
    flex-shrink: 0;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--arses-muted);
}

.commerce-v2__snapshot-avatars {
    display: flex;
    align-items: center;
}

.commerce-v2__snapshot-avatar {
    display: block;
    width: 32px;
    height: 32px;
    margin-left: -6px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 4px rgba(13, 59, 46, 0.1);
    transition: transform 0.2s ease, z-index 0s;
    position: relative;
}

.commerce-v2__snapshot-avatar:first-child {
    margin-left: 0;
}

@media (hover: hover) {
    .commerce-v2__snapshot-avatar:hover {
        transform: scale(1.1);
        z-index: 2;
    }
}

.commerce-v2__snapshot-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commerce-v2__snapshot-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--arses-green-800);
    background: rgba(184, 230, 207, 0.5);
}

.commerce-v2__snapshot-order {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--arses-muted);
    text-decoration: none;
}

.commerce-v2__snapshot-order--idle {
    font-style: italic;
}

.commerce-v2__snapshot-stats {
    margin-left: auto;
    gap: 16px;
}

.commerce-v2__snapshot-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    text-align: center;
}

.commerce-v2__snapshot-stat-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--arses-green-900);
    line-height: 1.2;
}

.commerce-v2__snapshot-stat-label {
    font-size: 0.625rem;
    color: var(--arses-muted);
    white-space: nowrap;
}


/* Featured local sellers — Canadian lifestyle photography cards */
.seller-card {
    display: grid;
    grid-template-rows: 3fr 2fr;
    min-height: 320px;
    min-width: 0;
    padding: 0;
    gap: 0;
    background: #ffffff;
    border: 1px solid var(--arses-border);
    border-radius: 18px;
    overflow: hidden;
    color: var(--arses-text);
    box-shadow: 0 4px 24px rgba(13, 59, 46, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.seller-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 139, 99, 0.28);
    box-shadow: 0 18px 44px rgba(13, 59, 46, 0.14);
}

.seller-card__media {
    position: relative;
    overflow: hidden;
    min-height: 0;
    background: var(--arses-sand);
}

.seller-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.seller-card:hover .seller-card__image {
    transform: scale(1.05);
}

.seller-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 59, 46, 0) 45%,
        rgba(13, 59, 46, 0.18) 72%,
        rgba(13, 59, 46, 0.42) 100%
    );
    pointer-events: none;
}

.seller-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px 16px;
}

.seller-card__category {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--arses-green-800);
    background: rgba(184, 230, 207, 0.45);
    border-radius: 999px;
    line-height: 1.3;
}

.seller-card__green-score {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    width: auto;
    height: auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--arses-green-900);
    box-shadow:
        0 4px 16px rgba(13, 59, 46, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    line-height: 1;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.seller-card:hover .seller-card__green-score {
    box-shadow:
        0 6px 20px rgba(26, 115, 84, 0.22),
        0 0 0 1px rgba(184, 230, 207, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transform: translateY(-1px);
}

.seller-card__green-icon {
    font-size: 0.75rem;
    line-height: 1;
}

.seller-card__green-value {
    margin-top: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--arses-green-900);
}

.seller-card__name {
    margin: 4px 0 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--arses-green-900);
}

.seller-card__location {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--arses-muted);
}

.seller-card__stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 8px;
    border-top: none;
    font-size: 0.78rem;
    line-height: 1.3;
    color: var(--arses-muted);
}

.seller-card__stat {
    font-weight: 500;
    color: var(--arses-muted);
}

.seller-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: auto;
    font-weight: 700;
    font-size: 0.82rem;
    color: #5a7268;
    white-space: nowrap;
}

.seller-card__star {
    color: #c9a227;
    font-size: 0.875rem;
    line-height: 1;
}

/* Living stream — section shell */
.arses-living-stream {
    padding: 28px 0;
    background: transparent;
    border: none;
    overflow: hidden;
}

/* ============================================================
   Discovery Dashboard — categories + AI suggestions
   ============================================================ */

.arses-discovery {
    background: transparent;
}

.arses-discovery__board {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
    background: #ffffff;
    border: 1px solid rgba(26, 115, 84, 0.12);
    border-radius: 20px;
    box-shadow:
        0 4px 24px rgba(13, 59, 46, 0.06),
        0 1px 3px rgba(13, 59, 46, 0.04);
    overflow: hidden;
    transition:
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.arses-discovery__board:hover {
    border-color: rgba(26, 115, 84, 0.18);
    box-shadow:
        0 8px 32px rgba(13, 59, 46, 0.08),
        0 2px 6px rgba(13, 59, 46, 0.04);
}

.arses-discovery__panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: background 0.3s ease;
}

.arses-discovery__panel--categories {
    flex: 0 0 35%;
    max-width: 35%;
    padding: 28px 24px 24px 28px;
    background: linear-gradient(180deg, #fafcfb 0%, #f8fbf9 100%);
}

.arses-discovery__panel--ai {
    flex: 1 1 0;
    min-width: 0;
    padding: 28px 28px 26px 20px;
    background: linear-gradient(160deg, #ffffff 0%, #f7fbf9 55%, #f2f8f5 100%);
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.8);
}

.arses-discovery__panel--ai.is-filtering .arses-discovery__rec-rail {
    pointer-events: none;
}

.arses-discovery__panel--ai.is-synced .arses-discovery__panel-eyebrow--ai {
    color: var(--arses-green-700);
}

.arses-discovery__panel--categories.is-context-active {
    background: linear-gradient(180deg, #f8fcfa 0%, #f2f8f5 100%);
}

.arses-discovery__divider {
    display: none;
    flex: 0 0 1px;
    align-self: stretch;
    width: 1px;
    height: auto;
    margin: 20px 0;
    background: linear-gradient(
        180deg,
        rgba(26, 115, 84, 0) 0%,
        rgba(26, 115, 84, 0.12) 12%,
        rgba(26, 115, 84, 0.12) 88%,
        rgba(26, 115, 84, 0) 100%
    );
    box-shadow: 1px 0 8px rgba(13, 59, 46, 0.04);
}

.arses-discovery__panel-head {
    margin-bottom: 18px;
}

.arses-discovery__panel-head--primary {
    margin-bottom: 22px;
    padding-bottom: 4px;
}

.arses-discovery__panel-eyebrow {
    display: block;
    margin: 0 0 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--arses-muted);
}

.arses-discovery__panel-eyebrow--ai {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--arses-green-600);
}

.arses-discovery__spark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.6rem;
    color: var(--arses-green-800);
    background: rgba(184, 230, 207, 0.55);
}

.arses-discovery__panel-title {
    margin: 0 0 6px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--arses-green-900);
}

.arses-discovery__panel-title--primary {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--arses-green-900);
}

.arses-discovery__panel-desc {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--arses-muted);
    max-width: 36ch;
}

.arses-discovery__panel--ai .arses-discovery__panel-desc {
    max-width: 48ch;
}

.arses-discovery__categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: start;
    align-content: start;
    gap: 12px;
}

.arses-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: start;
    align-content: start;
    gap: 14px;
}

.arses-discovery__rec-rail {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding-bottom: 8px;
    padding-inline: 0;
    cursor: grab;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.arses-discovery__rec-rail.is-dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
    cursor: grabbing;
    user-select: none;
}

.arses-discovery__rec-rail .arses-rec-card--discovery {
    flex: 0 0 var(--ai-carousel-card-width, 240px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.arses-discovery__rec-rail .arses-rec__loading,
.arses-discovery__rec-rail .arses-rec__empty {
    flex: 1 1 100%;
    width: 100%;
    scroll-snap-align: none;
}

/* AI suggestions carousel shell */
.arses-ai-carousel {
    --ai-carousel-card-width: min(240px, 72%);
    position: relative;
    margin: 0 -6px;
}

.arses-ai-carousel__nav {
    display: none;
    position: absolute;
    top: 38%;
    z-index: 3;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 50%;
    color: var(--arses-green-800);
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 4px 16px rgba(13, 59, 46, 0.1),
        0 0 0 1px rgba(26, 115, 84, 0.08);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.arses-ai-carousel__nav:hover {
    transform: scale(1.06);
    box-shadow:
        0 6px 20px rgba(13, 59, 46, 0.14),
        0 0 0 1px rgba(34, 139, 99, 0.14);
}

.arses-ai-carousel__nav:focus-visible {
    outline: 2px solid var(--arses-green-600);
    outline-offset: 2px;
}

.arses-ai-carousel__nav--prev {
    left: 0;
}

.arses-ai-carousel__nav--next {
    right: 0;
}

@media (min-width: 993px) {
    .arses-ai-carousel__nav {
        display: flex;
    }
}

/* Visual category tiles — image-driven discovery cards */

.arses-category-tile {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    align-self: start;
    border-radius: 16px;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    isolation: isolate;
    box-shadow: 0 2px 12px rgba(13, 59, 46, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.arses-category-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(13, 59, 46, 0.16);
    color: #ffffff;
}

.arses-category-tile__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.arses-category-tile__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(8, 20, 16, 0) 0%,
        rgba(8, 20, 16, 0.08) 42%,
        rgba(8, 20, 16, 0.52) 72%,
        rgba(8, 20, 16, 0.78) 100%
    );
    transition: background 0.3s ease;
}

.arses-category-tile:hover .arses-category-tile__media {
    transform: scale(1.05);
}

.arses-category-tile:hover .arses-category-tile__scrim {
    background: linear-gradient(
        180deg,
        rgba(8, 20, 16, 0.06) 0%,
        rgba(8, 20, 16, 0.18) 38%,
        rgba(8, 20, 16, 0.62) 70%,
        rgba(8, 20, 16, 0.88) 100%
    );
}

.arses-category-tile__label {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 18px 16px;
}

.arses-category-tile__name {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    transition:
        text-shadow 0.3s ease,
        transform 0.3s ease;
}

.arses-category-tile:hover .arses-category-tile__name {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
    transform: translateY(-1px);
}

.arses-category-tile.is-active {
    box-shadow:
        0 0 0 2px var(--arses-green-600),
        0 10px 28px rgba(13, 59, 46, 0.18);
}

.arses-category-tile.is-active .arses-category-tile__scrim {
    background: linear-gradient(
        180deg,
        rgba(8, 20, 16, 0.04) 0%,
        rgba(8, 20, 16, 0.16) 40%,
        rgba(8, 20, 16, 0.58) 72%,
        rgba(8, 20, 16, 0.84) 100%
    );
}

/* Cinematic placeholder imagery — swap __media background-image when assets are ready */

.arses-category-tile--plants-garden .arses-category-tile__media {
    background-image:
        radial-gradient(ellipse 90% 70% at 72% 22%, rgba(255, 255, 255, 0.2), transparent 58%),
        radial-gradient(ellipse 55% 45% at 18% 78%, rgba(120, 210, 160, 0.35), transparent 62%),
        linear-gradient(155deg, #0f3d2e 0%, #1f6b4d 42%, #3d9a72 100%);
}

.arses-category-tile--home-living .arses-category-tile__media {
    background-image:
        radial-gradient(ellipse 80% 60% at 68% 28%, rgba(255, 248, 236, 0.28), transparent 55%),
        radial-gradient(ellipse 50% 40% at 24% 82%, rgba(210, 180, 140, 0.25), transparent 60%),
        linear-gradient(150deg, #5c4a3a 0%, #8b7355 38%, #c4a882 100%);
}

.arses-category-tile--food-beverages .arses-category-tile__media {
    background-image:
        radial-gradient(ellipse 75% 55% at 70% 30%, rgba(255, 230, 190, 0.3), transparent 58%),
        radial-gradient(ellipse 45% 40% at 20% 75%, rgba(180, 90, 50, 0.28), transparent 62%),
        linear-gradient(160deg, #4a2818 0%, #8b4a28 40%, #c87840 100%);
}

.arses-category-tile--beauty-care .arses-category-tile__media {
    background-image:
        radial-gradient(ellipse 85% 65% at 75% 25%, rgba(255, 240, 248, 0.32), transparent 56%),
        radial-gradient(ellipse 50% 45% at 22% 80%, rgba(200, 160, 190, 0.28), transparent 60%),
        linear-gradient(155deg, #4a3048 0%, #7a5570 42%, #b890a8 100%);
}

.arses-category-tile--handmade-art .arses-category-tile__media {
    background-image:
        radial-gradient(ellipse 80% 60% at 65% 26%, rgba(255, 235, 210, 0.26), transparent 55%),
        radial-gradient(ellipse 48% 42% at 28% 78%, rgba(160, 90, 60, 0.3), transparent 62%),
        linear-gradient(150deg, #3d2818 0%, #7a4a30 40%, #b87850 100%);
}

.arses-category-tile--kids-toys .arses-category-tile__media {
    background-image:
        radial-gradient(ellipse 82% 62% at 70% 24%, rgba(255, 248, 220, 0.3), transparent 56%),
        radial-gradient(ellipse 50% 44% at 24% 78%, rgba(240, 170, 120, 0.28), transparent 60%),
        linear-gradient(155deg, #6a4530 0%, #b87848 40%, #e8b070 100%);
}

.arses-category-tile--sports-outdoor .arses-category-tile__media {
    background-image:
        radial-gradient(ellipse 85% 65% at 72% 22%, rgba(220, 245, 255, 0.28), transparent 56%),
        radial-gradient(ellipse 52% 46% at 20% 80%, rgba(40, 120, 100, 0.32), transparent 62%),
        linear-gradient(150deg, #143828 0%, #2a6850 42%, #4a9878 100%);
}

.arses-category-tile--education-books .arses-category-tile__media {
    background-image:
        radial-gradient(ellipse 78% 58% at 68% 28%, rgba(255, 240, 210, 0.28), transparent 55%),
        radial-gradient(ellipse 48% 42% at 26% 78%, rgba(120, 80, 50, 0.3), transparent 62%),
        linear-gradient(155deg, #2a2018 0%, #5c4030 40%, #8a6048 100%);
}

.arses-categories__head {
    margin-bottom: 28px;
}

.arses-categories__eyebrow {
    display: block;
    margin: 0 0 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--arses-muted);
}

/* ============================================================
   AI recommendation cards
   ============================================================ */

.arses-rec-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(26, 115, 84, 0.1);
    border-radius: 14px;
    box-shadow: none;
    color: var(--arses-text);
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.arses-rec-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 139, 99, 0.35);
    box-shadow:
        0 14px 36px rgba(13, 59, 46, 0.1),
        0 0 0 1px rgba(34, 139, 99, 0.12);
    color: var(--arses-text);
}

.arses-rec-card--discovery {
    padding: 0;
    border: none;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
    transform: scale(0.95);
    opacity: 0.85;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.arses-rec-card--discovery:hover {
    color: var(--arses-text);
}

.arses-rec-card--discovery.is-carousel-focus {
    transform: scale(1);
    opacity: 1;
}

.arses-rec-card--discovery.is-carousel-focus:hover {
    transform: scale(1);
}

.arses-rec-card--discovery .arses-rec-card__media-wrap {
    position: relative;
    margin-bottom: 12px;
}

.arses-rec-card--discovery .arses-rec-card__media {
    aspect-ratio: 4 / 5;
    margin-bottom: 0;
    border-radius: 14px;
    overflow: hidden;
}

.arses-rec-card--discovery .arses-rec-card__badge--ai {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    margin: 0;
    padding: 5px 10px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5b21b6;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(91, 33, 182, 0.12);
}

.arses-rec-card--discovery .arses-rec-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arses-rec-card--discovery .arses-rec-card__footer {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    gap: 2px;
}

.arses-rec-card--discovery .arses-rec-card__price {
    font-size: 0.9375rem;
}

.arses-rec-card--discovery .arses-rec-card__seller {
    font-size: 0.75rem;
    color: var(--arses-muted);
}

.arses-rec-card--discovery.is-dimmed {
    opacity: 0.38;
    transform: scale(0.92);
    pointer-events: none;
}

.arses-rec-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.arses-rec-card__badge--ai {
    color: #5b21b6;
    background: rgba(167, 139, 250, 0.22);
}

.arses-rec-card__score {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--arses-muted);
    background: rgba(26, 115, 84, 0.06);
    border-radius: 999px;
    line-height: 1.2;
}

.arses-rec-card__category {
    display: inline-block;
    margin: 0 0 8px;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--arses-green-700);
    background: rgba(184, 230, 207, 0.35);
    border-radius: 999px;
    width: fit-content;
}

.arses-rec-card__media--gradient-1 {
    background: linear-gradient(135deg, #d8f3e5 0%, #b8e6cf 100%);
}

.arses-rec-card__media--gradient-2 {
    background: linear-gradient(135deg, #e8f0f5 0%, #c5d9e8 100%);
}

.arses-rec-card__media--gradient-3 {
    background: linear-gradient(135deg, #e5f5ec 0%, #a8dcc4 100%);
}

.arses-rec-card__media--gradient-4 {
    background: linear-gradient(135deg, #f5f0e5 0%, #e0d4b8 100%);
}

.arses-rec-card__media--has-image {
    background-size: cover;
    background-position: center;
    border: none;
}

.arses-rec__loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 220px;
}

/* Skeleton cards — layout-stable loading state */
.arses-rec-card--skeleton {
    pointer-events: none;
}

.arses-rec-card--discovery.arses-rec-card--skeleton .arses-rec-card__skeleton-block {
    aspect-ratio: 4 / 5;
    border-radius: 14px;
}

.arses-rec-card--discovery.arses-rec-card--skeleton {
    border: none;
    background: transparent;
    box-shadow: none;
}

.arses-rec-card--skeleton:hover {
    transform: none;
    box-shadow: none;
}

.arses-rec-card__skeleton-line,
.arses-rec-card__skeleton-block {
    display: block;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        rgba(26, 115, 84, 0.06) 0%,
        rgba(26, 115, 84, 0.12) 45%,
        rgba(26, 115, 84, 0.06) 90%
    );
    background-size: 200% 100%;
    animation: arses-shimmer 1.4s ease-in-out infinite;
}

.arses-rec-card__skeleton-block {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 12px;
    border-radius: 8px;
}

.arses-rec-card__skeleton-line {
    height: 10px;
    margin-bottom: 8px;
}

.arses-rec-card__skeleton-line--short {
    width: 42%;
}

.arses-rec-card__skeleton-line--medium {
    width: 68%;
}

.arses-rec-card__skeleton-line--title {
    height: 14px;
    width: 85%;
    margin-bottom: 12px;
}

.arses-rec-card__skeleton-line--price {
    height: 12px;
    width: 36%;
    margin-bottom: 6px;
}

/* Live morph — card enter/exit */
.arses-rec-card.is-morph-exit {
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.28s ease-out,
        transform 0.28s ease-out;
}

.arses-rec-card--discovery.is-morph-exit {
    transform: scale(0.9);
}

.arses-rec-card.is-morph-enter {
    opacity: 0;
    transform: translateY(8px);
}

.arses-rec-card--discovery.is-morph-enter {
    transform: scale(0.9);
}

.arses-rec-card.is-morph-enter.is-morph-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.32s ease-out,
        transform 0.32s ease-out;
}

.arses-rec-card--discovery.is-morph-enter.is-morph-visible {
    opacity: 0.85;
    transform: scale(0.95);
}

.arses-rec-card--discovery.is-morph-enter.is-morph-visible.is-carousel-focus {
    opacity: 1;
    transform: scale(1);
}

.arses-discovery__rec-rail.is-updating {
    min-height: 220px;
}

.arses-rec__loading-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--arses-green-600);
    opacity: 0.35;
    animation: arses-rec-pulse 1.2s ease-in-out infinite;
}

.arses-rec__loading-dot:nth-child(2) {
    animation-delay: 0.15s;
}

.arses-rec__loading-dot:nth-child(3) {
    animation-delay: 0.3s;
}

.arses-rec__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 32px 16px;
    text-align: center;
    color: var(--arses-muted);
    font-size: 0.9375rem;
}

.arses-rec-card__badge {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    line-height: 1.2;
}

.arses-rec-card__badge--local {
    color: #1a5c8a;
    background: rgba(26, 115, 180, 0.1);
}

.arses-rec-card__badge--recommended {
    color: var(--arses-green-800);
    background: rgba(184, 230, 207, 0.55);
}

.arses-rec-card__badge--eco {
    color: #2d6b4a;
    background: rgba(45, 122, 82, 0.12);
}

.arses-rec-card__badge--top-pick {
    color: #8b5a14;
    background: rgba(212, 168, 50, 0.18);
}

.arses-rec-card__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 16px;
    border-radius: 10px;
    background: #e9eeeb;
    border: 1px dashed rgba(26, 115, 84, 0.12);
}

.arses-rec-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
    padding: 0 10px 10px;
}

.arses-rec-card__title {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--arses-green-900);
}

.arses-rec-card__subtitle {
    margin: 0 0 16px;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--arses-muted);
    flex: 1;
}

.arses-rec-card__footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(26, 115, 84, 0.08);
}

.arses-rec-card__price {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--arses-green-800);
    transition: color 0.25s ease;
}

.arses-rec-card:hover .arses-rec-card__price {
    color: var(--arses-green-600);
}

.arses-rec-card__seller {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--arses-muted);
}

/* ============================================================
   Green Delivery + Onboarding — dual-card board
   ============================================================ */

.arses-delivery {
    position: relative;
    background: transparent;
    overflow: hidden;
}

.arses-delivery__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.arses-delivery__backdrop-map {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 70% 30%, rgba(184, 230, 207, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(168, 212, 230, 0.2) 0%, transparent 65%),
        linear-gradient(165deg, #dceee4 0%, #e8f4ed 40%, #d4e8df 100%);
    filter: blur(2px) saturate(0.85);
    transform: scale(1.04);
}

.arses-delivery__backdrop-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(249, 252, 250, 0.88) 0%, rgba(249, 252, 250, 0.72) 45%, rgba(249, 252, 250, 0.92) 100%),
        linear-gradient(90deg, rgba(249, 252, 250, 0.8) 0%, rgba(249, 252, 250, 0.45) 50%, rgba(249, 252, 250, 0.8) 100%);
}

.arses-delivery .arses-container {
    position: relative;
    z-index: 1;
}

.arses-delivery__card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid var(--arses-border);
    border-radius: 18px;
    box-shadow: var(--arses-shadow-sm);
    overflow: hidden;
    transition:
        box-shadow var(--arses-transition),
        border-color var(--arses-transition);
}

.arses-delivery__card:hover {
    border-color: rgba(26, 115, 84, 0.2);
    box-shadow: var(--arses-shadow-md);
}

.arses-delivery__card--logistics {
    padding: 0;
    border: 1px solid rgba(26, 115, 84, 0.14);
    border-top: 3px solid var(--arses-green-600);
    background: #f4faf7;
    overflow: hidden;
}

.arses-delivery__card--logistics:hover {
    border-color: rgba(26, 115, 84, 0.22);
}

/* Logistics route visualization */
.arses-logistics-viz {
    position: relative;
    min-height: 420px;
    isolation: isolate;
}

.arses-logistics-viz__canvas {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.arses-logistics-map {
    opacity: 0.92;
}

.arses-logistics-path {
    opacity: 0.72;
    transition:
        opacity 0.35s ease,
        stroke-width 0.35s ease,
        filter 0.35s ease;
}

.arses-logistics-vehicle {
    transition: opacity 0.35s ease;
}

.arses-logistics-viz__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 28px 32px;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(244, 250, 247, 0.92) 0%,
        rgba(244, 250, 247, 0.55) 28%,
        rgba(244, 250, 247, 0.08) 55%,
        rgba(244, 250, 247, 0.45) 100%
    );
}

.arses-logistics-viz__head {
    max-width: 340px;
    margin-bottom: auto;
    pointer-events: auto;
}

.arses-logistics-viz__title {
    margin: 0 0 8px;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--arses-green-900);
}

.arses-logistics-viz__subtitle {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--arses-green-800);
}

.arses-logistics-viz__desc {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--arses-muted);
}

.arses-logistics-viz__labels {
    list-style: none;
    margin: 0;
    padding: 0;
    display: contents;
}

.arses-logistics-route {
    position: absolute;
    pointer-events: auto;
}

.arses-logistics-route--bicycle {
    left: 6%;
    bottom: 22%;
}

.arses-logistics-route--ev {
    left: 38%;
    bottom: 38%;
}

.arses-logistics-route--car {
    right: 8%;
    top: 28%;
}

.arses-logistics-route__trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 8px 14px 8px 10px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(26, 115, 84, 0.14);
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(13, 59, 46, 0.08);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.arses-logistics-route__trigger:hover,
.arses-logistics-route__trigger:focus-visible {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(26, 115, 84, 0.28);
    box-shadow: 0 6px 28px rgba(13, 59, 46, 0.14);
    transform: translateY(-2px);
}

.arses-logistics-route__indicator {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
}

.arses-logistics-route--bicycle .arses-logistics-route__indicator {
    background: #1a7354;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 0 12px rgba(26, 115, 84, 0.5);
}

.arses-logistics-route--ev .arses-logistics-route__indicator {
    background: #228b63;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 0 12px rgba(34, 139, 99, 0.45);
}

.arses-logistics-route--car .arses-logistics-route__indicator {
    background: #64748b;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 0 10px rgba(100, 116, 139, 0.35);
}

.arses-logistics-route__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.arses-logistics-route__name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--arses-green-900);
    white-space: nowrap;
}

.arses-logistics-route__impact {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--arses-muted);
    white-space: nowrap;
}

.arses-logistics-viz__cta {
    align-self: flex-start;
    margin-top: 16px;
    pointer-events: auto;
}

/* Hover interaction — highlight active route, dim others */
.arses-logistics-viz[data-active-route] .arses-logistics-path {
    opacity: 0.22;
}

.arses-logistics-viz[data-active-route] .arses-logistics-vehicle {
    opacity: 0.35;
}

.arses-logistics-viz[data-active-route="bicycle"] .arses-logistics-path--bicycle,
.arses-logistics-viz[data-active-route="ev"] .arses-logistics-path--ev,
.arses-logistics-viz[data-active-route="car"] .arses-logistics-path--car {
    opacity: 1;
    stroke-width: 4;
    filter: url(#logistics-route-glow);
}

.arses-logistics-viz[data-active-route="bicycle"] .arses-logistics-vehicle--bicycle,
.arses-logistics-viz[data-active-route="ev"] .arses-logistics-vehicle--ev,
.arses-logistics-viz[data-active-route="car"] .arses-logistics-vehicle--car {
    opacity: 1;
}

.arses-logistics-viz[data-active-route="bicycle"] .arses-logistics-route--ev .arses-logistics-route__trigger,
.arses-logistics-viz[data-active-route="bicycle"] .arses-logistics-route--car .arses-logistics-route__trigger,
.arses-logistics-viz[data-active-route="ev"] .arses-logistics-route--bicycle .arses-logistics-route__trigger,
.arses-logistics-viz[data-active-route="ev"] .arses-logistics-route--car .arses-logistics-route__trigger,
.arses-logistics-viz[data-active-route="car"] .arses-logistics-route--bicycle .arses-logistics-route__trigger,
.arses-logistics-viz[data-active-route="car"] .arses-logistics-route--ev .arses-logistics-route__trigger {
    opacity: 0.55;
}

.arses-logistics-viz[data-active-route="bicycle"] .arses-logistics-route--bicycle .arses-logistics-route__trigger,
.arses-logistics-viz[data-active-route="ev"] .arses-logistics-route--ev .arses-logistics-route__trigger,
.arses-logistics-viz[data-active-route="car"] .arses-logistics-route--car .arses-logistics-route__trigger {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(26, 115, 84, 0.35);
    box-shadow: 0 8px 32px rgba(13, 59, 46, 0.16);
    opacity: 1;
}

.arses-logistics-viz.is-paused .arses-logistics-vehicle--paused {
    opacity: 0.35;
}

.arses-delivery__card--onboarding {
    position: relative;
    border: 1px solid rgba(184, 230, 207, 0.14);
    background: linear-gradient(135deg, #064e3b, #0b3d2e 48%, #052e22);
    background-size: 220% 220%;
    box-shadow:
        0 12px 40px rgba(5, 46, 34, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.arses-delivery__card--onboarding:hover {
    border-color: rgba(184, 230, 207, 0.22);
    box-shadow:
        0 16px 52px rgba(5, 46, 34, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.arses-delivery__hero-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.arses-delivery__hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.38;
    transition: opacity 0.3s ease;
}

.arses-delivery__card--onboarding:hover .arses-delivery__hero-glow {
    opacity: 0.52;
}

.arses-delivery__hero-glow--a {
    top: -90px;
    right: 8%;
    width: 300px;
    height: 300px;
    background: rgba(34, 139, 99, 0.45);
}

.arses-delivery__hero-glow--b {
    bottom: -70px;
    left: 4%;
    width: 220px;
    height: 220px;
    background: rgba(184, 230, 207, 0.18);
}

.arses-delivery__hero-leaf {
    position: absolute;
    opacity: 0.07;
    background: var(--arses-mint);
    transition: opacity 0.3s ease;
}

.arses-delivery__card--onboarding:hover .arses-delivery__hero-leaf {
    opacity: 0.1;
}

.arses-delivery__hero-leaf--a {
    top: 18%;
    right: 6%;
    width: 72px;
    height: 110px;
    border-radius: 0 85% 0 85%;
    transform: rotate(-18deg);
}

.arses-delivery__hero-leaf--b {
    bottom: 12%;
    left: 42%;
    width: 56px;
    height: 88px;
    border-radius: 85% 0 85% 0;
    transform: rotate(24deg);
}

.arses-delivery__hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

.arses-delivery__card--onboarding .arses-delivery__card-inner {
    position: relative;
    z-index: 1;
    padding: 36px 36px 36px 40px;
}

.arses-delivery__card--onboarding .arses-delivery__card-head {
    margin-bottom: 28px;
}

.arses-delivery__card--onboarding .arses-delivery__card-title {
    margin-bottom: 10px;
    font-size: clamp(1.375rem, 2.6vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.arses-delivery__card--onboarding .arses-delivery__card-subtitle {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.arses-delivery__card--onboarding .arses-delivery__benefits {
    margin-bottom: 24px;
    gap: 12px;
}

.arses-delivery__card--onboarding .arses-delivery__benefits li {
    padding-left: 26px;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.arses-delivery__card--onboarding .arses-delivery__benefits li::before {
    top: 0.6em;
    width: 7px;
    height: 7px;
    background: var(--arses-mint);
    box-shadow: 0 0 10px rgba(184, 230, 207, 0.45);
}

.arses-delivery__card--onboarding .arses-delivery__proof {
    margin-bottom: 28px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.arses-delivery__card--onboarding .arses-delivery__avatar {
    background: linear-gradient(135deg, rgba(184, 230, 207, 0.85), rgba(34, 139, 99, 0.55));
    border-color: rgba(255, 255, 255, 0.28);
}

.arses-delivery__card--onboarding .arses-delivery__proof-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.86);
}

.arses-delivery__cta--hero {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow:
        0 4px 20px rgba(184, 230, 207, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.12);
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.arses-delivery__cta--hero:hover {
    background: #e8f8ef;
    box-shadow:
        0 6px 32px rgba(184, 230, 207, 0.55),
        0 0 24px rgba(184, 230, 207, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.25);
}

.arses-delivery__card--onboarding .arses-delivery__phone-image {
    max-width: 168px;
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(184, 230, 207, 0.18);
}

.arses-delivery__card-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 38%);
    gap: 20px;
    align-items: stretch;
    flex: 1;
    padding: 28px 28px 28px 32px;
}

.arses-delivery__card-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.arses-delivery__card-head {
    margin-bottom: 20px;
}

.arses-delivery__card-title {
    margin: 0 0 8px;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--arses-green-900);
}

.arses-delivery__card-subtitle {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--arses-green-800);
}

.arses-delivery__card-desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--arses-muted);
}

.arses-delivery__benefits {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.arses-delivery__benefits li {
    position: relative;
    padding-left: 22px;
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--arses-text);
}

.arses-delivery__benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--arses-green-600);
    box-shadow: 0 0 0 3px rgba(34, 139, 99, 0.15);
}

.arses-delivery__proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--arses-border);
    border-radius: 12px;
}

.arses-delivery__avatars {
    display: flex;
    flex-shrink: 0;
}

.arses-delivery__avatar {
    width: 28px;
    height: 28px;
    margin-left: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--arses-mint), rgba(184, 230, 207, 0.5));
    border: 2px solid #ffffff;
    box-shadow: var(--arses-shadow-sm);
}

.arses-delivery__avatar:first-child {
    margin-left: 0;
}

.arses-delivery__proof-text {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--arses-green-800);
    line-height: 1.35;
}

.arses-delivery__cta {
    margin-top: auto;
    align-self: flex-start;
}

.arses-delivery__card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    overflow: hidden;
}

.arses-delivery__phone-image {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow:
        0 12px 32px rgba(13, 59, 46, 0.16),
        0 0 0 1px rgba(26, 115, 84, 0.08);
}

/* Footer */
.arses-footer {
    padding: 64px 0 0;
    background: var(--arses-green-900);
    color: rgba(255, 255, 255, 0.85);
}

.arses-footer a {
    color: rgba(255, 255, 255, 0.75);
}

.arses-footer a:hover {
    color: var(--arses-mint);
}

.arses-brand--footer .arses-brand__name,
.arses-brand--footer .arses-brand__tagline {
    color: #fff;
}

.arses-brand--footer .arses-brand__tagline {
    opacity: 0.7;
}

.arses-footer__description {
    margin: 16px 0 0;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.75;
    max-width: 260px;
}

.arses-footer__column-title {
    margin: 0 0 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
}

.arses-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.arses-footer__links li {
    margin-bottom: 10px;
}

.arses-footer__links a {
    font-size: 0.85rem;
}

.arses-footer__newsletter-desc {
    margin: 0 0 16px;
    font-size: 0.85rem;
    opacity: 0.75;
}

.arses-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.arses-newsletter-form input {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
}

.arses-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Card hover utility */
.arses-card-hover {
    transition: transform var(--arses-transition), box-shadow var(--arses-transition);
}

.arses-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--arses-shadow-md);
}
