@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
    --bg: #07111f;
    --bg-soft: #0d1d32;
    --panel: rgba(10, 28, 51, 0.76);
    --panel-strong: rgba(13, 26, 47, 0.92);
    --line: rgba(131, 199, 255, 0.14);
    --line-strong: rgba(131, 199, 255, 0.24);
    --text: #eff9ff;
    --muted: #9ab6d2;
    --primary: #2fd9ff;
    --secondary: #1d76ff;
    --accent: #71f56d;
    --danger: #ff6b86;
    --warning: #ffcb5b;
    --success: #70ed9f;
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shadow-lg: 0 28px 60px rgba(1, 8, 18, 0.48);
    --shadow-md: 0 18px 40px rgba(1, 8, 18, 0.32);
    --shell: min(1200px, calc(100vw - 2rem));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(47, 217, 255, 0.22), transparent 24rem),
        radial-gradient(circle at top right, rgba(113, 245, 109, 0.14), transparent 22rem),
        radial-gradient(circle at 20% 80%, rgba(29, 118, 255, 0.2), transparent 28rem),
        linear-gradient(180deg, #061120 0%, #0b1d34 45%, #081321 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.page-main {
    padding-bottom: 5rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(6, 16, 31, 0.88);
    border-bottom: 1px solid rgba(120, 218, 255, 0.14);
    box-shadow: 0 18px 40px rgba(2, 8, 18, 0.28);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-mark img {
    width: 58px;
    height: 58px;
    filter: drop-shadow(0 10px 22px rgba(21, 168, 255, 0.35));
}

.brand-mark--full {
    max-width: min(320px, 48vw);
}

.brand-mark--full img {
    width: clamp(200px, 24vw, 292px);
    height: auto;
}

.brand-mark strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    line-height: 1.1;
}

.brand-mark small {
    color: var(--muted);
    font-size: 0.78rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.primary-nav a,
.nav-inline-form button {
    color: #ddecff;
    font-size: 0.96rem;
}

.nav-inline-form {
    margin: 0;
}

.cart-count {
    display: inline-flex;
    min-width: 1.5rem;
    min-height: 1.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #03203a;
    font-size: 0.8rem;
    font-weight: 800;
    margin-left: 0.4rem;
}

.site-search {
    padding-bottom: 1rem;
}

.search-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding: 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.site-search .search-bar {
    max-width: 760px;
    margin-inline: auto;
    padding: 0.4rem;
    background: rgba(246, 252, 255, 0.98);
    border-color: rgba(66, 160, 190, 0.22);
    box-shadow: 0 22px 42px rgba(4, 17, 33, 0.16);
}

.search-bar input {
    border: 0;
    background: transparent;
    color: var(--text);
    padding: 0.55rem 1rem;
    outline: none;
}

.search-bar input::placeholder {
    color: rgba(233, 245, 255, 0.55);
}

.site-search .search-bar input {
    color: #163252;
}

.site-search .search-bar input::placeholder {
    color: rgba(22, 50, 82, 0.48);
}

.search-bar button,
.button {
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.3rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #04203c;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 26px rgba(45, 182, 247, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover,
.search-bar button:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 34px rgba(45, 182, 247, 0.22);
}

.site-search .search-bar button {
    background: #10254a;
    color: #f5fcff;
    box-shadow: none;
}

.button--ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--line-strong);
    box-shadow: none;
}

.button--small {
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
}

.hero {
    padding: 4rem 0 2rem;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 1.6rem;
    align-items: center;
}

.hero__copy,
.hero__panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(13, 33, 59, 0.9), rgba(8, 24, 43, 0.92));
    border: 1px solid rgba(103, 194, 255, 0.14);
    box-shadow: var(--shadow-lg);
}

.hero__copy {
    padding: 3rem;
}

.hero__copy::before,
.hero__panel::before,
.store-card::before,
.summary-card::before,
.form-card::before,
.table-card::before,
.product-card::before,
.store-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(47, 217, 255, 0.18), transparent 16rem),
        radial-gradient(circle at 80% 10%, rgba(113, 245, 109, 0.14), transparent 12rem);
    pointer-events: none;
}

.hero__copy h1,
.section-heading h1,
.section-heading h2,
.store-hero h1,
.product-detail__content h1,
.dashboard-header h1,
.auth-card h1 {
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin: 0.2rem 0 0.85rem;
}

.hero__copy h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero__copy p,
.lead,
.store-hero p,
.auth-card p {
    color: var(--muted);
    line-height: 1.8;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #d8efff;
}

.hero__actions,
.store-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.8rem 0;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero__trust span,
.pill,
.filter-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ddf4ff;
    font-size: 0.85rem;
}

.hero__panel {
    display: grid;
    gap: 1rem;
    padding: 2rem;
}

.hero-brandmark {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-brandmark img {
    width: min(100%, 420px);
    filter: drop-shadow(0 20px 44px rgba(19, 133, 255, 0.26));
}

.floating-card {
    position: relative;
    padding: 1.45rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-card strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.floating-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.floating-card--primary {
    background: linear-gradient(160deg, rgba(29, 118, 255, 0.24), rgba(47, 217, 255, 0.12));
}

.floating-card--accent {
    background: linear-gradient(160deg, rgba(113, 245, 109, 0.18), rgba(29, 118, 255, 0.12));
}

.section {
    padding: 1rem 0 2rem;
}

.section-heading,
.dashboard-header,
.account-hero {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 1.4rem;
}

.section-heading h1,
.section-heading h2,
.dashboard-header h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p {
    color: var(--muted);
}

.store-grid,
.payment-grid,
.product-grid,
.stats-grid {
    display: grid;
    gap: 1.1rem;
}

.store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-card,
.product-card,
.payment-card,
.summary-card,
.form-card,
.table-card,
.stat-card,
.order-card,
.account-hero__card,
.empty-state,
.auth-card,
.store-hero,
.checkout-layout > * {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow-md);
}

.store-card {
    padding: 1.5rem;
    transition: transform 180ms ease, border-color 180ms ease;
}

.store-card:hover,
.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(130, 230, 255, 0.28);
}

.store-card__badge,
.store-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-card__badge {
    color: var(--store-accent, var(--accent));
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.store-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.28rem;
    font-family: "Space Grotesk", sans-serif;
}

.store-card p,
.payment-card p,
.empty-state p,
.table-card__header p,
.summary-card small {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.store-card__footer {
    margin-top: 1.2rem;
    color: #dff5ff;
    font-size: 0.9rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(252, 255, 253, 0.98), rgba(229, 250, 242, 0.96));
    border-color: rgba(70, 172, 174, 0.22);
    color: #112949;
}

.product-card::before {
    background:
        radial-gradient(circle at top left, rgba(113, 245, 109, 0.18), transparent 14rem),
        radial-gradient(circle at 80% 10%, rgba(47, 217, 255, 0.16), transparent 10rem);
}

.product-card__visual-link {
    display: block;
    padding: 1.2rem;
}

.product-card__body {
    padding: 0 1.2rem 1.2rem;
}

.product-card__meta,
.payment-card__top,
.product-card__price-row,
.rating-row,
.summary-line,
.summary-card dl div,
.order-card,
.cart-row,
.dashboard-grid,
.store-hero {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.product-card__meta {
    align-items: center;
    color: #4f6f8f;
    font-size: 0.82rem;
}

.product-card h3 {
    margin: 0.85rem 0 0.55rem;
    font-size: 1.15rem;
}

.product-card p {
    margin: 0 0 1rem;
    color: #536f89;
    line-height: 1.65;
}

.product-card__price-row strong,
.product-detail__price strong,
.summary-card__total dd,
.stat-card strong,
.order-card strong {
    display: block;
    font-size: 1.2rem;
}

.product-card__price-row span:not(.rating),
.product-detail__price span {
    color: rgba(226, 240, 255, 0.45);
    text-decoration: line-through;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #123050;
    font-weight: 700;
    background: rgba(18, 48, 80, 0.08);
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
}

.product-card__actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.product-card .button--ghost {
    background: rgba(16, 37, 74, 0.08);
    color: #10254a;
    border-color: rgba(16, 37, 74, 0.12);
}

.product-visual {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--visual-from), var(--visual-to));
    min-height: 240px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-visual--mini {
    min-height: 96px;
}

.product-visual--feature {
    min-height: 460px;
    padding: 1.4rem;
}

.product-visual__eyebrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(7, 18, 33, 0.22);
    backdrop-filter: blur(12px);
    color: #f1fbff;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-visual__orb {
    position: absolute;
    inset: auto auto -3rem -2rem;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: radial-gradient(circle, var(--visual-ambient), transparent 70%);
    opacity: 0.8;
}

.product-visual__art {
    position: absolute;
    inset: 2.8rem 0 0;
    display: grid;
    place-items: center;
    padding: 0.25rem 0.75rem 0.75rem;
    z-index: 2;
}

.product-visual__art svg {
    width: 100%;
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(5, 17, 34, 0.14));
}

.hero--storyboard {
    padding: 2rem 0 2.2rem;
}

.storyboard {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 40px;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.42), transparent 16rem),
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.26), transparent 14rem),
        linear-gradient(135deg, #356aa6 0%, #4fd6d6 26%, #9cf4d2 58%, #effff5 100%);
    border: 1px solid rgba(154, 244, 230, 0.55);
    box-shadow: 0 34px 72px rgba(2, 13, 28, 0.28);
    color: #102847;
}

.storyboard > * {
    position: relative;
    z-index: 1;
}

.storyboard__stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 18px);
    mix-blend-mode: soft-light;
    opacity: 0.42;
    pointer-events: none;
}

.storyboard__cloud,
.storyboard__leaf {
    position: absolute;
    pointer-events: none;
}

.storyboard__cloud {
    top: 7rem;
    width: 8.5rem;
    height: 4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 12px 18px rgba(15, 37, 73, 0.12));
}

.storyboard__cloud::before,
.storyboard__cloud::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: inherit;
}

.storyboard__cloud::before {
    width: 3.4rem;
    height: 3.4rem;
    left: 0.85rem;
    top: -1.1rem;
}

.storyboard__cloud::after {
    width: 4rem;
    height: 4rem;
    right: 0.7rem;
    top: -1.3rem;
}

.storyboard__cloud--left {
    left: 2.1rem;
}

.storyboard__cloud--right {
    right: 2.2rem;
}

.storyboard__leaf {
    bottom: -2rem;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    opacity: 0.72;
    filter: blur(4px);
    background: radial-gradient(circle at 30% 30%, rgba(136, 255, 188, 0.82), rgba(38, 157, 118, 0.18) 62%, transparent 72%);
}

.storyboard__leaf--left {
    left: -4rem;
}

.storyboard__leaf--right {
    right: -4rem;
    transform: scale(1.08);
}

.storyboard__herohead {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.storyboard__intro {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    padding: 0 4rem;
    text-align: center;
}

.storyboard__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.76rem;
    font-weight: 800;
    color: #16395f;
}

.storyboard__intro h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(4rem, 9vw, 7rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    color: #ffffff;
    text-shadow: 0 14px 24px rgba(8, 20, 40, 0.18);
}

.storyboard__intro p {
    max-width: 56rem;
    margin: 0;
    color: #244e6d;
    line-height: 1.78;
    font-weight: 600;
}

.storyboard__intro .hero__actions {
    justify-content: center;
    margin: 1rem 0 0;
}

.storyboard__chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.storyboard__chips span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    background: rgba(12, 34, 62, 0.84);
    color: #f2fbff;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 14px 24px rgba(7, 17, 31, 0.12);
}

.storyboard__grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 250px;
    gap: 1rem;
    align-items: stretch;
}

.storyboard-panel,
.storyboard-search,
.storyboard-flashbar,
.storyboard-feature,
.storyboard-shelf-card,
.product-board__grid,
.product-board__tile,
.product-board__panel,
.product-board__feature-card {
    box-shadow: 0 22px 36px rgba(3, 14, 29, 0.12);
}

.storyboard-panel {
    display: grid;
    align-content: start;
    gap: 0.9rem;
    padding: 1.3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(10, 31, 58, 0.94), rgba(16, 48, 76, 0.9));
    color: #f3fbff;
}

.storyboard-panel__label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    color: #a8f4ff;
    font-weight: 800;
}

.storyboard-panel p {
    margin: 0;
    color: rgba(237, 247, 255, 0.84);
    line-height: 1.72;
}

.storyboard-panel .button {
    justify-self: start;
}

.storyboard-mini-card,
.storyboard-flashbar__item,
.product-board__tile--mini {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.storyboard-mini-card:hover,
.storyboard-flashbar__item:hover,
.product-board__tile--mini:hover {
    transform: translateY(-2px);
}

.storyboard-mini-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.8rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.storyboard-mini-card__icon,
.storyboard-flashbar__item-icon,
.storyboard-sticker__icon,
.product-board__feature-icon,
.product-board__mini-icon {
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
}

.storyboard-mini-card__icon {
    width: 54px;
    height: 54px;
}

.storyboard-mini-card__icon svg,
.storyboard-flashbar__item-icon svg,
.storyboard-sticker__icon svg,
.product-board__feature-icon svg,
.product-board__mini-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    stroke: currentColor;
}

.storyboard-mini-card__copy {
    display: grid;
    gap: 0.2rem;
}

.storyboard-mini-card__copy strong,
.storyboard-flashbar__item strong,
.storyboard-sticker strong,
.storyboard-shelf-card__body strong,
.product-board__tile strong,
.product-board__panel strong {
    font-family: "Space Grotesk", sans-serif;
}

.storyboard-mini-card__copy span,
.storyboard-sticker span,
.storyboard-stats span,
.storyboard-flashbar__title span,
.storyboard-flashbar__item span,
.storyboard-shelf-card__label,
.product-board__meta,
.product-board__stats span,
.product-board__tile span,
.product-board__panel p {
    color: rgba(226, 241, 255, 0.82);
}

.storyboard-utility {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 0.8rem;
    align-items: center;
    padding: 0.9rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(113, 245, 109, 0.24), rgba(47, 217, 255, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.storyboard-utility__badge {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    color: #103054;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.storyboard-utility strong,
.storyboard-utility span {
    display: block;
}

.storyboard-utility span {
    color: rgba(232, 245, 255, 0.82);
    line-height: 1.55;
}

.storyboard-main {
    display: grid;
    gap: 1rem;
}

.storyboard-search {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(28, 63, 95, 0.08);
    color: #113052;
}

.storyboard-search__brand {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.storyboard-search__hint {
    color: rgba(17, 48, 82, 0.54);
}

.storyboard-search__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #10254a;
    color: #ffffff;
    font-size: 1.1rem;
}

.storyboard-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 300px;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 32px;
    background: linear-gradient(160deg, rgba(249, 255, 252, 0.98), rgba(220, 250, 242, 0.88));
    border: 1px solid rgba(49, 125, 143, 0.12);
    color: #102847;
}

.storyboard-feature .eyebrow {
    background: rgba(16, 37, 74, 0.08);
    border-color: rgba(16, 37, 74, 0.08);
    color: #1e5479;
}

.storyboard-feature__copy h2 {
    margin: 0.5rem 0 0.75rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    line-height: 1;
    color: #10254a;
}

.storyboard-feature__copy p {
    margin: 0;
    color: #496a85;
    line-height: 1.76;
}

.storyboard-rating {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.storyboard-rating span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    background: rgba(16, 37, 74, 0.08);
    color: #214f72;
    font-size: 0.88rem;
    font-weight: 700;
}

.storyboard-feature__cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
}

.storyboard-feature__cta span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #10254a;
}

.storyboard-feature__visual .product-visual--feature,
.product-board__tile--visual .product-visual--feature {
    min-height: 330px;
    height: 100%;
    background: linear-gradient(140deg, rgba(24, 86, 171, 0.96), rgba(67, 212, 206, 0.86));
}

.storyboard-feature__visual .product-visual__art,
.product-board__tile--visual .product-visual__art {
    inset: 1.6rem 0 0;
}

.storyboard-feature__visual .product-visual__art svg,
.product-board__tile--visual .product-visual__art svg {
    max-width: 280px;
}

.storyboard-flashbar {
    display: grid;
    grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-radius: 30px;
    background: rgba(12, 34, 62, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #f3fbff;
}

.storyboard-flashbar__title {
    display: grid;
    align-content: center;
    gap: 0.25rem;
}

.storyboard-flashbar__item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 0.7rem;
    align-items: center;
    padding: 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.storyboard-flashbar__item-icon {
    width: 54px;
    height: 54px;
}

.storyboard-panel--right .button {
    width: 100%;
}

.storyboard-sticker {
    display: grid;
    gap: 0.55rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.storyboard-sticker__icon {
    width: 64px;
    height: 64px;
    color: #f7ffff;
}

.storyboard-sticker--sale {
    background: linear-gradient(135deg, rgba(255, 116, 102, 0.18), rgba(113, 245, 109, 0.14));
}

.storyboard-stats,
.product-board__stats {
    display: grid;
    gap: 0.75rem;
}

.storyboard-stats div,
.product-board__stats div {
    display: grid;
    gap: 0.15rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.storyboard-stats strong,
.product-board__stats strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
}

.storyboard-shelf {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.storyboard-shelf-card {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 252, 246, 0.94));
    border: 1px solid rgba(64, 173, 176, 0.18);
    color: #10254a;
}

.storyboard-shelf-card__visual .product-visual--card {
    min-height: 170px;
}

.storyboard-shelf-card__body {
    display: grid;
    gap: 0.45rem;
}

.storyboard-shelf-card__label {
    color: #4f6d88;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.storyboard-shelf-card__body h3 {
    margin: 0;
    font-size: 1rem;
    color: #0f2449;
}

.storyboard-shelf-card__body strong {
    color: #103054;
}

.storyboard-shelf-card .button--small,
.product-card .button--small {
    justify-self: start;
}

.storyboard .button--ghost,
.product-board__grid .button--ghost {
    background: rgba(16, 37, 74, 0.08);
    color: #10254a;
    border-color: rgba(16, 37, 74, 0.12);
}

.product-board {
    padding-top: 1.8rem;
}

.product-board__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.product-board__header h1 {
    margin: 0.35rem 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.98;
}

.product-board__meta {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    align-items: center;
}

.product-board__grid {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) 230px;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 36px;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.22), transparent 16rem),
        linear-gradient(135deg, #91f2d8 0%, #67d0f2 26%, #b8ffd7 100%);
    border: 1px solid rgba(160, 245, 233, 0.48);
}

.product-board__grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 18px);
    mix-blend-mode: soft-light;
    opacity: 0.35;
    pointer-events: none;
}

.product-board__grid > * {
    position: relative;
    z-index: 1;
}

.product-board__rail,
.product-board__main {
    display: grid;
    gap: 1rem;
}

.product-board__tile,
.product-board__panel,
.product-board__feature-card {
    border-radius: 28px;
    padding: 1.1rem;
    border: 1px solid rgba(58, 152, 164, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 248, 243, 0.94));
    color: #112949;
}

.product-board__tile p,
.product-board__tile span,
.product-board__panel p,
.product-board__feature-card span {
    color: #516f88;
}

.product-board__tile--visual {
    padding: 0.8rem;
}

.product-board__panel h2 {
    margin: 0.5rem 0 0.75rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.02;
}

.product-board__panel p {
    margin: 0;
    line-height: 1.8;
}

.product-board__panel--action {
    background: linear-gradient(180deg, rgba(11, 33, 58, 0.96), rgba(15, 49, 78, 0.94));
    border-color: rgba(255, 255, 255, 0.12);
    color: #f2fbff;
}

.product-board__panel--action .storyboard-rating span {
    background: rgba(255, 255, 255, 0.08);
    color: #f2fbff;
}

.product-board__panel--action .product-detail__price strong {
    font-size: 2rem;
}

.product-board__panel--action .product-detail__price span {
    color: rgba(233, 244, 255, 0.56);
}

.product-board__panel--action label span {
    color: #d7ebff;
}

.product-board__panel--action input {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.product-board__panel--action .button--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

.product-board__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.85rem;
}

.product-board__feature-card {
    display: grid;
    gap: 0.7rem;
}

.product-board__feature-icon,
.product-board__mini-icon {
    width: 56px;
    height: 56px;
    color: #103054;
}

.product-board__tile--mini {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0.75rem;
    align-items: center;
}

.product-board__tile--mini strong {
    display: block;
}

.product-board__tile .storyboard-rating {
    margin-top: 0.8rem;
}

.catalog-stage-shell {
    padding: 1.6rem 0 2rem;
}

.catalog-stage {
    position: relative;
    overflow: hidden;
    padding: 1.35rem;
    border-radius: 42px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 18rem),
        linear-gradient(140deg, var(--catalog-primary, #2d79ab) 0%, #4eb2d5 32%, #6bdcc8 64%, #b7ffd8 100%);
    border: 1px solid rgba(193, 255, 235, 0.6);
    box-shadow: 0 34px 72px rgba(2, 13, 28, 0.24);
}

.catalog-stage__leaf {
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at 40% 40%, rgba(124, 255, 170, 0.95), rgba(31, 128, 96, 0.18) 58%, transparent 68%);
    filter: blur(4px);
    opacity: 0.86;
    pointer-events: none;
}

.catalog-stage__leaf--tl {
    left: -4rem;
    top: 3rem;
}

.catalog-stage__leaf--br {
    right: -4rem;
    bottom: -3rem;
}

.catalog-stage__topbar,
.catalog-stage__mini-nav,
.catalog-stage__actions,
.catalog-main__header,
.catalog-main__chips,
.catalog-card__badges,
.catalog-card__footer {
    display: flex;
    align-items: center;
}

.catalog-stage__topbar {
    position: relative;
    z-index: 1;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.5rem 0.3rem 0;
}

.catalog-stage__mini-nav,
.catalog-stage__actions,
.catalog-main__chips {
    flex-wrap: wrap;
    gap: 0.75rem;
}

.catalog-stage__mini-nav span,
.catalog-stage__actions a,
.catalog-main__chips span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
    background: rgba(11, 34, 63, 0.12);
    color: #effcff;
    font-size: 0.88rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.catalog-stage__actions a {
    background: rgba(11, 34, 63, 0.18);
}

.catalog-stage__search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    width: min(640px, 100%);
    padding: 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 28px rgba(4, 17, 33, 0.12);
}

.catalog-stage__search input {
    border: 0;
    background: transparent;
    color: #153252;
    padding: 0.8rem 1rem;
}

.catalog-stage__search button {
    border: 0;
    border-radius: 999px;
    padding: 0.8rem 1.15rem;
    background: linear-gradient(135deg, #67f56d, #11c946);
    color: #08311c;
    font-weight: 800;
}

.catalog-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 286px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.catalog-sidebar,
.catalog-main {
    border-radius: 34px;
    box-shadow: 0 22px 42px rgba(2, 13, 28, 0.14);
}

.catalog-sidebar {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    background: linear-gradient(180deg, rgba(14, 67, 109, 0.72), rgba(19, 91, 141, 0.62));
    border: 1px solid rgba(216, 255, 246, 0.2);
    color: #ffffff;
}

.catalog-sidebar__eyebrow,
.catalog-main__label {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 800;
    color: #dffeff;
}

.catalog-sidebar h1,
.catalog-main__header h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.catalog-sidebar h1 {
    font-size: clamp(2.5rem, 4.6vw, 4rem);
}

.catalog-sidebar p,
.catalog-main__header p {
    margin: 0;
    color: rgba(238, 252, 255, 0.86);
    line-height: 1.72;
}

.catalog-sidebar__filters {
    display: grid;
    gap: 0.7rem;
}

.catalog-sidebar__filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0.95rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    color: #143353;
    border: 1px solid rgba(18, 54, 82, 0.08);
}

.catalog-sidebar__filter.is-active {
    background: linear-gradient(135deg, #66f56e, #17d34f);
    color: #073218;
}

.catalog-sidebar__filter.is-static {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.catalog-sidebar__filter strong {
    font-family: "Space Grotesk", sans-serif;
}

.catalog-sidebar__rail {
    display: grid;
    gap: 0.8rem;
}

.catalog-sidebar__rail-card {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
}

.catalog-sidebar__rail-card .product-visual--mini {
    min-height: 120px;
    padding: 0.8rem;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(219, 247, 239, 0.92));
}

.catalog-sidebar__rail-card .product-visual__eyebrow {
    display: none;
}

.catalog-sidebar__rail-card .product-visual__art {
    inset: 0;
    padding: 0.5rem;
}

.catalog-sidebar__rail-card .product-visual__art svg {
    max-width: 180px;
}

.catalog-main {
    padding: 1rem;
    background: rgba(237, 253, 249, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.catalog-main__header {
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.35rem 0.2rem 0.6rem;
}

.catalog-main__header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: #f9ffff;
    text-shadow: 0 10px 20px rgba(8, 20, 40, 0.16);
}

.catalog-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
}

.catalog-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 253, 249, 0.95));
    border: 1px solid rgba(71, 170, 173, 0.2);
    box-shadow: 0 18px 30px rgba(5, 17, 34, 0.12);
}

.catalog-card::before {
    background:
        radial-gradient(circle at top left, rgba(100, 245, 109, 0.18), transparent 10rem),
        radial-gradient(circle at top right, rgba(47, 217, 255, 0.16), transparent 9rem);
}

.catalog-card__badges {
    position: absolute;
    inset: 0.9rem 0.9rem auto;
    justify-content: space-between;
    pointer-events: none;
    z-index: 4;
}

.catalog-card__badge,
.catalog-card__quick-add button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 12px 20px rgba(5, 17, 34, 0.12);
}

.catalog-card__badge {
    background: #ff5f76;
    color: #ffffff;
}

.catalog-card__quick-add {
    margin: 0;
    pointer-events: auto;
}

.catalog-card__quick-add button {
    border: 0;
    background: #19d74c;
    color: #083318;
}

.catalog-card .product-card__visual-link {
    padding: 0.8rem 0.8rem 0;
}

.catalog-card .product-visual--card {
    min-height: 220px;
    border-radius: 24px;
    border: 1px solid rgba(13, 44, 71, 0.08);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(225, 250, 242, 0.92));
}

.catalog-card .product-visual__eyebrow {
    background: rgba(15, 36, 72, 0.08);
    color: #244e70;
}

.catalog-card .product-visual__orb {
    inset: auto auto -2rem -1rem;
    width: 10rem;
    height: 10rem;
    opacity: 0.7;
}

.catalog-card .product-visual__art {
    inset: 2.2rem 0 0;
}

.catalog-card .product-visual__art svg {
    max-width: 220px;
}

.catalog-card .product-card__body {
    padding: 0.8rem 0.9rem 1rem;
}

.catalog-card .product-card__meta {
    color: #4f728f;
}

.catalog-card .product-card__meta .pill {
    background: rgba(19, 57, 86, 0.08);
    border-color: rgba(19, 57, 86, 0.08);
    color: #1d4f75;
}

.catalog-card .product-card__body h3 {
    min-height: 2.6em;
    margin: 0.65rem 0 0.45rem;
    font-size: 1.1rem;
    line-height: 1.2;
    color: #0f2448;
}

.catalog-card .product-card__body p {
    min-height: 3.25em;
    font-size: 0.92rem;
    color: #5a758f;
}

.catalog-card .rating {
    background: rgba(24, 203, 74, 0.14);
    color: #0e8d3c;
}

.product-card__stars {
    display: flex;
    gap: 0.18rem;
    margin-top: 0.85rem;
}

.product-card__stars span {
    color: rgba(32, 83, 118, 0.22);
    font-size: 1rem;
}

.product-card__stars span.is-on {
    color: #17c548;
}

.catalog-card__footer {
    justify-content: space-between;
    margin-top: 0.85rem;
    color: #58748e;
    font-size: 0.84rem;
}

.catalog-card__link {
    font-weight: 800;
    color: #0f2448;
}

.empty-state--catalog {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.78);
    color: #123252;
}

.payment-card {
    padding: 1.3rem;
}

.payment-card small {
    display: block;
    margin-top: 0.8rem;
    color: #d9ecff;
}

.payment-card--selectable {
    cursor: pointer;
}

.payment-card--selectable input {
    position: absolute;
    opacity: 0;
}

.payment-card--selectable:has(input:checked) {
    border-color: rgba(113, 245, 109, 0.5);
    box-shadow: 0 0 0 1px rgba(113, 245, 109, 0.32), var(--shadow-md);
}

.flash-stack {
    padding-top: 1.25rem;
}

.flash {
    margin-bottom: 0.8rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.flash--success {
    border-color: rgba(112, 237, 159, 0.3);
    color: #cbffe0;
}

.flash--warning {
    border-color: rgba(255, 203, 91, 0.28);
    color: #fff0b9;
}

.flash--error {
    border-color: rgba(255, 107, 134, 0.28);
    color: #ffd7e0;
}

.store-hero {
    margin-top: 1.5rem;
    padding: 2.2rem;
    background:
        linear-gradient(140deg, var(--store-primary, var(--secondary)), rgba(7, 17, 31, 0.82)),
        rgba(7, 17, 31, 0.9);
}

.store-hero__card {
    align-self: stretch;
    padding: 1.25rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.filter-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.3rem;
}

.filter-chip.is-active {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #03203a;
    border-color: transparent;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
    gap: 1.5rem;
    align-items: start;
    padding-top: 2rem;
}

.product-detail__content,
.product-detail__visual {
    position: relative;
    padding: 1.35rem;
    border-radius: var(--radius-lg);
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.product-detail__meta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.88rem;
}

.product-detail__price {
    display: flex;
    align-items: end;
    gap: 1rem;
    margin: 1.4rem 0 0.8rem;
}

.detail-buy-box {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: end;
    margin-top: 1.5rem;
}

.detail-buy-box label {
    min-width: 110px;
}

.feature-list {
    display: grid;
    gap: 0.7rem;
    margin: 1.7rem 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 1.25rem;
    align-items: start;
}

.cart-table,
.summary-card,
.form-card {
    padding: 1.35rem;
}

.cart-row {
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-row:first-child {
    padding-top: 0;
}

.cart-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.cart-row__visual {
    width: 110px;
}

.cart-row__content {
    flex: 1;
    display: grid;
    gap: 0.2rem;
}

.cart-row__content span,
.cart-row__content small {
    color: var(--muted);
}

.cart-row__qty {
    display: grid;
    gap: 0.35rem;
    min-width: 92px;
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.summary-card h2,
.table-card h2 {
    margin-top: 0;
    font-size: 1.2rem;
}

.summary-card dl {
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0 1.4rem;
}

.summary-card__total {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-card__items {
    display: grid;
    gap: 0.65rem;
}

.form-card {
    background: var(--panel-strong);
}

.form-card--flat {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-grid__full {
    grid-column: 1 / -1;
}

label,
fieldset {
    display: grid;
    gap: 0.45rem;
}

label span,
legend {
    font-size: 0.9rem;
    color: #d8edff;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 0.95rem 1rem;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(47, 217, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(47, 217, 255, 0.09);
}

.payment-selector {
    margin: 1.5rem 0;
    border: 0;
    padding: 0;
}

.auth-shell {
    padding-top: 2.25rem;
}

.auth-card {
    max-width: 620px;
    margin-inline: auto;
    padding: 2rem;
}

.account-hero__card {
    padding: 1.15rem 1.25rem;
    display: grid;
    gap: 0.3rem;
    min-width: 280px;
}

.order-list {
    display: grid;
    gap: 0.9rem;
}

.order-card {
    align-items: center;
    padding: 1.15rem 1.2rem;
}

.table-card {
    padding: 1.2rem;
}

.dashboard-grid {
    align-items: start;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.2rem;
}

.stat-card {
    padding: 1.2rem;
}

.stat-card span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--muted);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 0.9rem 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.data-table th {
    color: #dff4ff;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.data-table tbody tr:last-child td {
    border-bottom: 0;
}

.empty-state {
    text-align: center;
    padding: 2rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    background: rgba(255, 255, 255, 0.08);
    color: #d7ebff;
    font-size: 0.78rem;
    font-weight: 800;
}

.status-pill--success {
    background: rgba(112, 237, 159, 0.12);
    color: #b7ffd2;
}

.status-pill--warning {
    background: rgba(255, 203, 91, 0.12);
    color: #ffe7a2;
}

.status-pill--info {
    background: rgba(47, 217, 255, 0.12);
    color: #bdf4ff;
}

.checkbox-line {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.checkbox-line input {
    width: auto;
}

.site-footer {
    margin-top: 3rem;
    padding: 2.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
    margin-bottom: 0.7rem;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
    line-height: 1.8;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.4rem;
    margin-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(231, 244, 255, 0.66);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.75rem;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #dbedff;
    border-radius: 999px;
}

.nav-toggle span + span {
    margin-top: 0.35rem;
}

@media (max-width: 1080px) {
    .hero__grid,
    .product-detail,
    .checkout-layout,
    .dashboard-grid,
    .site-footer__grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .storyboard__grid,
    .storyboard-feature,
    .product-board__grid,
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .storyboard-flashbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .storyboard-shelf {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .store-grid,
    .payment-grid,
    .product-grid,
    .product-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-block;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(7, 16, 29, 0.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .site-header__inner {
        position: relative;
    }

    .section-heading,
    .dashboard-header,
    .account-hero,
    .store-hero,
    .cart-row {
        flex-direction: column;
        align-items: stretch;
    }

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

    .storyboard {
        padding: 1.6rem;
    }

    .catalog-stage__topbar,
    .catalog-main__header {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-stage__search {
        width: 100%;
    }

    .storyboard__intro {
        justify-items: start;
        padding: 0;
        text-align: left;
    }

    .storyboard__intro .hero__actions,
    .storyboard__chips {
        justify-content: flex-start;
    }

    .storyboard-flashbar {
        grid-template-columns: 1fr;
    }

    .storyboard-shelf {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-board__header {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 640px) {
    .hero__copy,
    .hero__panel,
    .auth-card,
    .form-card,
    .summary-card,
    .store-hero,
    .table-card,
    .product-detail__content,
    .product-detail__visual {
        padding: 1.25rem;
    }

    .hero {
        padding-top: 2.25rem;
    }

    .brand-mark--full img {
        width: clamp(176px, 48vw, 220px);
    }

    .catalog-stage {
        padding: 1rem;
        border-radius: 28px;
    }

    .catalog-stage__mini-nav,
    .catalog-stage__actions,
    .catalog-main__chips {
        gap: 0.45rem;
    }

    .catalog-stage__mini-nav span,
    .catalog-stage__actions a,
    .catalog-main__chips span {
        padding: 0.55rem 0.8rem;
        font-size: 0.82rem;
    }

    .catalog-sidebar,
    .catalog-main,
    .catalog-card {
        border-radius: 24px;
    }

    .catalog-product-grid {
        grid-template-columns: 1fr;
    }

    .storyboard {
        padding: 1.15rem;
        border-radius: 30px;
    }

    .storyboard__cloud {
        display: none;
    }

    .storyboard__intro h1 {
        font-size: clamp(3.2rem, 16vw, 4.5rem);
    }

    .storyboard__grid,
    .storyboard-shelf,
    .product-board__feature-grid {
        grid-template-columns: 1fr;
    }

    .storyboard-feature,
    .storyboard-search,
    .storyboard-flashbar,
    .storyboard-panel,
    .storyboard-shelf-card,
    .product-board__grid,
    .product-board__tile,
    .product-board__panel {
        border-radius: 24px;
    }

    .store-grid,
    .payment-grid,
    .product-grid,
    .product-grid--compact {
        grid-template-columns: 1fr;
    }

    .search-bar {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }
}

/* Amazon-style marketplace refactor */
body.page-shell {
    color: #0f1111;
    background: #eaeded;
}

body.page-shell .page-main {
    padding-bottom: 3rem;
}

.site-header--market {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #131921;
    border-bottom: 0;
    box-shadow: none;
}

.header-market {
    display: grid;
    grid-template-columns: auto auto minmax(320px, 1fr) auto auto;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
    color: #ffffff;
}

.site-header--market .brand-mark--full {
    max-width: none;
}

.site-header--market .brand-mark--full img {
    width: clamp(170px, 18vw, 210px);
    filter: none;
}

.header-market__delivery,
.header-market__tools,
.header-market__search label,
.header-tool,
.header-subnav__inner,
.product-market__breadcrumbs,
.product-market__rating,
.product-market__price,
.product-market__thumbs {
    display: flex;
    align-items: center;
}

.header-market__delivery {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.05rem;
    font-size: 0.8rem;
    color: #d6d6d6;
}

.header-market__delivery strong,
.header-tool strong {
    color: #ffffff;
}

.header-market__search {
    display: grid;
    grid-template-columns: 1fr auto;
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    border: 2px solid transparent;
}

.header-market__search:focus-within {
    border-color: #2fd9ff;
    box-shadow: 0 0 0 3px rgba(47, 217, 255, 0.18);
}

.header-market__search label {
    gap: 0;
    width: 100%;
}

.header-market__search label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    padding: 0.9rem 0.8rem;
    background: #f3f3f3;
    color: #565959;
    border-right: 1px solid #d5d9d9;
    font-size: 0.85rem;
}

.header-market__search input {
    border: 0;
    border-radius: 0;
    padding: 0.9rem 1rem;
    background: #ffffff;
    color: #0f1111;
}

.header-market__search button {
    border: 0;
    border-radius: 0;
    padding: 0 1.25rem;
    background: linear-gradient(135deg, #2fd9ff, #71f56d);
    color: #08253d;
    font-weight: 700;
    box-shadow: none;
}

.header-market__tools {
    justify-content: flex-end;
    gap: 0.8rem;
}

.header-tool {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.05rem;
    color: #ffffff;
    font-size: 0.8rem;
}

.header-tool strong {
    font-size: 0.95rem;
}

.header-tool--cart {
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
}

.site-header--market .cart-count {
    background: transparent;
    color: #f08804;
    min-width: 1rem;
    min-height: auto;
    margin-left: 0;
    font-size: 1rem;
    font-weight: 800;
}

.header-subnav {
    background: #232f3e;
}

.header-subnav__inner {
    gap: 1rem;
    padding: 0.55rem 0;
    color: #ffffff;
}

.header-subnav__inner a,
.header-subnav__inner .nav-inline-form button {
    color: #ffffff;
    font-size: 0.9rem;
}

.header-subnav__inner .nav-inline-form button {
    border: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.catalog-stage-shell {
    padding: 1rem 0 1.4rem;
}

.catalog-stage {
    overflow: visible;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.catalog-stage__leaf,
.storyboard__leaf,
.storyboard__cloud {
    display: none;
}

.catalog-stage__topbar {
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    background: #ffffff;
}

.catalog-stage__mini-nav span,
.catalog-stage__actions a,
.catalog-main__chips span {
    background: #ffffff;
    color: #0f1111;
    border: 1px solid #d5d9d9;
    box-shadow: none;
    backdrop-filter: none;
}

.catalog-stage__search {
    width: min(560px, 100%);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
    border: 1px solid #d5d9d9;
}

.catalog-stage__search input {
    background: #ffffff;
    color: #0f1111;
    border-radius: 8px 0 0 8px;
}

.catalog-stage__search button {
    background: linear-gradient(135deg, #2fd9ff, #71f56d);
    color: #08253d;
}

.catalog-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1rem;
}

.catalog-sidebar,
.catalog-main {
    border-radius: 8px;
    box-shadow: none;
}

.catalog-sidebar {
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
}

.catalog-sidebar__eyebrow,
.catalog-main__label {
    color: #565959;
}

.catalog-sidebar h1,
.catalog-main__header h2,
.section-heading h1,
.section-heading h2,
.product-market__content h1 {
    color: #0f1111;
}

.catalog-sidebar h1 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.catalog-sidebar p {
    color: #565959;
}

.catalog-sidebar__filter {
    background: #ffffff;
    color: #0f1111;
    border: 1px solid #d5d9d9;
}

.catalog-sidebar__filter.is-active {
    background: #f0f2f2;
    color: #0f1111;
}

.catalog-sidebar__filter.is-static {
    background: #f7fafa;
    color: #0f1111;
    border-color: #d5d9d9;
}

.catalog-sidebar__rail-card {
    background: #ffffff;
    border: 1px solid #d5d9d9;
}

.catalog-sidebar__rail-card .product-visual--mini {
    background: #ffffff;
}

.catalog-main {
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #d5d9d9;
}

.catalog-main__header {
    margin-bottom: 1rem;
    padding: 0 0 0.5rem;
    border-bottom: 1px solid #e7e7e7;
}

.catalog-main__header h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    text-shadow: none;
}

.catalog-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.catalog-card,
.product-card,
.summary-card--market,
.form-card--market,
.cart-table--market,
.product-market__buybox,
.product-market__gallery,
.product-market__content {
    border-radius: 8px;
}

.catalog-card {
    border: 1px solid #d5d9d9;
    box-shadow: none;
}

.catalog-card::before,
.product-card::before {
    display: none;
}

.catalog-card .product-visual--card,
.catalog-sidebar__rail-card .product-visual--mini,
.product-market__gallery .product-visual--feature {
    background: #ffffff;
}

.catalog-card .product-card__body h3 a,
.catalog-card .product-card__body h3,
.catalog-card__link {
    color: #007185;
}

.catalog-card .product-card__body p,
.catalog-card .product-card__meta,
.catalog-card__footer {
    color: #565959;
}

.catalog-card .rating {
    background: transparent;
    color: #0f1111;
    padding: 0;
}

.product-card__stars span.is-on {
    color: #ffa41c;
}

.button--buy {
    background: linear-gradient(135deg, #2fd9ff, #71f56d);
    color: #08253d;
    box-shadow: none;
}

.button--accent {
    background: #10254a;
    color: #f5fcff;
    box-shadow: none;
}

.button--buy:hover,
.button--accent:hover,
.header-market__search button:hover {
    transform: none;
    box-shadow: none;
}

.section {
    padding: 0.8rem 0 1.6rem;
}

.section-heading {
    align-items: center;
    margin-bottom: 1rem;
}

.section-heading p,
.lead {
    color: #565959;
}

.product-market__breadcrumbs {
    gap: 0.45rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: #565959;
}

.product-market__breadcrumbs a {
    color: #007185;
}

.product-market__layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr) 280px;
    gap: 1.2rem;
    align-items: start;
}

.product-market__gallery,
.product-market__content,
.product-market__buybox {
    padding: 1rem;
    border: 1px solid #d5d9d9;
    background: #ffffff;
}

.product-market__gallery .product-visual--feature {
    min-height: 420px;
    border: 0;
}

.product-market__thumbs {
    gap: 0.65rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.product-market__thumb {
    width: 86px;
    display: block;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.product-market__thumb .product-visual--mini {
    min-height: 78px;
    border: 0;
    background: #ffffff;
}

.product-market__thumb .product-visual__eyebrow {
    display: none;
}

.product-market__thumb .product-visual__art {
    inset: 0;
}

.product-market__content h1 {
    margin: 0 0 0.75rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.04;
}

.product-market__rating {
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    color: #565959;
}

.product-market__rating a {
    color: #007185;
}

.product-market__price {
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: baseline;
    margin-bottom: 1rem;
}

.product-market__price small,
.product-market__price small span {
    color: #565959;
}

.product-market__price small span {
    text-decoration: line-through;
}

.product-market__price strong,
.product-market__buyprice {
    color: #b12704;
    font-size: 1.9rem;
    font-weight: 700;
}

.product-market__lead {
    font-size: 1.05rem;
    color: #0f1111;
}

.product-market__section {
    margin-top: 1.3rem;
}

.product-market__section h2 {
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
}

.product-market__bullets {
    margin: 0;
    padding-left: 1.2rem;
    color: #0f1111;
    line-height: 1.7;
}

.product-market__buybox {
    display: grid;
    gap: 0.9rem;
}

.product-market__buybox p {
    margin: 0;
    color: #565959;
}

.product-market__stock {
    color: #007600 !important;
    font-weight: 700;
}

.detail-buy-box--market {
    display: grid;
    gap: 0.75rem;
}

.detail-buy-box--market label {
    grid-template-columns: 1fr;
}

.detail-buy-box--market input {
    max-width: 92px;
}

.cart-table--market,
.summary-card--market,
.form-card--market {
    background: #ffffff;
    border: 1px solid #d5d9d9;
    box-shadow: none;
}

.checkout-layout--market {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
}

.cart-row--market {
    align-items: center;
}

.cart-row--market .cart-row__content span,
.cart-row--market .cart-row__content small,
.summary-card--market small {
    color: #565959;
}

.cart-row--market .product-visual--mini {
    background: #ffffff;
}

.payment-grid--market {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-card--market {
    background: #ffffff;
    border-color: #d5d9d9;
    box-shadow: none;
}

.payment-card--selectable:has(input:checked) {
    border-color: #007185;
    box-shadow: inset 0 0 0 2px #007185;
}

.site-footer--market {
    background: #232f3e;
    color: #ffffff;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 0;
}

.site-footer--market .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer--market p,
.site-footer--market a,
.site-footer--market .site-footer__bottom {
    color: #dfe6e9;
}

.mfa-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(113, 245, 109, 0.2), transparent 28%),
        linear-gradient(160deg, #0f2348, #12315d 52%, #1d76ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 56px rgba(8, 20, 48, 0.32);
    color: #f5fbff;
}

.mfa-card h1,
.mfa-card h2,
.mfa-card strong,
.mfa-card dt {
    color: #ffffff;
}

.mfa-card p,
.mfa-card dd,
.mfa-card span,
.mfa-card small {
    color: rgba(236, 247, 255, 0.84);
}

.mfa-card--compact {
    max-width: 720px;
}

.mfa-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.mfa-panel {
    padding: 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.meta-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
}

.meta-list div {
    display: grid;
    gap: 0.2rem;
}

.meta-list dt {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.meta-list dd {
    margin: 0;
    font-weight: 600;
}

.mfa-secret {
    display: block;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(10, 24, 49, 0.78);
    color: #71f56d;
    font-size: 1rem;
    line-height: 1.6;
    word-break: break-all;
}

.mfa-help {
    margin-top: 0.85rem;
}

.mfa-uri {
    display: grid;
    gap: 0.45rem;
    margin-top: 1rem;
}

.mfa-uri textarea {
    width: 100%;
    min-height: 112px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 24, 49, 0.78);
    color: #eaf8ff;
    padding: 0.9rem 1rem;
    resize: vertical;
}

.mfa-form {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.96);
}

.mfa-inline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 1.25rem;
}

.mfa-inline-meta span {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.control-shell {
    display: grid;
    gap: 1.4rem;
}

.control-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.65rem 1.75rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at 82% 18%, rgba(113, 245, 109, 0.22), transparent 18%),
        linear-gradient(145deg, #0f2348 0%, #15356a 55%, #1d76ff 100%);
    box-shadow: 0 30px 60px rgba(9, 24, 54, 0.24);
    color: #ffffff;
}

.control-hero p {
    margin: 0.4rem 0 0;
    color: rgba(239, 248, 255, 0.84);
    max-width: 64ch;
}

.control-identity {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.1rem;
    min-width: 250px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.control-identity__lock {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: fit-content;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(113, 245, 109, 0.18);
    color: #cffff1;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.control-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}

.control-nav a {
    display: grid;
    gap: 0.35rem;
    min-height: 98px;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(16, 38, 74, 0.08);
    box-shadow: 0 16px 30px rgba(12, 28, 52, 0.08);
    color: #10264a;
}

.control-nav a:hover,
.control-nav a.is-active {
    transform: translateY(-2px);
    border-color: rgba(29, 118, 255, 0.26);
    box-shadow: 0 20px 34px rgba(12, 28, 52, 0.12);
}

.control-nav a strong {
    font-size: 1rem;
}

.control-nav a span {
    color: #476180;
    font-size: 0.88rem;
    line-height: 1.55;
}

.control-metrics,
.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.9rem;
}

.metric-card,
.mini-stat,
.role-card,
.permission-group,
.mapping-card,
.control-panel,
.alert-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(16, 38, 74, 0.08);
    box-shadow: 0 18px 34px rgba(12, 28, 52, 0.08);
}

.metric-card,
.mini-stat {
    display: grid;
    gap: 0.45rem;
    padding: 1.15rem 1.1rem;
}

.metric-card span,
.mini-stat span {
    color: #5b6f8b;
}

.metric-card strong,
.mini-stat strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.85rem;
    color: #10264a;
}

.mini-stat small {
    color: #6f839d;
}

.control-grid {
    display: grid;
    gap: 1rem;
}

.control-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.control-panel {
    padding: 1.2rem;
}

.control-panel__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.control-panel__header h2 {
    margin: 0;
    font-size: 1.2rem;
}

.control-panel__header span,
.control-panel__header a {
    color: #5f7190;
    font-size: 0.9rem;
}

.ops-table {
    width: 100%;
    border-collapse: collapse;
}

.ops-table th,
.ops-table td {
    padding: 0.8rem 0.6rem;
    border-bottom: 1px solid rgba(16, 38, 74, 0.08);
    text-align: left;
    vertical-align: top;
}

.ops-table th {
    color: #527090;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ops-table td strong,
.ops-table td small {
    display: block;
}

.ops-table td strong {
    color: #10264a;
}

.ops-table td small {
    margin-top: 0.18rem;
    color: #69809d;
}

.ops-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: #eaf3ff;
    color: #184a82;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.ops-badge--pending,
.ops-badge--pending-review,
.ops-badge--awaiting-documents,
.ops-badge--awaiting-evidence,
.ops-badge--under-review {
    background: rgba(255, 199, 74, 0.18);
    color: #8a6100;
}

.ops-badge--approved,
.ops-badge--paid,
.ops-badge--enabled,
.ops-badge--live,
.ops-badge--scheduled,
.ops-badge--ready,
.ops-badge--processing,
.ops-badge--monitoring {
    background: rgba(22, 189, 128, 0.16);
    color: #0f7a4a;
}

.ops-badge--investigate,
.ops-badge--escalated,
.ops-badge--high,
.ops-badge--critical,
.ops-badge--held,
.ops-badge--recommended-action {
    background: rgba(255, 94, 94, 0.14);
    color: #ab2434;
}

.ops-badge--needs-changes,
.ops-badge--open,
.ops-badge--medium,
.ops-badge--draft,
.ops-badge--level,
.ops-badge--department {
    background: rgba(47, 217, 255, 0.16);
    color: #0c6c8a;
}

.alert-stack,
.mapping-stack,
.permission-groups {
    display: grid;
    gap: 0.85rem;
}

.alert-card,
.mapping-card,
.permission-group,
.role-card {
    padding: 1rem 1.05rem;
}

.alert-card__top,
.role-card__top {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.6rem;
}

.alert-card h3,
.role-card h3,
.mapping-card h3,
.permission-group h3 {
    margin: 0 0 0.45rem;
    color: #10264a;
}

.alert-card p,
.role-card p {
    margin: 0 0 0.6rem;
    color: #536e8d;
    line-height: 1.6;
}

.alert-card small,
.role-card__meta span {
    color: #6a819d;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.9rem;
}

.role-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.permission-group ul {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.permission-group li {
    display: grid;
    gap: 0.18rem;
    padding: 0.75rem 0.85rem;
    border-radius: 18px;
    background: #f6fbff;
}

.permission-group li strong {
    color: #10264a;
}

.permission-group li span {
    color: #6a819d;
    font-size: 0.85rem;
}

.mapping-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.mapping-tag {
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: #edf8ff;
    color: #0f5e89;
    font-size: 0.82rem;
    font-weight: 600;
}

.landing-shell {
    padding: 1.2rem 0 0.5rem;
}

.landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 1.15rem;
    align-items: stretch;
}

.landing-hero__copy,
.landing-hero__visual,
.landing-signal,
.landing-store-card,
.landing-discovery {
    border-radius: 28px;
    border: 1px solid #d5d9d9;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(15, 17, 17, 0.08);
}

.landing-hero__copy {
    display: grid;
    gap: 1rem;
    padding: 2rem;
    background:
        radial-gradient(circle at top left, rgba(113, 245, 109, 0.18), transparent 16rem),
        radial-gradient(circle at 85% 10%, rgba(47, 217, 255, 0.15), transparent 12rem),
        linear-gradient(155deg, #ffffff, #eef9ff 68%, #eefbf5 100%);
}

.landing-hero__copy h1,
.landing-signal h2,
.landing-store-card h3,
.landing-discovery h2 {
    margin: 0;
    color: #10264a;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.08;
}

.landing-hero__copy h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.landing-hero__copy p,
.landing-signal p,
.landing-store-card p,
.landing-discovery p {
    margin: 0;
    color: #565959;
    line-height: 1.75;
}

.landing-hero__search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding: 0.5rem;
    border-radius: 18px;
    border: 1px solid rgba(13, 43, 70, 0.12);
    background: #ffffff;
}

.landing-hero__search input {
    border: 0;
    background: transparent;
    color: #0f1111;
    padding: 0.85rem 0.95rem;
}

.landing-hero__search button {
    border: 0;
    border-radius: 14px;
    padding: 0.85rem 1.15rem;
    background: linear-gradient(135deg, #19d74c, #2fd9ff);
    color: #063927;
    font-weight: 800;
}

.landing-hero__actions,
.landing-hero__pills,
.landing-hero__stats,
.landing-discovery__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.landing-hero__pills span,
.landing-store-card__badge,
.landing-discovery__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.52rem 0.85rem;
    font-size: 0.84rem;
    font-weight: 700;
}

.landing-hero__pills span {
    background: #f4f8fb;
    color: #0f4c73;
    border: 1px solid rgba(15, 76, 115, 0.08);
}

.landing-hero__stats {
    gap: 0.85rem;
}

.landing-hero__stats article {
    display: grid;
    gap: 0.2rem;
    min-width: 120px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #f6fbff;
}

.landing-hero__stats strong {
    color: #10264a;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.45rem;
}

.landing-hero__stats span {
    color: #5f7892;
    font-size: 0.88rem;
}

.landing-hero__visual {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background: linear-gradient(145deg, #f7fcff, #eef6fb);
}

.landing-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-hero__badge {
    position: absolute;
    display: grid;
    gap: 0.2rem;
    max-width: 250px;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(15, 17, 17, 0.16);
}

.landing-hero__badge strong {
    color: #10264a;
}

.landing-hero__badge span {
    color: #5a718d;
    font-size: 0.88rem;
    line-height: 1.5;
}

.landing-hero__badge--top {
    top: 1rem;
    left: 1rem;
}

.landing-hero__badge--bottom {
    right: 1rem;
    bottom: 1rem;
}

.landing-signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.landing-signal {
    padding: 1.25rem 1.2rem;
}

.landing-store-grid,
.landing-product-grid {
    display: grid;
    gap: 1rem;
}

.landing-store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-store-card {
    overflow: hidden;
    border-top: 4px solid var(--store-primary);
}

.landing-store-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(29, 118, 255, 0.12), rgba(47, 217, 255, 0.14));
}

.landing-store-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-store-card__body {
    display: grid;
    gap: 0.8rem;
    padding: 1.15rem;
}

.landing-store-card__badge {
    width: fit-content;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 38, 74, 0.08);
    color: #12395e;
}

.landing-store-card__headline {
    color: #10264a !important;
    font-weight: 700;
}

.landing-store-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: flex-start;
    color: #5f7892;
    font-size: 0.88rem;
}

.landing-store-card__footer a {
    color: #007185;
    font-weight: 800;
}

.landing-discovery {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1rem;
    padding: 1.25rem;
    background:
        radial-gradient(circle at top right, rgba(47, 217, 255, 0.12), transparent 12rem),
        linear-gradient(165deg, #ffffff, #f7fbff 76%, #f4fcf8);
}

.landing-discovery__copy {
    display: grid;
    gap: 0.9rem;
}

.landing-discovery__links a {
    background: #ffffff;
    color: #0f4c73;
    border: 1px solid rgba(15, 76, 115, 0.1);
}

.landing-discovery__stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.landing-mini-product {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    padding: 0.8rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(16, 38, 74, 0.08);
}

.landing-mini-product .product-visual--mini {
    min-height: 84px;
    background: #ffffff;
}

.landing-mini-product strong {
    display: block;
    color: #10264a;
    line-height: 1.35;
}

.landing-mini-product span {
    display: block;
    margin-top: 0.3rem;
    color: #007185;
    font-weight: 700;
}

.home-stage-shell {
    padding-top: 1rem;
}

.home-stage {
    padding: 1.1rem;
}

.home-catalog-layout {
    align-items: stretch;
}

.home-sidebar {
    gap: 0.9rem;
    background: linear-gradient(180deg, rgba(16, 84, 127, 0.92), rgba(10, 49, 87, 0.88));
}

.home-sidebar h1 {
    font-size: clamp(2.15rem, 4vw, 3.2rem);
}

.home-sidebar__filters .catalog-sidebar__filter {
    min-height: 58px;
}

.home-sidebar__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.home-sidebar__stats article {
    display: grid;
    gap: 0.18rem;
    padding: 0.9rem 0.95rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-sidebar__stats strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
}

.home-sidebar__stats span {
    color: rgba(236, 250, 255, 0.84);
    font-size: 0.84rem;
}

.home-main {
    display: grid;
    gap: 1rem;
}

.home-hero-board,
.home-store-card,
.home-deals-board {
    border-radius: 28px;
    border: 1px solid #d5d9d9;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(15, 17, 17, 0.08);
}

.home-hero-board {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
}

.home-hero-board__art {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(145deg, #f5fcff, #e9f7fb);
}

.home-hero-board__art picture {
    display: block;
}

.home-hero-board__art img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.home-hero-board__caption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.home-hero-board__caption strong {
    display: block;
    margin-top: 0.25rem;
    color: #10264a;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 1.85rem);
    line-height: 1.15;
}

.home-hero-board__chips,
.home-deals-board__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.home-hero-board__chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.6rem 0.9rem;
    background: #f2fbff;
    border: 1px solid rgba(16, 38, 74, 0.08);
    color: #11466c;
    font-size: 0.84rem;
    font-weight: 800;
}

.home-main__header {
    margin-bottom: 0;
}

.home-main__header p {
    margin-top: 0.55rem;
    max-width: 48rem;
    color: #5f7892;
}

.home-product-grid {
    margin-top: 0.2rem;
}

.home-lanes-section {
    padding-top: 1.4rem;
}

.home-store-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-store-card {
    overflow: hidden;
    border-top: 4px solid var(--store-primary, #2fd9ff);
}

.home-store-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(29, 118, 255, 0.12), rgba(47, 217, 255, 0.14));
}

.home-store-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-store-card__body {
    display: grid;
    gap: 0.8rem;
    padding: 1.15rem;
}

.home-store-card__badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.52rem 0.85rem;
    background: #f6fbff;
    border: 1px solid rgba(16, 38, 74, 0.08);
    color: #12395e;
    font-size: 0.82rem;
    font-weight: 800;
}

.home-store-card h3,
.home-deals-board__intro h2 {
    margin: 0;
    color: #10264a;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.08;
}

.home-store-card p,
.home-deals-board__intro p {
    margin: 0;
    color: #565959;
    line-height: 1.72;
}

.home-store-card__headline {
    color: #10264a !important;
    font-weight: 700;
}

.home-store-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: flex-start;
    color: #5f7892;
    font-size: 0.88rem;
}

.home-store-card__footer a {
    color: #007185;
    font-weight: 800;
}

.home-deals-board {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    background:
        radial-gradient(circle at top right, rgba(47, 217, 255, 0.12), transparent 12rem),
        linear-gradient(165deg, #ffffff, #f7fbff 76%, #f4fcf8);
}

.home-deals-board__intro {
    display: grid;
    align-content: start;
    gap: 0.85rem;
}

.home-deals-board__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
}

.home-payments-section {
    padding-bottom: 2.4rem;
}

.home-payments-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-campaign-shell {
    padding: 1rem 0 1.5rem;
}

.home-campaign {
    position: relative;
    overflow: hidden;
    width: min(calc(100vw - 1rem), 1860px);
    margin-inline: auto;
    min-height: 860px;
    border-radius: 38px;
    border: 1px solid rgba(198, 242, 255, 0.78);
    box-shadow: 0 28px 70px rgba(2, 13, 28, 0.22);
    background: #dff3fb;
}

.home-campaign__backdrop,
.home-campaign__backdrop picture {
    display: block;
    position: absolute;
    inset: 0;
}

.home-campaign__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-campaign__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(243, 251, 255, 0.92) 0%, rgba(243, 251, 255, 0.84) 24%, rgba(243, 251, 255, 0.24) 52%, rgba(7, 24, 48, 0.18) 100%),
        linear-gradient(180deg, rgba(7, 24, 48, 0.1) 0%, rgba(7, 24, 48, 0) 24%, rgba(7, 24, 48, 0.18) 100%);
}

.home-campaign__content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: space-between;
    min-height: 860px;
    padding: 1.35rem 1.35rem 1.25rem;
    color: #102847;
}

.home-campaign__topbar,
.home-campaign__menu,
.home-campaign__actions,
.home-campaign__chips,
.home-brand-board__actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.home-campaign__topbar {
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0.3rem 0.75rem;
}

.home-campaign__brand {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 28px rgba(12, 30, 54, 0.08);
}

.home-campaign__brand img {
    width: clamp(180px, 21vw, 280px);
    height: auto;
}

.home-campaign__menu {
    flex-wrap: wrap;
    justify-content: center;
}

.home-campaign__menu a,
.home-campaign__shipping {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 28px rgba(12, 30, 54, 0.08);
    color: #103054;
    font-size: 0.9rem;
    font-weight: 700;
}

.home-campaign__shipping {
    display: grid;
    gap: 0.2rem;
    max-width: 330px;
}

.home-campaign__shipping span {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2a6185;
}

.home-campaign__shipping strong {
    font-size: 0.9rem;
    line-height: 1.45;
}

.home-campaign__layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 720px);
    gap: 1.25rem;
    align-items: start;
    margin-top: 0.2rem;
}

.home-campaign__categories,
.home-campaign__hero-copy,
.home-brand-board,
.home-brand-board__card {
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(12, 30, 54, 0.1);
}

.home-campaign__categories {
    display: grid;
    gap: 0.75rem;
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
}

.home-campaign__rail-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2d668a;
}

.home-campaign__category-link {
    display: grid;
    gap: 0.15rem;
    padding: 0.85rem 0.95rem;
    border-radius: 20px;
    background: rgba(16, 37, 74, 0.06);
    color: #113153;
    border: 1px solid rgba(16, 37, 74, 0.06);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.home-campaign__category-link:hover {
    transform: translateY(-1px);
    background: rgba(47, 217, 255, 0.12);
    border-color: rgba(47, 217, 255, 0.22);
}

.home-campaign__category-link strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.98rem;
}

.home-campaign__category-link span {
    color: #54718b;
    font-size: 0.82rem;
}

.home-campaign__hero-copy {
    display: grid;
    gap: 1rem;
    padding: 1.5rem 1.6rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
}

.home-campaign__hero-copy h1,
.home-brand-board__copy h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #0f2648;
}

.home-campaign__hero-copy h1 {
    font-size: clamp(2.85rem, 5.4vw, 4.85rem);
    max-width: 13ch;
}

.home-campaign__hero-copy p,
.home-brand-board__copy p,
.home-brand-board__card p {
    margin: 0;
    color: #486984;
    line-height: 1.75;
}

.home-campaign__search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding: 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 37, 74, 0.08);
}

.home-campaign__search input {
    border: 0;
    background: transparent;
    color: #0f2648;
    padding: 0.95rem 1rem;
}

.home-campaign__search button {
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.3rem;
    background: linear-gradient(135deg, #2fd9ff, #71f56d);
    color: #07263d;
    font-weight: 800;
}

.home-campaign__actions {
    flex-wrap: wrap;
}

.home-campaign__chips {
    flex-wrap: wrap;
}

.home-campaign__chips span {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(16, 37, 74, 0.08);
    color: #16395d;
    font-size: 0.84rem;
    font-weight: 700;
}

.home-campaign__tiles {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.9rem;
    align-items: stretch;
    margin-top: 1.25rem;
}

.home-campaign__tile {
    display: grid;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(188, 231, 245, 0.95);
    box-shadow: 0 18px 34px rgba(12, 30, 54, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-campaign__tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 40px rgba(12, 30, 54, 0.18);
}

.home-campaign__tile img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.home-campaign__tile-body {
    display: grid;
    gap: 0.28rem;
    padding: 0.9rem 0.95rem 1rem;
}

.home-campaign__tile-body span,
.home-brand-board__card-label {
    color: #5d7893;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-campaign__tile-body strong,
.home-brand-board__card strong {
    color: #10264a;
    font-family: "Space Grotesk", sans-serif;
}

.home-campaign__tile-body strong {
    font-size: 1rem;
    line-height: 1.28;
}

.home-campaign__tile-body em {
    font-style: normal;
    color: #0f6a87;
    font-weight: 800;
}

.home-brand-board {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1rem;
    padding: 1rem;
    background:
        radial-gradient(circle at top right, rgba(47, 217, 255, 0.12), transparent 14rem),
        linear-gradient(165deg, #ffffff, #f4fbff 76%, #effbf6);
    border: 1px solid #d5ecf5;
}

.home-brand-board__copy {
    display: grid;
    align-content: start;
    gap: 0.95rem;
    padding: 1rem;
}

.home-brand-board__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.home-brand-board__card {
    display: grid;
    align-content: start;
    gap: 0.5rem;
    padding: 1.1rem;
    background: #ffffff;
    border: 1px solid rgba(16, 38, 74, 0.08);
}

.home-brand-board__card strong {
    font-size: 2.1rem;
}

.home-brand-board__card small {
    color: #0f6a87;
    font-weight: 800;
}

.home-lanes-section .section-heading p,
.home-payments-section .section-heading p {
    max-width: 48rem;
}

@media (max-width: 1180px) {
    .header-market {
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "brand tools toggle"
            "search search search"
            "delivery delivery delivery";
    }

    .header-market .brand-mark--full {
        grid-area: brand;
    }

    .header-market__tools {
        grid-area: tools;
    }

    .header-market__search {
        grid-area: search;
    }

    .header-market__delivery {
        grid-area: delivery;
    }

    .header-market .nav-toggle {
        grid-area: toggle;
        display: inline-block;
    }

    .product-market__layout,
    .checkout-layout--market,
    .site-footer--market .site-footer__grid,
    .mfa-grid,
    .control-grid--two,
    .control-hero,
    .landing-hero,
    .landing-discovery,
    .home-deals-board,
    .home-brand-board {
        grid-template-columns: 1fr;
    }

    .control-identity {
        min-width: 0;
    }

    .home-campaign__layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .home-campaign__tiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-brand-board__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .catalog-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .header-subnav__inner.primary-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.25rem);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: #232f3e;
        border-radius: 8px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    }

    .header-subnav__inner.primary-nav.is-open {
        display: flex;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-product-grid,
    .payment-grid--market,
    .control-metrics,
    .department-grid,
    .role-grid,
    .landing-signal-grid,
    .landing-store-grid,
    .landing-product-grid,
    .home-store-grid,
    .home-payments-grid,
    .home-brand-board__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-deals-board__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-campaign {
        min-height: 0;
    }

    .home-campaign__content {
        min-height: 0;
    }

    .home-campaign__topbar,
    .home-campaign__layout {
        grid-template-columns: 1fr;
    }

    .home-campaign__topbar {
        display: grid;
        justify-items: start;
    }

    .home-campaign__menu,
    .home-campaign__actions {
        justify-content: flex-start;
    }

    .home-campaign__shipping {
        max-width: none;
    }

    .home-campaign__tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .header-market {
        gap: 0.75rem;
    }

    .header-market__tools {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .catalog-stage__topbar,
    .catalog-main,
    .catalog-sidebar,
    .product-market__gallery,
    .product-market__content,
    .product-market__buybox,
    .cart-table--market,
    .summary-card--market,
    .form-card--market {
        padding: 0.85rem;
    }

    .catalog-product-grid,
    .payment-grid--market,
    .control-metrics,
    .department-grid,
    .role-grid,
    .landing-signal-grid,
    .landing-store-grid,
    .landing-product-grid,
    .landing-discovery__stack,
    .home-store-grid,
    .home-payments-grid,
    .home-deals-board__grid,
    .home-sidebar__stats,
    .home-brand-board__grid,
    .home-campaign__tiles {
        grid-template-columns: 1fr;
    }

    .control-panel__header,
    .alert-card__top,
    .role-card__top,
    .mfa-inline-meta,
    .landing-store-card__footer,
    .home-hero-board__caption,
    .home-store-card__footer,
    .home-campaign__topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .mfa-card,
    .control-hero,
    .control-panel,
    .landing-hero__copy,
    .landing-discovery,
    .home-hero-board,
    .home-deals-board,
    .home-brand-board,
    .home-campaign__content {
        padding: 1rem;
    }

    .ops-table {
        display: block;
        overflow-x: auto;
    }

    .home-campaign {
        width: min(calc(100vw - 0.5rem), 1860px);
        border-radius: 24px;
    }

    .home-campaign__brand img {
        width: 176px;
    }

    .home-campaign__hero-copy h1 {
        font-size: 2.45rem;
        max-width: none;
    }

    .home-campaign__categories,
    .home-campaign__hero-copy {
        padding: 1rem;
    }

    .home-campaign__search {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .home-campaign__search button {
        width: 100%;
    }

    .landing-hero__visual {
        min-height: 360px;
    }

    .landing-mini-product {
        grid-template-columns: 78px minmax(0, 1fr);
    }
}
