:root {
    --shell-max: 1280px;
    --page-gutter: clamp(1rem, 2vw, 1.5rem);
    --radius-xl: 1.5rem;
    --radius-lg: 1.05rem;
    --radius-md: 0.85rem;
    --shadow-soft: 0 12px 30px rgba(15, 94, 168, 0.08);
    --shadow-card: 0 10px 24px rgba(15, 94, 168, 0.08);
    --shadow-hover: 0 16px 36px rgba(15, 94, 168, 0.14);
    --shadow-header: 0 8px 20px rgba(15, 23, 42, 0.06);
    --font-heading: "Montserrat", "Segoe UI", Arial, sans-serif;
    --font-body: "Open Sans", "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top right, rgba(60, 148, 232, 0.12), transparent 24%),
        linear-gradient(180deg, #f7faff 0%, var(--bg) 20%, var(--bg) 100%);
    color: var(--text);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

.honeypot-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.progress {
    position: fixed;
    inset: 0 0 auto;
    height: 3px;
    z-index: 120;
    background: rgba(15, 94, 168, 0.08);
}

.progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform-origin: 0 50%;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--primary), var(--support));
}

.grid-overlay {
    display: none;
}

.shell {
    min-height: 100vh;
}

.header-shell,
.section-inner,
.footer-inner,
.crumbs {
    width: min(var(--shell-max), calc(100vw - (var(--page-gutter) * 2)));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.utility-bar {
    background: #1f2937;
}

.utility-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
}

.utility-bar-copy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
}

.utility-bar-copy a,
.utility-bar-copy span {
    color: inherit;
}

.utility-bar-copy a:hover {
    color: #fff;
}

.utility-divider {
    opacity: 0.5;
}

.header-main {
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    background: #fff;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 78px;
}

.secondary-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
}

.brand-symbol {
    width: 100%;
    height: 100%;
}

.brand-copy {
    display: grid;
    gap: 0.18rem;
}

.brand-copy strong,
.brand-copy span {
    display: block;
}

.brand-copy strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
}

.brand-copy span {
    color: var(--muted);
    font-size: 0.8rem;
}

.secondary-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.65rem 0.95rem;
    border-radius: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 180ms ease, background 180ms ease;
}

.secondary-nav-link:hover {
    color: #1e3a8a;
}

.secondary-nav-link.cta,
.button.primary {
    color: #fff;
    border: 0;
    background: #2c6fc4;
    box-shadow: none;
}

.secondary-nav-link.cta:hover,
.button.primary:hover {
    color: #fff;
    background: #1f5cab;
}

.category-bar {
    background: #2c6fc4;
    border-top: 0;
}

.category-bar-inner {
    display: flex;
    align-items: center;
}

.category-nav {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.nav-group {
    position: relative;
}

.category-nav-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.98);
    font-size: 0.94rem;
    font-weight: 700;
    white-space: nowrap;
}

.category-nav-link:hover,
.category-nav-group:hover > .category-nav-link {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.category-nav-link.view-all {
    margin-left: auto;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-label {
    display: inline-flex;
    align-items: center;
}

.caret {
    font-size: 0.7rem;
    opacity: 0.8;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 760px;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 0 0 1rem 1rem;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu {
    min-width: min(860px, calc(100vw - 3rem));
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.mega-column {
    display: grid;
    gap: 0.7rem;
    padding: 0.25rem;
}

.mega-heading {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.mega-links {
    display: grid;
    gap: 0.35rem;
}

.mega-link {
    display: block;
    padding: 0.78rem 0.85rem;
    border-radius: 0.9rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.mega-link:hover {
    background: var(--surface-alt);
    color: var(--primary);
}

.header-toggle,
.nav-toggle,
.mobile-expand {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    border-radius: 0.8rem;
    cursor: pointer;
}

.header-toggle,
.nav-toggle {
    display: none;
    min-height: 42px;
    padding: 0.75rem 1rem;
    font-weight: 700;
}

.mobile-panel {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
}

.mobile-panel[hidden] {
    display: none !important;
}

.mobile-panel-inner {
    display: grid;
    gap: 0.85rem;
    padding: 0.9rem 0 1rem;
}

.mobile-contact-card {
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
    border-radius: 1rem;
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface-alt) 72%, white 28%), #fff);
}

.mobile-contact-card strong {
    font-family: var(--font-heading);
    font-size: 1rem;
}

.mobile-contact-card span,
.mobile-contact-card a {
    color: var(--muted);
    font-size: 0.9rem;
}

.mobile-link-wrap,
.mobile-link,
.mobile-link-row {
    width: 100%;
}

.mobile-link-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
    align-items: stretch;
}

.mobile-link,
.mobile-child {
    display: block;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    background: #fff;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
}

.mobile-expand {
    width: 3rem;
    min-height: 100%;
}

.mobile-expand[aria-expanded="true"] span {
    display: inline-block;
    transform: rotate(180deg);
}

.mobile-children {
    display: grid;
    gap: 0.5rem;
    padding: 0.65rem 0 0 0.8rem;
}

.mobile-children[hidden] {
    display: none !important;
}

.mobile-child {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
}

.mobile-children-heading {
    padding: 0.2rem 0.5rem 0.1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    padding: 1rem 0 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.crumbs a:hover {
    color: var(--primary);
}

.hero {
    padding: clamp(1rem, 2vw, 1.4rem) 0 0;
}

.page-hero {
    padding: 1.15rem 0 0;
}

.page-hero-content {
    padding: 1.8rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(15, 94, 168, 0.96), rgba(30, 120, 200, 0.9)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 28%);
    color: #fff;
    box-shadow: var(--shadow-card);
}

.page-hero.compact .page-hero-content {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-content h1 {
    margin: 1rem 0 0;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.page-hero-content p {
    margin-top: 1rem;
    max-width: 52rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.92fr);
    gap: 1.35rem;
    align-items: stretch;
}

.hero-home .hero-grid {
    grid-template-columns: 1fr;
}

.hero-copy,
.hero-panel,
.card,
.cta-panel,
.form-panel,
.section-stage,
.faq-item,
.notice,
.trust-chip {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.hero-copy,
.hero-panel,
.card,
.cta-panel,
.form-panel,
.section-stage {
    padding: clamp(1.25rem, 2vw, 1.7rem);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 520px;
    background:
        linear-gradient(135deg, rgba(15, 94, 168, 0.96), rgba(30, 120, 200, 0.9)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 30%);
    color: #fff;
}

.hero-copy-home {
    min-height: 640px;
    padding: clamp(2rem, 5vw, 4rem);
    justify-content: center;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background:
        linear-gradient(90deg, rgba(10, 22, 43, 0.88) 0%, rgba(10, 22, 43, 0.72) 36%, rgba(10, 22, 43, 0.36) 72%, rgba(10, 22, 43, 0.16) 100%),
        linear-gradient(135deg, rgba(17, 77, 163, 0.18), rgba(17, 77, 163, 0.04)),
        var(--hero-image, linear-gradient(135deg, rgba(15, 94, 168, 0.96), rgba(30, 120, 200, 0.9)));
    background-size: cover;
    background-position: center;
}

.hero-inner .hero-copy {
    min-height: 380px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 2rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.5;
}

.hero-copy .eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

.hero-copy h1 {
    margin: 1rem 0 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.9rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    max-width: 12ch;
}

.hero-inner .hero-copy h1 {
    font-size: clamp(2.35rem, 4vw, 3.6rem);
    max-width: 15ch;
}

.hero-copy p {
    margin: 1.1rem 0 0;
    max-width: 44rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.04rem;
    line-height: 1.75;
}

.hero-copy-home h1 {
    max-width: 9ch;
    font-size: clamp(3.2rem, 6vw, 5.3rem);
}

.hero-copy-home p {
    max-width: 34rem;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.95rem 1.35rem;
    border-radius: 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-contact-line {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.6rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
}

.hero-contact-line a {
    color: #fff;
    font-weight: 800;
}

.button.tertiary,
.nav-toggle {
    border: 1px solid var(--line);
    background: var(--surface-alt);
    color: var(--text);
}

.hero-support {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.hero-support-item {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.4;
}

.hero-panel strong,
.hero-stat strong,
.metric strong {
    font-family: var(--font-heading);
}

.hero-panel strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.15;
}

.hero-panel span {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    line-height: 1.7;
}

.hero-media {
    margin-bottom: 1rem;
}

.image-frame {
    aspect-ratio: 16 / 10.5;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f7fbff, #e9f2fb);
}

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

.collection-card-media,
.product-card .image-frame {
    aspect-ratio: 1 / 1;
}

.product-card .image-frame,
.product-media,
.gallery-thumb {
    background: linear-gradient(180deg, #ffffff, #eef4fb);
}

.product-card .image-frame img,
.product-media img,
.gallery-thumb img {
    object-fit: contain;
    padding: 0.85rem;
}

.hero-stat-grid,
.metrics,
.hero-highlights {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

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

.hero-stat,
.metric,
.hero-highlight {
    padding: 0.95rem 1rem;
    border-radius: 0.95rem;
    background: var(--surface-alt);
}

.hero-stat span,
.metric span,
.hero-highlight span,
.meta {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat strong,
.metric strong,
.hero-highlight strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.98rem;
    color: var(--text);
}

.category-rail {
    padding: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: #fff;
}

.pill-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    overflow-x: auto;
    padding: 0.95rem 0;
    scrollbar-width: thin;
}

.pill-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d3dbe6;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: none;
}

.pill-link:hover,
.pill-link.view-all {
    color: var(--primary);
    border-color: rgba(15, 94, 168, 0.18);
    background: rgba(255, 255, 255, 0.95);
}

.shop-shell {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.shop-search {
    display: flex;
    flex: 1 1 680px;
    gap: 0.8rem;
    align-items: stretch;
}

.search-field {
    position: relative;
    flex: 1 1 auto;
}

.search-field input {
    width: 100%;
    min-height: 3.1rem;
    border: 1px solid var(--line);
    border-radius: 0.95rem;
    background: #fff;
    color: var(--text);
    padding: 0.95rem 1rem;
    box-shadow: 0 4px 14px rgba(15, 94, 168, 0.05);
}

.shop-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.shop-sidebar {
    padding: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.shop-sidebar h2 {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-menu {
    display: grid;
    gap: 0.35rem;
    margin-top: 1rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem 0.9rem;
    border-radius: 0.8rem;
    color: color-mix(in srgb, var(--text) 82%, white 18%);
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 180ms ease, color 180ms ease;
}

.category-link:hover {
    background: var(--surface-alt);
    color: var(--primary);
}

.category-link.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.category-link small {
    font-size: 0.76rem;
    opacity: 0.75;
}

.shop-results {
    min-width: 0;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 94, 168, 0.08);
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 700;
}

.product-badge {
    position: absolute;
    top: 0.65rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 1;
}

.primary-badge {
    left: 0.65rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.secondary-badge {
    right: 0.65rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary);
}

.pagination-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.pagination-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7rem;
    min-width: 6.5rem;
    padding: 0.7rem 1rem;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    background: #fff;
    color: var(--text);
    font-weight: 700;
}

.pagination-button.disabled {
    opacity: 0.45;
}

.pagination-status {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.empty-state {
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.section {
    padding: clamp(1.1rem, 2vw, 1.5rem) 0;
}

.section-muted {
    background: rgba(15, 94, 168, 0.04);
}

.section-stage {
    background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}

.section-head {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    max-width: 52rem;
}

.section-kicker {
    color: var(--primary);
}

.card-meta {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 2rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(44, 111, 196, 0.08);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.centered,
.center-text {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

.narrow-content {
    width: min(860px, 100%);
}

.prose-block {
    display: grid;
    gap: 1rem;
}

h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--text);
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.04rem;
    line-height: 1.35;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.trust-bar {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 1.1rem 1.25rem;
    border: 0;
    border-radius: 0;
    background: #2c6fc4;
    box-shadow: none;
}

.trust-chip {
    padding: 0.2rem 0.3rem;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.trust-chip strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.4;
}

.trust-chip span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    line-height: 1.55;
}

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

.domain-carousel {
    display: grid;
    gap: 1rem;
}

.domain-carousel-shell {
    overflow: hidden;
    border: 1px solid #dbe3ee;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.domain-carousel-track {
    display: flex;
    transition: transform 320ms ease;
    will-change: transform;
}

.domain-carousel-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.2rem;
    align-items: stretch;
    min-height: 360px;
    padding: 1rem;
}

.domain-carousel-media {
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f4f8fd, #e7f0fb);
}

.domain-carousel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.domain-carousel-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
    padding: clamp(1.1rem, 2vw, 1.5rem);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(44, 111, 196, 0.06), rgba(44, 111, 196, 0.02));
}

.domain-carousel-kicker {
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.domain-carousel-copy h3 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.domain-carousel-copy p {
    max-width: 34rem;
    font-size: 1rem;
}

.domain-carousel-meta {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 2.25rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(44, 111, 196, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.domain-carousel-cta {
    width: fit-content;
    margin-top: 0.15rem;
}

.domain-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.domain-carousel-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

.domain-carousel-button,
.domain-carousel-dot {
    border: 1px solid #cfd9e6;
    background: #fff;
    color: var(--text);
    cursor: pointer;
}

.domain-carousel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.domain-carousel-button:hover,
.domain-carousel-dot:hover,
.domain-carousel-dot.is-active {
    border-color: rgba(44, 111, 196, 0.28);
    background: rgba(44, 111, 196, 0.08);
    color: var(--primary);
}

.domain-carousel-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    padding: 0;
}

.feature-split-grid,
.branding-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.icon-card {
    align-items: flex-start;
}

.centered-card {
    align-items: center;
    text-align: center;
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-color: #dbe3ee;
    border-radius: 1rem;
    box-shadow: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.collection-card {
    overflow: hidden;
}

.card:hover {
    transform: translateY(-2px);
    border-color: #c6d5e8;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

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

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
}

.product-card .image-frame,
.card .image-frame {
    margin: -0.15rem -0.15rem 0;
}

.product-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-tile {
    padding: 0;
    overflow: hidden;
}

.product-tile-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-media {
    background: linear-gradient(180deg, #f7fbff, #eef5fd);
}

.product-media.large {
    aspect-ratio: 1 / 1;
}

.product-tile-body {
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
    height: 100%;
}

.product-category {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-tile-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    margin-top: auto;
    color: var(--muted);
    font-size: 0.85rem;
}

.product-price {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
}

.product-price.large {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.68rem;
    border-radius: 999px;
    background: rgba(15, 94, 168, 0.08);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.meta {
    margin-top: -0.15rem;
}

.list {
    display: grid;
    gap: 0.8rem;
}

.list-item {
    padding: 1rem 1.05rem 1rem 1.15rem;
    border-left: 4px solid var(--primary);
    border-radius: 0 0.95rem 0.95rem 0;
    background: var(--surface-alt);
    color: var(--text);
    line-height: 1.65;
}

.cta-panel {
    border: 0;
    border-radius: 0;
    background: linear-gradient(135deg, #2c6fc4, #4388de);
    color: #fff;
    box-shadow: none;
}

.cta-panel h2,
.cta-panel p {
    color: #fff;
}

.faq-grid {
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    padding: 1rem 1.1rem;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item div {
    margin-top: 0.7rem;
    color: var(--muted);
}

.form-panel {
    background: #fff;
}

.notice {
    padding: 0.95rem 1rem;
    margin-bottom: 1rem;
}

.notice.success {
    border-left: 4px solid #0ea35b;
}

.notice.error {
    border-left: 4px solid #d9485f;
}

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

.field {
    display: grid;
    gap: 0.45rem;
}

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

label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text);
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    background: #fff;
    color: var(--text);
    padding: 0.95rem 1rem;
}

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

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(15, 94, 168, 0.18);
    border-color: rgba(15, 94, 168, 0.35);
}

.field.error input,
.field.error textarea,
.field.error select {
    border-color: #d9485f;
}

.error-text {
    color: #d9485f;
    font-size: 0.8rem;
}

.form-actions {
    margin-top: 1rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.2fr);
    gap: 1.35rem;
    align-items: start;
}

.contact-sidebar,
.contact-form-wrap {
    min-width: 0;
}

.info-grid {
    display: grid;
    gap: 0.9rem;
}

.info-card {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.05rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.info-card strong {
    font-family: var(--font-heading);
    font-size: 0.92rem;
}

.info-card span,
.info-card a {
    color: var(--muted);
    line-height: 1.6;
}

.footer {
    margin-top: 2.25rem;
    padding: 3.5rem 0 1.25rem;
    background: linear-gradient(180deg, #163252 0%, #0f2237 100%);
    color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(280px, 1.25fr) repeat(4, minmax(150px, 1fr));
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy span,
.footer p,
.footer a,
.footer h3,
.footer small,
.footer span {
    color: inherit;
}

.footer p {
    margin-top: 1rem;
    line-height: 1.75;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
}

.footer-actions {
    margin-top: 1.2rem;
}

.footer-column h3 {
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.footer-links {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
}

.footer-links a:hover,
.footer-meta a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.86rem;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(15, 23, 42, 0.56);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.quote-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 131;
}

.quote-modal {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 132;
    width: min(580px, calc(100vw - 1rem));
    transform: translate(-50%, 105%);
    transition: transform 220ms ease;
}

.quote-modal.is-open {
    transform: translate(-50%, 0);
}

.modal-close {
    display: inline-flex;
    margin-bottom: 1rem;
}

.product-page {
    padding-top: 1.25rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 1.35rem;
    align-items: start;
}

.product-visual,
.product-detail-panel,
.product-detail-stack {
    min-width: 0;
}

.product-detail-stack {
    display: grid;
    gap: 1rem;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
    gap: 0.75rem;
    margin-top: 0.85rem;
}

.gallery-thumb {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.95rem;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 0.55rem;
}

.product-detail-panel {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.product-detail-panel h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.product-summary {
    font-size: 1rem;
    color: var(--muted);
}

.product-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.8rem 1rem;
    color: var(--muted);
}

.product-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 600;
}

.product-quote-box {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 1rem;
    background: var(--surface-alt);
}

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

.quote-cell {
    display: grid;
    gap: 0.4rem;
}

.quote-cell label {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--muted);
}

.quote-cell input,
.quote-value {
    min-height: 46px;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.75rem;
    background: #fff;
    color: var(--text);
    font-weight: 700;
}

.product-quote-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 0.75rem;
}

.product-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.product-contact-row a {
    color: var(--primary);
}

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

.product-assurance-card {
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.product-assurance-card h3 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.product-assurance-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.product-copy {
    display: grid;
    gap: 0.7rem;
    padding-top: 0.35rem;
}

.product-description-copy {
    color: var(--muted);
    line-height: 1.75;
}

.product-description-copy p {
    margin-bottom: 0.85rem;
}

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

.product-badges .pill-link {
    min-height: 2.35rem;
    padding: 0.55rem 0.85rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body[data-layout-variant="editorial"] .masthead-note {
    background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 16%, white 84%), transparent);
}

body[data-layout-variant="editorial"] .hero-grid {
    grid-template-columns: minmax(0, 1fr);
}

body[data-layout-variant="editorial"] .hero-copy {
    min-height: 460px;
}

body[data-layout-variant="editorial"] .hero-panel {
    max-width: 560px;
    margin: -3.25rem 0 0 auto;
    background: color-mix(in srgb, var(--surface) 80%, white 20%);
}

body[data-layout-variant="editorial"] .section-stage,
body[data-layout-variant="editorial"] .card {
    border-radius: 1.8rem;
}

body[data-layout-variant="catalog-first"] .hero-grid {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.15fr);
}

body[data-layout-variant="catalog-first"] .hero-copy {
    order: 2;
    min-height: 460px;
}

body[data-layout-variant="catalog-first"] .hero-panel {
    order: 1;
    background: linear-gradient(180deg, var(--surface-alt), #fff);
}

body[data-layout-variant="catalog-first"] .category-rail {
    padding-top: 1.4rem;
}

body[data-layout-variant="industrial"] .hero-copy,
body[data-layout-variant="industrial"] .hero-panel,
body[data-layout-variant="industrial"] .card,
body[data-layout-variant="industrial"] .section-stage,
body[data-layout-variant="industrial"] .cta-panel,
body[data-layout-variant="industrial"] .shop-sidebar,
body[data-layout-variant="industrial"] .product-detail-panel {
    border-radius: 0.8rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

body[data-layout-variant="industrial"] .hero-copy {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, black 8%), color-mix(in srgb, var(--secondary) 88%, black 12%)),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
}

body[data-layout-variant="industrial"] .section-kicker,
body[data-layout-variant="industrial"] .eyebrow {
    letter-spacing: 0.18em;
}

body[data-layout-variant="boutique"] .hero-copy {
    min-height: 540px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 32%),
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 88%, white 12%), color-mix(in srgb, var(--secondary) 86%, white 14%));
}

body[data-layout-variant="boutique"] .hero-panel,
body[data-layout-variant="boutique"] .card,
body[data-layout-variant="boutique"] .section-stage {
    border-radius: 2rem;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

body[data-layout-variant="boutique"] .pill-link,
body[data-layout-variant="boutique"] .filter-chip {
    border-radius: 999px;
}

body[data-layout-variant="athletic"] .hero-copy {
    min-height: 500px;
    background:
        linear-gradient(120deg, color-mix(in srgb, var(--primary) 94%, black 6%) 0%, color-mix(in srgb, var(--secondary) 94%, black 6%) 48%, color-mix(in srgb, var(--support) 90%, white 10%) 100%);
}

body[data-layout-variant="athletic"] .hero-grid {
    gap: 1rem;
}

body[data-layout-variant="athletic"] .hero-support-item,
body[data-layout-variant="athletic"] .hero-stat,
body[data-layout-variant="athletic"] .metric,
body[data-layout-variant="athletic"] .hero-highlight {
    background: color-mix(in srgb, var(--surface-alt) 88%, white 12%);
}

body[data-layout-variant="athletic"] .button.primary,
body[data-layout-variant="athletic"] .nav-link.cta {
    box-shadow: 0 14px 28px color-mix(in srgb, var(--primary) 26%, transparent);
}

@media (max-width: 1120px) {
    .footer-grid {
        grid-template-columns: minmax(260px, 1.1fr) repeat(2, minmax(180px, 1fr));
    }

    .footer-column:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 960px) {
    .secondary-nav,
    .category-bar {
        display: none;
    }

    .header-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-grid,
    .shop-layout,
    .contact-layout,
    .product-detail-grid,
    .product-quote-grid,
    .product-assurance-grid,
    .domain-carousel-slide,
    .footer-grid,
    .trust-bar {
        grid-template-columns: 1fr;
    }

    body[data-layout-variant="catalog-first"] .hero-copy,
    body[data-layout-variant="catalog-first"] .hero-panel {
        order: initial;
    }

    body[data-layout-variant="editorial"] .hero-panel {
        margin-top: 0;
        max-width: none;
    }

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

    .footer-column:last-child {
        grid-column: auto;
    }

    .utility-bar-inner,
    .header-main-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

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

@media (max-width: 720px) {
    .header-main-inner {
        min-height: 74px;
    }

    .brand-copy span {
        display: none;
    }

    .hero-copy,
    .hero-panel,
    .card,
    .cta-panel,
    .form-panel,
    .section-stage,
    .domain-carousel-slide {
        padding: 1.15rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 10vw, 3.1rem);
    }

    .hero-copy p {
        font-size: 0.98rem;
    }

    .hero-support,
    .hero-stat-grid,
    .metrics,
    .form-grid,
    .cards,
    .feature-split-grid,
    .branding-grid {
        grid-template-columns: 1fr;
    }

    .shop-search,
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .footer {
        padding-top: 2.8rem;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .header-shell,
    .section-inner,
    .footer-inner,
    .crumbs {
        width: min(var(--shell-max), calc(100vw - 1rem));
    }

    .utility-bar-copy {
        width: 100%;
        font-size: 0.74rem;
    }

    .button,
    .button.primary,
    .button.secondary,
    .button.tertiary {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .quote-fab {
        right: 12px;
        left: 12px;
        bottom: 12px;
    }

    .quote-fab.button {
        width: auto;
    }

    .domain-carousel-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
