@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Outfit:wght@400;500;600;700;800;900&display=swap");

:root {
    --page: #f0f4fa;
    --ink: #0d1b3e;
    --muted: #5a6b8a;
    --line: #d0daea;
    --panel: #ffffff;
    --navy: #0d1b3e;
    --teal: #1a56db;
    --leaf: #1a7f5a;
    --amber: #b45309;
    --rose: #b83246;
    --blue: #1a56db;
    --axsend-cobalt: #1e40e0;
    --axsend-electric: #4a7ff7;
    --axsend-navy: #0d1b3e;
    --axsend-mid: #162d6e;
    --axsend-cyan: #38bdf8;
    --axsend-gold: #3b82f6;
    --axsend-gradient: linear-gradient(135deg, #0d1b3e 0%, #1a3a8f 40%, #1e40e0 72%, #4a7ff7 100%);
    --shadow: 0 18px 48px rgba(13, 27, 62, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--page);
    color: var(--ink);
    font-family: "DM Sans", "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

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

.site-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 70px;
    padding: 0 36px;
    background: rgba(13, 27, 62, 0.97);
    border-bottom: 1px solid rgba(74, 127, 247, 0.2);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    letter-spacing: 0;
}

.brand-logo {
    display: block;
    width: min(220px, 48vw);
    height: 46px;
    padding: 5px 10px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(30, 64, 224, 0.24);
}

.brand-mark,
.buyer-avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--axsend-gradient);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 4px 14px rgba(30, 64, 224, 0.5);
}

.site-links,
.actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
}

.site-links {
    gap: 2px;
    font-weight: 500;
    font-size: 14px;
    flex-shrink: 1;
    min-width: 0;
}

.actions {
    gap: 8px;
    flex-shrink: 0;
}

.site-links > a,
.site-dropdown > a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 12px;
    min-height: 70px;
    color: rgba(255, 255, 255, 0.82);
    transition: color 150ms ease;
    font-size: 14px;
}

.site-links > a:hover {
    color: #ffffff;
}

.site-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.site-dropdown > a {
    gap: 5px;
}

.site-dropdown > a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(255,255,255,0.5);
    margin-top: 1px;
    transition: transform 160ms ease;
}

.site-dropdown:hover > a::after {
    transform: rotate(180deg);
    border-top-color: var(--axsend-electric);
}

.site-dropdown > a:hover {
    color: #ffffff;
}

.site-dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 200px;
    display: grid;
    gap: 2px;
    padding: 8px;
    border: 1px solid rgba(74, 127, 247, 0.25);
    border-radius: 12px;
    background: rgba(10, 20, 55, 0.98);
    box-shadow: 0 16px 48px rgba(13, 27, 62, 0.55), 0 0 0 1px rgba(74, 127, 247, 0.08);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
    z-index: 50;
    backdrop-filter: blur(12px);
}

.site-dropdown-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
    white-space: nowrap;
    transition: background 120ms ease, color 120ms ease;
}

.site-dropdown-menu a:hover {
    background: rgba(74, 127, 247, 0.15);
    color: #ffffff;
}

.site-dropdown:hover .site-dropdown-menu,
.site-dropdown:focus-within .site-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 0s;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: var(--axsend-gradient);
    color: #ffffff;
    font: inherit;
    font-weight: 750;
    letter-spacing: 0;
    cursor: pointer;
    transition: opacity 150ms ease, transform 120ms ease, box-shadow 150ms ease;
    box-shadow: 0 4px 16px rgba(30, 64, 224, 0.35);
}

.button:hover,
button:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(30, 64, 224, 0.45);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(74, 127, 247, 0.35);
    box-shadow: none;
}

.button.secondary:hover {
    background: rgba(74, 127, 247, 0.15);
    border-color: rgba(74, 127, 247, 0.6);
    color: #ffffff;
}

.button.small {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 13px;
}

.button.accent {
    background: linear-gradient(135deg, #1e40e0, #4a7ff7);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(30, 64, 224, 0.5);
}

.button.accent:hover {
    background: linear-gradient(135deg, #1a35c8, #3a6be0);
    box-shadow: 0 8px 28px rgba(30, 64, 224, 0.6);
}

.button.light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.button.light:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.55);
}

.site-hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 72px 30px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(13, 27, 62, 0.95) 0%, rgba(26, 58, 143, 0.85) 50%, rgba(30, 64, 224, 0.65) 100%),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.corporate-hero {
    position: relative;
    min-height: 720px;
    align-items: flex-end;
    padding-bottom: 82px;
    background:
        linear-gradient(135deg, rgba(13, 27, 62, 0.97) 0%, rgba(22, 45, 110, 0.88) 40%, rgba(30, 64, 224, 0.72) 70%, rgba(74, 127, 247, 0.45) 100%),
        url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.corporate-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(240, 244, 250, 0), var(--page));
    pointer-events: none;
}

.corporate-hero .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.corporate-hero .hero-eyebrow {
    border-color: rgba(74, 127, 247, 0.4);
    background: rgba(74, 127, 247, 0.15);
    color: #93c5fd;
}

.corporate-hero .hero-title {
    max-width: 790px;
    font-size: 58px;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.corporate-hero .hero-copy {
    max-width: 720px;
}

.hero-solution-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 34px;
}

.hero-solution-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
    font-weight: 850;
}

.stat-ribbon {
    position: relative;
    z-index: 2;
    margin-top: -42px;
    padding: 0 30px 28px;
}

.stat-ribbon-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(18, 48, 71, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(18, 48, 71, 0.14);
}

.stat-ribbon-inner > div {
    min-height: 120px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 22px 24px;
    border-right: 1px solid var(--line);
}

.stat-ribbon-inner > div:last-child {
    border-right: 0;
}

.stat-ribbon strong {
    color: var(--axsend-cobalt);
    font-size: 34px;
    line-height: 1;
}

.stat-ribbon span {
    color: var(--muted);
    font-weight: 820;
}

.corporate-section {
    padding-top: 58px;
    padding-bottom: 58px;
}

.section-kicker {
    margin-bottom: 10px;
    color: var(--axsend-cobalt);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.corporate-head {
    margin-bottom: 28px;
}

.corporate-head .section-title {
    max-width: 760px;
    font-size: 34px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--axsend-navy);
}

.corporate-head .section-subtitle {
    max-width: 690px;
    margin-top: 8px;
}

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

.solution-card {
    min-height: 260px;
    display: grid;
    align-content: start;
    gap: 13px;
    padding: 24px;
    border: 1px solid rgba(13, 27, 62, 0.08);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(13, 27, 62, 0.07);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(30, 64, 224, 0.16);
    border-color: rgba(74, 127, 247, 0.3);
}

.solution-mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 64, 224, 0.1), rgba(74, 127, 247, 0.15));
    color: var(--axsend-cobalt);
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(74, 127, 247, 0.2);
}

.solution-card h3,
.story-card h3,
.tenant-card h3,
.product-highlight h3,
.updates-grid h3 {
    margin: 0;
    color: var(--axsend-navy);
    font-size: 20px;
    line-height: 1.18;
}

.solution-card p,
.story-card p,
.tenant-card p,
.product-highlight p,
.updates-grid p,
.feature-showcase p {
    margin: 0;
    color: var(--muted);
}

.solution-card span,
.story-card a,
.tenant-card span,
.product-highlight span {
    color: var(--axsend-cobalt);
    font-size: 13px;
    font-weight: 700;
}

.about-band {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    min-height: 520px;
    background: #ffffff;
}

.about-photo {
    min-height: 520px;
    background:
        linear-gradient(135deg, rgba(13, 27, 62, 0.55), rgba(30, 64, 224, 0.25)),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1400&q=82") center / cover;
}

.about-copy {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 62px max(30px, calc((100vw - 1180px) / 2)) 62px 54px;
}

.about-copy span,
.landing-cta span {
    color: var(--axsend-electric);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
}

.about-copy h2,
.feature-showcase h2,
.updates-band h2,
.landing-cta h2 {
    margin: 0;
    color: var(--axsend-navy);
    font-size: 38px;
    line-height: 1.12;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.about-copy p {
    max-width: 660px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

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

.story-card {
    display: grid;
    grid-template-rows: 210px 1fr;
    overflow: hidden;
    border: 1px solid rgba(13, 27, 62, 0.08);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(13, 27, 62, 0.07);
    transition: box-shadow 200ms ease, transform 200ms ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(30, 64, 224, 0.14);
}

.story-card > div:last-child {
    display: grid;
    gap: 12px;
    padding: 20px;
}

.story-media {
    background:
        linear-gradient(140deg, rgba(13, 27, 62, 0.22), rgba(30, 64, 224, 0.2)),
        url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=900&q=82") center / cover;
}

.story-card:nth-child(2) .story-media {
    background-image:
        linear-gradient(140deg, rgba(13, 27, 62, 0.22), rgba(30, 64, 224, 0.2)),
        url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=900&q=82");
}

.story-card:nth-child(3) .story-media {
    background-image:
        linear-gradient(140deg, rgba(13, 27, 62, 0.22), rgba(30, 64, 224, 0.2)),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=900&q=82");
}

.feature-showcase {
    padding: 72px 30px;
    background: var(--axsend-gradient);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.feature-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(74, 127, 247, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 34px;
    align-items: center;
}

.feature-showcase .section-kicker,
.feature-showcase h2 {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.feature-showcase p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
}

.showcase-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.showcase-tabs span {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background 150ms ease, border-color 150ms ease;
}

.showcase-tabs span:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.showcase-panel {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
}

.showcase-window {
    min-height: 300px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.showcase-window div {
    border-radius: 8px;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(232, 245, 255, 0.86)),
        url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=82") center / cover;
}

.showcase-window div:first-child {
    grid-row: 1 / -1;
}

.showcase-window div:nth-child(2) {
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 222, 0.84)),
        url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=700&q=82") center / cover;
}

.showcase-window div:nth-child(3) {
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(230, 250, 242, 0.84)),
        url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=700&q=82") center / cover;
}

.showcase-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.showcase-list span {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 150ms ease;
}

.showcase-list span:hover {
    background: rgba(255, 255, 255, 0.18);
}

.tenant-showcase-grid,
.product-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

.tenant-card,
.product-highlight {
    overflow: hidden;
    border: 1px solid rgba(13, 27, 62, 0.08);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(13, 27, 62, 0.07);
    transition: box-shadow 200ms ease, transform 200ms ease;
}

.tenant-card:hover,
.product-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(30, 64, 224, 0.14);
    border-color: rgba(74, 127, 247, 0.25);
}

.tenant-card.empty,
.product-highlight.empty {
    min-height: 110px;
    display: grid;
    place-items: center;
    padding: 18px;
    color: var(--muted);
}

.tenant-card > div:last-child,
.product-highlight > div:last-child {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.tenant-card-image,
.product-highlight-image {
    min-height: 190px;
    background:
        linear-gradient(140deg, rgba(13, 27, 62, 0.18), rgba(30, 64, 224, 0.16)),
        url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=900&q=82") center / cover;
}

.tenant-card-image.image-2 {
    background-image:
        linear-gradient(140deg, rgba(13, 27, 62, 0.18), rgba(30, 64, 224, 0.16)),
        url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=900&q=82");
}

.tenant-card-image.image-3 {
    background-image:
        linear-gradient(140deg, rgba(13, 27, 62, 0.18), rgba(30, 64, 224, 0.16)),
        url("https://images.unsplash.com/photo-1560264280-88b68371db39?auto=format&fit=crop&w=900&q=82");
}

.product-highlight-image {
    min-height: 180px;
    background-image:
        linear-gradient(140deg, rgba(13, 27, 62, 0.12), rgba(30, 64, 224, 0.14)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=82");
}

.product-highlight-image.image-2 {
    background-image:
        linear-gradient(140deg, rgba(13, 27, 62, 0.12), rgba(30, 64, 224, 0.14)),
        url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=900&q=82");
}

.product-highlight-image.image-3 {
    background-image:
        linear-gradient(140deg, rgba(13, 27, 62, 0.12), rgba(30, 64, 224, 0.14)),
        url("https://images.unsplash.com/photo-1556740758-90de374c12ad?auto=format&fit=crop&w=900&q=82");
}

.product-highlight-image.image-4 {
    background-image:
        linear-gradient(140deg, rgba(13, 27, 62, 0.12), rgba(30, 64, 224, 0.14)),
        url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=900&q=82");
}

.product-highlight strong {
    color: var(--axsend-cobalt);
    font-size: 19px;
}

.updates-band {
    padding: 70px 30px;
    background: #ffffff;
}

.updates-band h2 {
    max-width: 760px;
    margin-bottom: 24px;
}

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

.updates-grid article {
    display: grid;
    gap: 10px;
    min-height: 210px;
    padding: 24px;
    border: 1px solid rgba(30, 64, 224, 0.12);
    border-radius: 12px;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    transition: box-shadow 200ms ease;
}

.updates-grid article:hover {
    box-shadow: 0 8px 32px rgba(30, 64, 224, 0.12);
}

.updates-grid span {
    color: var(--axsend-cobalt);
    font-weight: 800;
}

.landing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 58px max(30px, calc((100vw - 1180px) / 2));
    background: var(--axsend-gradient);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.landing-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(74, 127, 247, 0.22) 0%, transparent 65%);
    pointer-events: none;
}

.landing-cta h2 {
    max-width: 760px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.store-hero {
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    padding: 70px 30px 56px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(13, 27, 62, 0.92) 0%, rgba(22, 45, 110, 0.78) 50%, rgba(30, 64, 224, 0.55) 100%),
        url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-inner,
.container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.hero-inner {
    max-width: 760px;
    margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.hero-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    color: #d9edf0;
    font-weight: 850;
}

.hero-title {
    margin: 0;
    font-size: 56px;
    line-height: 1.02;
    letter-spacing: 0;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
}

.hero-copy {
    max-width: 650px;
    margin: 18px 0 0;
    color: #e8f2f5;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.section {
    padding: 34px 30px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.16;
}

.muted,
.section-subtitle {
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 16px;
}

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

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

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

.panel,
.product-card,
.portal-card {
    background: var(--panel);
    border: 1px solid rgba(13, 27, 62, 0.08);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.panel-body,
.portal-card {
    padding: 18px;
}

.stat {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 4px solid var(--axsend-cobalt);
}

.stat strong {
    font-size: 28px;
    line-height: 1;
}

.product-card {
    overflow: hidden;
}

.product-media {
    height: 170px;
    background:
        linear-gradient(140deg, rgba(13, 27, 62, 0.16), rgba(30, 64, 224, 0.14)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80") center / cover;
}

.product-body {
    display: grid;
    gap: 9px;
    padding: 15px;
}

.product-name {
    font-size: 16px;
    font-weight: 900;
}

.price {
    color: var(--axsend-cobalt);
    font-size: 18px;
    font-weight: 950;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    background: #eef2f6;
    color: #526071;
    font-size: 12px;
    font-weight: 850;
}

.pill.good { background: #e4f7ee; color: var(--leaf); }
.pill.info { background: #e8eeff; color: var(--axsend-cobalt); }
.pill.warn { background: #fff3dd; color: var(--amber); }
.pill.bad { background: #fdecef; color: var(--rose); }

.auth-scene {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    background:
        radial-gradient(900px 520px at 100% -10%, rgba(56, 189, 248, 0.18), rgba(56, 189, 248, 0)),
        #eef3ff;
}

.auth-art {
    display: flex;
    align-items: flex-end;
    padding: 56px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(13, 27, 62, 0.96) 0%, rgba(84, 43, 228, 0.84) 48%, rgba(30, 168, 232, 0.72) 100%),
        url("https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.auth-art h1 {
    margin: 0 0 12px;
    max-width: 620px;
    font-size: 44px;
    line-height: 1.05;
}

.auth-art p {
    max-width: 600px;
    margin: 0;
    color: #dbeafe;
    font-size: 16px;
}

.auth-art-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 640px;
    margin-top: 28px;
}

.auth-art-stats div {
    display: grid;
    gap: 4px;
    min-height: 96px;
    align-content: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.auth-art-stats strong {
    color: #ffffff;
    font-size: 18px;
}

.auth-art-stats span {
    color: #cfe4ff;
    font-size: 12px;
    font-weight: 700;
}

.auth-panel {
    display: grid;
    place-items: center;
    padding: 28px;
    background:
        radial-gradient(520px 260px at 50% 0%, #ffffff, rgba(255, 255, 255, 0)),
        transparent;
}

.auth-card {
    width: min(100%, 390px);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 62px rgba(13, 27, 62, 0.16);
    backdrop-filter: blur(14px);
}

.buyer-auth-brand {
    display: flex;
    align-items: center;
    width: 168px;
    min-height: 54px;
    padding: 7px 10px;
    border: 1px solid #dbe6f5;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(13, 27, 62, 0.1);
}

.buyer-auth-logo {
    display: block;
    width: 100%;
    height: 38px;
    object-fit: contain;
}

.buyer-auth-headline {
    margin: 24px 0 20px;
}

.buyer-auth-headline h2 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.2;
}

.buyer-auth-headline p,
.buyer-auth-foot {
    margin-top: 0;
}

.auth-submit {
    width: 100%;
    margin-top: 12px;
    min-height: 46px;
}

label {
    display: block;
    margin: 0 0 7px;
    color: #344054;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 41px;
    border: 1px solid #c8d4e8;
    border-radius: 8px;
    padding: 9px 11px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--axsend-cobalt);
    box-shadow: 0 0 0 3px rgba(30, 64, 224, 0.12);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

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

.full {
    grid-column: 1 / -1;
}

.notice {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 8px;
}

.notice.success { border: 1px solid #abdcc4; background: #e6f7ee; color: #116149; }
.notice.error { border: 1px solid #fac5c0; background: #fdecea; color: #a13732; }
.notice.info { border: 1px solid rgba(30, 64, 224, 0.25); background: #eef2ff; color: var(--axsend-cobalt); }

.buyer-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    background:
        linear-gradient(180deg, #eef5ff 0%, #f8fbff 46%, #f2f6fd 100%);
}

.buyer-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 16px;
    background:
        linear-gradient(180deg, rgba(13, 27, 62, 0.98) 0%, rgba(40, 54, 167, 0.98) 58%, rgba(22, 168, 232, 0.94) 100%);
    color: #eef2ff;
    box-shadow: 18px 0 45px rgba(13, 27, 62, 0.14);
}

.buyer-brand {
    display: grid;
    gap: 12px;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.buyer-logo-card {
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(6, 20, 62, 0.22);
}

.buyer-logo {
    display: block;
    width: 100%;
    height: 44px;
    object-fit: contain;
}

.buyer-profile-card {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.buyer-profile-card strong {
    display: block;
    color: #ffffff;
    line-height: 1.2;
}

.buyer-profile-card .muted {
    color: #c7ddf4;
}

.buyer-nav {
    display: grid;
    gap: 5px;
    margin-top: 18px;
}

.buyer-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #dbeafe;
    font-weight: 760;
    border: 1px solid transparent;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.buyer-nav a:hover,
.buyer-nav a.active {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    transform: translateX(2px);
}

.buyer-nav a.active {
    background: #ffffff;
    color: var(--axsend-cobalt);
    box-shadow: 0 12px 26px rgba(5, 18, 54, 0.18);
}

.buyer-nav a.active .nav-symbol {
    background: #eef4ff;
    color: var(--axsend-cobalt);
}

.nav-symbol {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 900;
}

.buyer-main {
    min-width: 0;
}

.buyer-topbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.buyer-topbar-title {
    display: grid;
    gap: 2px;
}

.buyer-topbar-title span {
    color: var(--axsend-cobalt);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.buyer-topbar-title strong {
    color: var(--ink);
    font-size: 18px;
}

.buyer-page {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 28px;
}

.page-head,
.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.page-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.16;
}

.table-scroll {
    overflow-x: auto;
}

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

th,
td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    background: #f0f4ff;
    color: #3a4f6e;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
}

tr:last-child td {
    border-bottom: 0;
}

.mini-list {
    display: grid;
    gap: 11px;
}

.mini-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--line);
}

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

.portal-card {
    min-height: 120px;
}

.portal-card strong {
    display: block;
    font-size: 24px;
    margin-top: 10px;
}

.buyer-dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 18px;
    padding: 24px;
    border: 1px solid rgba(74, 127, 247, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(13, 27, 62, 0.97), rgba(84, 43, 228, 0.9) 54%, rgba(22, 168, 232, 0.88)),
        #0d1b3e;
    color: #ffffff;
    box-shadow: 0 22px 56px rgba(13, 27, 62, 0.16);
}

.buyer-hero-copy {
    display: grid;
    align-content: center;
    gap: 12px;
    min-height: 230px;
}

.buyer-eyebrow,
.buyer-section-kicker {
    color: var(--axsend-cobalt);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.buyer-dashboard-hero .buyer-eyebrow {
    color: #8eeaff;
}

.buyer-hero-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.08;
}

.buyer-hero-copy p {
    max-width: 720px;
    margin: 0;
    color: #dbeafe;
    font-size: 15px;
}

.buyer-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.buyer-dashboard-hero .button.secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.buyer-dashboard-hero .button.secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.buyer-hero-card {
    display: grid;
    align-content: center;
    gap: 12px;
    min-height: 230px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.buyer-hero-card strong {
    color: #ffffff;
    font-size: 21px;
    line-height: 1.18;
}

.buyer-hero-card p {
    margin: 0;
    color: #cfe4ff;
}

.buyer-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 6px;
}

.buyer-hero-stats div {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.buyer-hero-stats span {
    color: #b9d9ef;
    font-size: 12px;
    font-weight: 800;
}

.buyer-hero-stats strong {
    color: #ffffff;
    font-size: 24px;
}

.buyer-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.buyer-metric {
    position: relative;
    overflow: hidden;
    min-height: 128px;
    border-radius: 8px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.buyer-metric:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 56px rgba(13, 27, 62, 0.16);
}

.buyer-metric::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--metric-color, var(--axsend-cobalt));
}

.buyer-metric .metric-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #eef4ff;
    color: var(--metric-color, var(--axsend-cobalt));
    font-size: 11px;
    font-weight: 900;
}

.buyer-metric > .muted {
    max-width: calc(100% - 52px);
    font-weight: 800;
}

.buyer-metric strong {
    color: var(--ink);
    font-size: 30px;
}

.metric-blue {
    --metric-color: #1e40e0;
}

.metric-cyan {
    --metric-color: #0ea5e9;
}

.metric-violet {
    --metric-color: #542be4;
}

.metric-navy {
    --metric-color: #0d1b3e;
}

.metric-cyan .metric-icon {
    background: #e8f8ff;
}

.metric-violet .metric-icon {
    background: #f1edff;
}

.metric-navy .metric-icon {
    background: #edf1f8;
}

.buyer-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 16px;
}

.buyer-dashboard-panel {
    border-radius: 8px;
    overflow: hidden;
}

.buyer-dashboard-panel .toolbar {
    margin-bottom: 14px;
}

.buyer-dashboard-panel .section-title {
    margin: 3px 0 0;
}

.buyer-order-row,
.buyer-notice-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #edf2fb;
    border-radius: 8px;
    background: #fbfdff;
}

.buyer-order-row .muted,
.buyer-notice-row .muted {
    display: block;
    margin-top: 3px;
}

.buyer-row-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(30, 64, 224, 0.12), rgba(56, 189, 248, 0.18));
    color: var(--axsend-cobalt);
    font-size: 11px;
    font-weight: 900;
}

.commerce-body {
    background: var(--commerce-bg);
    color: var(--commerce-text);
}

.commerce-promo {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 7px 20px;
    background: var(--commerce-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 760;
}

.commerce-promo a {
    color: var(--commerce-accent);
    font-weight: 900;
}

.commerce-header {
    position: sticky;
    top: 0;
    z-index: 30;
    min-height: 76px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 0 34px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(22, 32, 51, 0.12);
    backdrop-filter: blur(10px);
}

.commerce-meta,
.commerce-actions,
.commerce-cats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.commerce-actions {
    justify-content: flex-end;
}

.commerce-brand {
    display: inline-grid;
    justify-items: center;
    gap: 4px;
    color: var(--commerce-primary);
    text-transform: uppercase;
}

.commerce-brand span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--commerce-primary);
    border-radius: 50%;
    font-weight: 950;
}

.commerce-brand strong {
    font-size: 13px;
    letter-spacing: 0;
}

.commerce-cart {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--commerce-primary);
    border-radius: 50%;
    font-weight: 900;
}

.commerce-cats {
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    background: #ffffff;
    border-bottom: 1px solid rgba(22, 32, 51, 0.1);
    font-size: 13px;
    font-weight: 850;
}

.commerce-hero {
    position: relative;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.commerce-hero-copy {
    width: min(720px, calc(100% - 48px));
    margin-left: max(24px, calc((100vw - 1180px) / 2));
}

.commerce-hero-copy span,
.commerce-section-head span,
.commerce-page-hero span,
.commerce-life span,
.editorial-tile span {
    color: var(--commerce-accent);
    font-weight: 900;
    text-transform: uppercase;
}

.commerce-hero-copy h1 {
    margin: 10px 0 14px;
    max-width: 760px;
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: 0;
}

.commerce-hero-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.commerce-scroll {
    position: absolute;
    right: 34px;
    bottom: 26px;
    font-weight: 900;
}

.commerce-editorial {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2px;
    background: var(--commerce-primary);
}

.editorial-tile {
    min-height: 520px;
    display: grid;
    grid-template-rows: 1fr auto;
    background: #ffffff;
}

.editorial-tile.large {
    min-height: 640px;
}

.editorial-image {
    min-height: 330px;
    background-position: center;
    background-size: cover;
}

.editorial-image.image-one {
    background-image: url("https://images.unsplash.com/photo-1523398002811-999ca8dec234?auto=format&fit=crop&w=1200&q=80");
}

.editorial-image.image-two {
    background-image: url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1200&q=80");
}

.editorial-tile > div:last-child {
    padding: 28px;
}

.editorial-tile h2,
.commerce-section-head h2,
.commerce-page-hero h1,
.commerce-life h2,
.commerce-product-info h1 {
    margin: 8px 0 10px;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: 0;
}

.editorial-tile p,
.commerce-card-body p,
.commerce-life p,
.commerce-product-info p {
    color: var(--muted);
}

.commerce-section {
    padding: 54px 34px;
}

.commerce-section.compact {
    padding-top: 28px;
}

.commerce-section-head,
.commerce-page-hero {
    width: min(1180px, 100%);
    margin: 0 auto 24px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.commerce-section-head a {
    font-weight: 900;
    color: var(--commerce-primary);
}

.commerce-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.commerce-card {
    display: grid;
    min-height: 390px;
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.commerce-card-image {
    min-height: 230px;
    background:
        linear-gradient(140deg, rgba(16, 24, 32, 0.08), rgba(216, 162, 74, 0.14)),
        url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=900&q=80") center / cover;
}

.commerce-card-body {
    display: grid;
    gap: 7px;
    padding: 16px;
}

.commerce-card-body span {
    color: var(--commerce-accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.commerce-card-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
}

.commerce-card-body strong,
.commerce-price {
    color: var(--commerce-primary);
    font-size: 20px;
    font-weight: 950;
}

.commerce-life {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 48px max(34px, calc((100vw - 1180px) / 2));
    background: var(--commerce-primary);
    color: #ffffff;
}

.commerce-life p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
}

.commerce-page-hero {
    padding: 52px 34px 0;
}

.commerce-search {
    width: min(1180px, 100%);
    margin: 0 auto 22px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 220px auto auto;
    gap: 10px;
}

.commerce-product {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    min-height: calc(100vh - 160px);
    background: #ffffff;
}

.commerce-product-media {
    min-height: 620px;
    background:
        linear-gradient(140deg, rgba(16, 24, 32, 0.1), rgba(216, 162, 74, 0.14)),
        url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.commerce-product-info {
    align-self: center;
    padding: 54px;
}

.commerce-back {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--commerce-primary);
    font-weight: 900;
}

.commerce-price {
    margin: 18px 0;
    font-size: 28px;
}

.commerce-footer {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
    padding: 44px max(28px, calc((100vw - 1180px) / 2));
    background: #111111;
    color: #ffffff;
}

.commerce-footer h3,
.commerce-footer h4 {
    margin: 0 0 12px;
}

.commerce-footer a,
.commerce-footer span,
.commerce-footer p {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
}

.booking-hero {
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: end;
    padding: 80px max(28px, calc((100vw - 1180px) / 2)) 44px;
    background: #171717;
    color: #ffffff;
}

.booking-hero h1 {
    margin: 8px 0 12px;
    max-width: 720px;
    font-size: 54px;
    line-height: 1;
    letter-spacing: 0;
}

.booking-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
}

.booking-hero span,
.booking-hours span {
    color: var(--commerce-accent);
    font-weight: 900;
    text-transform: uppercase;
}

.booking-hours {
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.booking-hours strong {
    font-size: 26px;
}

.booking-hours em {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    padding: 34px max(28px, calc((100vw - 1180px) / 2)) 56px;
    background: var(--commerce-bg);
}

.booking-form-panel,
.booking-tables-panel {
    min-width: 0;
}

.booking-form-panel {
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background: #ffffff;
}

.booking-form-panel h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

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

.booking-form-grid .full {
    grid-column: 1 / -1;
}

.booking-form-grid label {
    display: block;
    margin-bottom: 7px;
    color: #344054;
    font-weight: 800;
}

.booking-form-grid input,
.booking-form-grid select,
.booking-form-grid textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid #d0d5dd;
    border-radius: 7px;
    padding: 10px 11px;
    font: inherit;
}

.booking-form-grid textarea {
    min-height: 96px;
}

.booking-form-panel button {
    margin-top: 16px;
}

.booking-table-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.booking-table-card {
    min-height: 156px;
    display: grid;
    align-content: space-between;
    gap: 8px;
    padding: 17px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background: #ffffff;
}

.booking-table-card span {
    color: #667085;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.booking-table-card strong {
    font-size: 30px;
}

.booking-table-card p {
    margin: 0;
}

.booking-table-card em {
    color: var(--commerce-primary);
    font-style: normal;
    font-weight: 900;
}

.booking-note {
    display: grid;
    gap: 6px;
    margin-top: 16px;
    padding: 16px;
    border-left: 4px solid var(--axsend-cobalt);
    background: #eef2ff;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 1080px) {
    .buyer-dashboard-hero,
    .buyer-metrics,
    .buyer-dashboard-grid,
    .grid.four,
    .grid.three,
    .commerce-grid,
    .booking-layout,
    .booking-hero,
    .stat-ribbon-inner,
    .solution-grid,
    .story-grid,
    .tenant-showcase-grid,
    .product-highlight-grid,
    .updates-grid,
    .showcase-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .commerce-editorial,
    .commerce-product,
    .commerce-footer,
    .about-band,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .about-copy {
        padding: 44px 30px;
    }
}

@media (max-width: 860px) {
    .site-nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 20px;
        gap: 0;
    }

    .site-nav > .brand {
        min-height: 42px;
        padding: 4px 0;
    }

    .site-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: 8px;
    }

    .site-links > a {
        min-height: 40px;
        padding: 10px 4px;
        border-radius: 7px;
    }

    .site-dropdown {
        flex-direction: column;
        align-items: stretch;
    }

    .site-dropdown > a {
        min-height: 40px;
        padding: 10px 4px;
        border-radius: 7px;
    }

    .site-dropdown > a::after {
        display: none;
    }

    .site-dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(255,255,255,0.04);
        padding: 4px 0 4px 16px;
        margin-bottom: 4px;
        transition: none;
    }

    .actions {
        width: 100%;
        flex-wrap: wrap;
        padding: 8px 0 4px;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: 4px;
        gap: 8px;
    }

    .section-head,
    .page-head,
    .toolbar,
    .buyer-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-hero {
        min-height: 570px;
    }

    .hero-title {
        font-size: 40px;
    }

    .corporate-hero {
        min-height: 640px;
        padding: 96px 22px 70px;
    }

    .corporate-hero .hero-title,
    .about-copy h2,
    .feature-showcase h2,
    .updates-band h2,
    .landing-cta h2 {
        font-size: 34px;
    }

    .stat-ribbon {
        margin-top: 0;
        padding: 18px 18px 8px;
    }

    .stat-ribbon-inner,
    .solution-grid,
    .story-grid,
    .tenant-showcase-grid,
    .product-highlight-grid,
    .updates-grid,
    .showcase-list {
        grid-template-columns: 1fr;
    }

    .stat-ribbon-inner > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat-ribbon-inner > div:last-child {
        border-bottom: 0;
    }

    .corporate-section,
    .feature-showcase,
    .updates-band {
        padding: 40px 18px;
    }

    .auth-scene,
    .buyer-shell,
    .buyer-dashboard-hero,
    .buyer-metrics,
    .buyer-dashboard-grid,
    .grid.four,
    .grid.three,
    .grid.two,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .auth-art {
        min-height: 260px;
        padding: 28px;
    }

    .auth-art-stats {
        grid-template-columns: 1fr;
    }

    .buyer-sidebar {
        position: static;
        height: auto;
    }

    .buyer-brand {
        grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
        align-items: stretch;
    }

    .buyer-logo {
        height: 42px;
    }

    .buyer-page {
        padding: 20px 16px 36px;
    }

    .buyer-hero-copy,
    .buyer-hero-card {
        min-height: auto;
    }

    .buyer-hero-copy h1 {
        font-size: 28px;
    }

    .commerce-header {
        position: static;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 18px;
    }

    .commerce-meta,
    .commerce-actions,
    .commerce-cats {
        justify-content: center;
    }

    .commerce-hero {
        min-height: 560px;
    }

    .commerce-hero-copy h1 {
        font-size: 42px;
    }

    .commerce-editorial,
    .commerce-product,
    .commerce-search,
    .commerce-footer,
    .commerce-grid,
    .booking-layout,
    .booking-hero,
    .booking-form-grid,
    .booking-table-grid {
        grid-template-columns: 1fr;
    }

    .commerce-section-head,
    .commerce-page-hero,
    .commerce-life,
    .landing-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .showcase-window {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 160px);
    }

    .showcase-window div:first-child {
        grid-row: auto;
    }

    .commerce-product-info {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .buyer-brand,
    .buyer-hero-stats,
    .buyer-order-row,
    .buyer-notice-row {
        grid-template-columns: 1fr;
    }

    .buyer-dashboard-hero {
        padding: 18px;
    }

    .buyer-hero-actions,
    .buyer-topbar .actions {
        width: 100%;
    }

    .buyer-hero-actions .button,
    .buyer-topbar .actions .button {
        width: 100%;
    }

    .auth-card {
        padding: 22px;
    }

    .auth-art h1 {
        font-size: 30px;
    }
}
