:root {
    --bg: #f4f1eb;
    --surface: #fffdf9;
    --surface-strong: #ffffff;
    --surface-muted: #efe8de;
    --text: #1b1f24;
    --text-soft: #49515b;
    --line: #d7cfc2;
    --brand: #a33a1c;
    --brand-dark: #7e2d16;
    --accent: #304560;
    --success: #1d6b43;
    --error: #8c2e2b;
    --info: #305e8a;
    --shadow: 0 18px 40px rgba(28, 31, 35, 0.08);
    --radius: 1.25rem;
    --radius-sm: 0.875rem;
    --wrapper: min(1120px, calc(100% - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(180deg, #faf7f2 0%, var(--bg) 100%);
}

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

a:hover {
    color: var(--brand-dark);
}

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

button,
input,
select,
textarea {
    border-radius: 0.85rem;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(163, 58, 28, 0.32);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--text);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0 0 0.75rem 0.75rem;
    z-index: 20;
}

.skip-link:focus {
    top: 0;
}

.wrapper {
    width: var(--wrapper);
    margin: 0 auto;
}

.announcement {
    background: #261d18;
    color: #f6efe4;
    font-size: 0.95rem;
    padding: 0.75rem 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(70, 56, 46, 0.08);
}

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.brand strong,
.footer-inner strong {
    display: block;
    font-size: 1.02rem;
}

.brand small {
    color: var(--text-soft);
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #f16f3d, #8d2200);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.nav-toggle {
    display: none;
}

.site-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: rgba(163, 58, 28, 0.08);
    color: var(--brand-dark);
}

.cart-badge {
    min-width: 1.55rem;
    height: 1.55rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: var(--brand);
    color: #fff;
    font-size: 0.8rem;
}

.site-main {
    padding-bottom: 4rem;
}

.section,
.hero {
    padding: 2.5rem 0 1rem;
}

.section-tight {
    padding: 1rem 0 0;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
    gap: 1.5rem;
    align-items: center;
}

.hero h1,
.section h1,
.section h2,
.product-details h1 {
    line-height: 1.1;
    margin: 0;
}

.hero h1 {
    font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.section h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.section h2,
.product-details h2,
.summary-card h2,
.hero-panel h2 {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    margin-bottom: 0.75rem;
}

p {
    margin: 0 0 1rem;
    color: var(--text-soft);
}

.eyebrow {
    margin: 0 0 0.55rem;
    color: var(--brand-dark);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-actions,
.cart-actions,
.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.button,
.button-secondary,
.button-ghost,
.text-link {
    transition: 0.2s ease;
}

.button,
.button-secondary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.button {
    color: #fff;
    background: var(--brand);
}

.button:hover {
    background: var(--brand-dark);
    color: #fff;
}

.button-secondary {
    color: var(--brand-dark);
    background: rgba(163, 58, 28, 0.08);
    border-color: rgba(163, 58, 28, 0.1);
}

.button-secondary:hover,
.button-ghost:hover {
    background: rgba(163, 58, 28, 0.14);
}

.button-ghost {
    color: var(--text);
    background: transparent;
    border-color: var(--line);
}

.button-small {
    padding: 0.65rem 0.95rem;
    font-size: 0.92rem;
}

.text-link {
    color: var(--brand-dark);
    font-weight: 700;
}

.check-list,
.bullet-list,
.steps-list {
    margin: 1.1rem 0 0;
    padding-left: 1.2rem;
}

.compact-steps {
    margin-top: 0.85rem;
}

.compact-steps li:last-child {
    margin-bottom: 0;
}

.check-list li,
.bullet-list li,
.steps-list li {
    margin-bottom: 0.7rem;
}

.card {
    background: var(--surface-strong);
    border: 1px solid rgba(60, 48, 37, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.35rem;
}

.card-subtle {
    background: var(--surface);
    box-shadow: none;
    border-style: dashed;
}

.hero-panel {
    align-self: stretch;
}

.stats-grid,
.summary-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
    margin: 1rem 0 0;
}

.stats-grid div,
.summary-list div {
    padding: 0.95rem;
    background: var(--surface-muted);
    border-radius: 1rem;
}

.stats-grid dt,
.summary-list dt {
    color: var(--text-soft);
    font-size: 0.88rem;
}

.stats-grid dd,
.summary-list dd {
    margin: 0.3rem 0 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
}

.muted {
    color: var(--text-soft);
}

.cta-note {
    margin: 0.65rem 0 0;
    font-size: 0.94rem;
    color: var(--text-soft);
}

.hero-copy .cta-note {
    max-width: 44rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.stack-on-mobile {
    align-items: center;
}

.result-count {
    font-weight: 700;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.product-media,
.product-showcase,
.mini-media {
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-media {
    min-height: 160px;
    font-size: 2rem;
}

.product-showcase {
    min-height: 420px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: clamp(3.5rem, 8vw, 6rem);
}

.mini-media {
    width: 3.4rem;
    min-width: 3.4rem;
    height: 3.4rem;
    border-radius: 1rem;
    font-size: 0.95rem;
}

.accent-sunrise {
    background: linear-gradient(135deg, #ff8b53, #a43617);
}

.accent-forest {
    background: linear-gradient(135deg, #5fb78e, #245a49);
}

.accent-midnight {
    background: linear-gradient(135deg, #5b6d92, #1f2942);
}

.accent-ocean {
    background: linear-gradient(135deg, #61b6df, #235d84);
}

.accent-violet {
    background: linear-gradient(135deg, #af80ff, #5531a5);
}

.accent-copper {
    background: linear-gradient(135deg, #f0a16d, #90411f);
}

.product-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.2rem;
    height: 100%;
}

.product-body h3,
.cart-product h2 {
    margin: 0;
    font-size: 1.25rem;
}

.product-tagline {
    color: var(--text);
    font-weight: 700;
    margin: -0.2rem 0 0;
}

.card-kicker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.proof-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    background: rgba(48, 69, 96, 0.08);
    border: 1px solid rgba(48, 69, 96, 0.12);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.product-card-copy,
.product-card-subnote {
    margin: 0;
}

.product-card-copy {
    font-size: 0.98rem;
}

.product-card-subnote {
    color: var(--text-soft);
    font-size: 0.88rem;
}

.product-meta {
    display: grid;
    gap: 0.7rem;
    margin: 0;
}

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

.compact-meta-tight div {
    padding: 0.72rem 0.85rem;
}

.product-meta div {
    padding: 0.8rem 0.9rem;
    border-radius: 1rem;
    background: var(--surface-muted);
}

.product-meta dt {
    font-size: 0.82rem;
    color: var(--text-soft);
}

.product-meta dd {
    margin: 0.35rem 0 0;
    font-weight: 700;
}

.chip-row,
.category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.chip,
.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(48, 69, 96, 0.09);
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.category-pill:hover {
    background: rgba(163, 58, 28, 0.12);
}

.product-footer {
    margin-top: auto;
    display: grid;
    gap: 0.85rem;
}

.price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: baseline;
    margin: 1rem 0;
}

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

.proof-strip div,
.proof-callout {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f3faff 0%, #eef8ff 100%);
    border: 2px solid rgba(51, 102, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.proof-strip strong,
.proof-callout strong {
    display: block;
    margin-bottom: 0.28rem;
    color: var(--text);
}

.proof-strip span {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.detail-columns-proof {
    align-items: start;
}

.proof-callout p {
    margin: 0;
}

.price {
    font-size: 1.6rem;
    color: var(--text);
}

.inline-cart-form,
.product-cart-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: end;
}

.quantity-input,
input[type="search"],
input[type="text"],
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    padding: 0.78rem 0.9rem;
    color: var(--text);
}

.quantity-input {
    width: 5.2rem;
    text-align: center;
}

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

.field-wide {
    min-width: min(100%, 320px);
}

.inline-field {
    width: max-content;
}

.filter-form {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.5rem;
}

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

.section-alt {
    background: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(60, 48, 37, 0.08);
    border-bottom: 1px solid rgba(60, 48, 37, 0.08);
    margin-top: 2rem;
}

.split-grid,
.detail-columns,
.narrow-stack {
    display: grid;
    gap: 1rem;
}

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

.split-grid-balanced {
    align-items: stretch;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--text-soft);
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.25rem;
    align-items: start;
}

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

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

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

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.trust-strip .card h3,
.request-prep h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
}

.faq-list details {
    padding: 0;
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    padding: 1.2rem 1.25rem;
    list-style: none;
}

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

.faq-list details p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
}

.flash-wrap {
    padding-top: 1rem;
}

.flash {
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    font-weight: 700;
}

.flash--success {
    background: rgba(29, 107, 67, 0.12);
    color: var(--success);
}

.flash--error {
    background: rgba(140, 46, 43, 0.12);
    color: var(--error);
}

.flash--info {
    background: rgba(48, 94, 138, 0.12);
    color: var(--info);
}

.cart-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 1rem;
    align-items: start;
}

.cart-card {
    padding: 1rem;
}

.cart-table {
    display: grid;
    gap: 0.8rem;
}

.cart-header,
.cart-row {
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) 0.7fr 0.7fr 0.8fr auto;
    gap: 0.8rem;
    align-items: center;
}

.cart-header {
    padding: 0 0.35rem 0.25rem;
    font-size: 0.85rem;
    color: var(--text-soft);
    font-weight: 700;
}

.cart-row {
    padding: 1rem;
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid rgba(60, 48, 37, 0.08);
}

.cart-product {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.cart-product p,
.footer-inner p {
    margin: 0;
}

.row-actions {
    justify-self: start;
}

.summary-card {
    display: grid;
    gap: 1rem;
}

.prototype-form {
    display: grid;
    gap: 0.85rem;
}

.prototype-form fieldset {
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
}

.request-prep {
    margin-top: 0.25rem;
}

.request-prep .bullet-list {
    margin-top: 0.75rem;
}

.choice {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.65rem;
}

.prototype-note {
    margin: 0;
    padding: 0.95rem 1rem;
    background: rgba(48, 94, 138, 0.08);
    border-radius: 1rem;
    color: var(--text);
}

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

.request-brief-form {
    display: grid;
    gap: 0.9rem;
}

.choice-group {
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.66);
}

.request-brief-preview-wrap h3 {
    margin: 0 0 0.6rem;
}

.request-brief-preview {
    margin: 0;
    padding: 1rem;
    min-height: 22rem;
    white-space: pre-wrap;
    word-break: break-word;
    background: #172033;
    color: #fff8d6;
    border-radius: 1rem;
    overflow: auto;
    font: 0.92rem/1.55 "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-form {
    display: none;
}

.site-footer {
    border-top: 1px solid rgba(60, 48, 37, 0.08);
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 980px) {
    .hero,
    .product-layout,
    .cart-grid,
    .products-grid,
    .split-grid,
    .detail-columns,
    .trust-strip,
    .request-prep-grid {
        grid-template-columns: 1fr;
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

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

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

    .filter-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .header-inner,
    .footer-inner,
    .section-heading,
    .stack-on-mobile {
        align-items: start;
        flex-direction: column;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.7rem 1rem;
        border: 1px solid var(--line);
        background: var(--surface-strong);
        font-weight: 700;
    }

    .site-nav {
        width: 100%;
        display: none;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a {
        justify-content: space-between;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.72);
    }

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

    .compact-meta,
    .detail-meta,
    .stats-grid,
    .summary-list {
        grid-template-columns: 1fr;
    }

    .card-kicker-row {
        flex-wrap: wrap;
    }

    .cart-header {
        display: none;
    }

    .cart-row {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .cart-row > div {
        display: grid;
        grid-template-columns: minmax(96px, 110px) 1fr;
        gap: 0.8rem;
        align-items: center;
    }

    .cart-row > div::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-soft);
    }

    .cart-product {
        grid-template-columns: none;
    }

    .cart-product::before {
        align-self: start;
    }

    .row-actions {
        justify-self: stretch;
    }

    .row-actions .button {
        width: max-content;
    }
}

@media (max-width: 520px) {
    .wrapper {
        width: min(100% - 1rem, 100%);
    }

    .hero,
    .section {
        padding-top: 1.8rem;
    }

    .button,
    .button-secondary,
    .button-ghost {
        width: 100%;
    }

    .inline-cart-form {
        align-items: stretch;
    }

    .inline-cart-form .button,
    .product-cart-form .button {
        width: auto;
    }
}

/* Phase 3F owner-approved kid-maker visual pass — local review only. */
:root {
    --bg: #fff7d6;
    --surface: #fffaf0;
    --surface-strong: #ffffff;
    --surface-muted: #fff0bf;
    --text: #172033;
    --text-soft: #47516a;
    --line: #ffd166;
    --brand: #ff6b35;
    --brand-dark: #d94f1f;
    --accent: #3366ff;
    --success: #188a55;
    --error: #c43b4d;
    --info: #246bfe;
    --shadow: 0 16px 0 rgba(36, 42, 72, 0.10), 0 22px 42px rgba(36, 42, 72, 0.10);
    --radius: 1.65rem;
    --radius-sm: 1.05rem;
}

body {
    font-family: "Trebuchet MS", Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 209, 102, 0.65) 0 110px, transparent 112px),
        radial-gradient(circle at 92% 12%, rgba(122, 92, 255, 0.18) 0 150px, transparent 152px),
        radial-gradient(circle at 20% 88%, rgba(45, 212, 191, 0.20) 0 160px, transparent 162px),
        linear-gradient(180deg, #fff9df 0%, #f1fbff 56%, #fff3fb 100%);
}

.announcement {
    background: linear-gradient(90deg, #172033, #3b2277, #0f6b8f);
    color: #fff8d6;
    font-weight: 800;
}

.site-header {
    background: rgba(255, 252, 235, 0.9);
    border-bottom: 3px solid rgba(255, 107, 53, 0.2);
}

.brand strong,
.footer-inner strong {
    font-size: 1.12rem;
}

.brand small {
    color: #7b3ff2;
    font-weight: 800;
}

.brand-mark {
    width: 3rem;
    height: 3rem;
    background: conic-gradient(from 180deg, #ff6b35, #ffd166, #31d0aa, #3366ff, #7b3ff2, #ff6b35);
    border: 3px solid #fff;
    box-shadow: 0 7px 0 rgba(23, 32, 51, 0.16);
}

.site-nav a {
    color: #27324a;
    font-weight: 900;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: #fff0bf;
    color: #7b2cff;
    box-shadow: inset 0 -3px 0 #ffd166;
}

.cart-badge {
    background: #2dd4bf;
    color: #10223a;
    font-weight: 900;
}

.hero {
    position: relative;
    padding-top: 3rem;
}

.hero::after {
    content: "★";
    position: absolute;
    right: 3%;
    top: 1.25rem;
    color: #ffd166;
    font-size: clamp(2.5rem, 7vw, 5rem);
    text-shadow: 0 5px 0 rgba(23, 32, 51, 0.12);
    pointer-events: none;
}

.hero h1,
.section h1,
.section h2,
.product-details h1 {
    letter-spacing: -0.04em;
}

.hero h1 {
    color: #172033;
    text-wrap: balance;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 64ch;
    font-size: 1.08rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 1.2rem;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.52rem 0.85rem;
    border: 2px solid rgba(23, 32, 51, 0.08);
    border-radius: 999px;
    background: #fff;
    color: #172033;
    font-weight: 900;
    box-shadow: 0 5px 0 rgba(23, 32, 51, 0.10);
}

.hero-badges span::before {
    content: "✦";
    color: #ff6b35;
}

.eyebrow {
    color: #7b2cff;
    letter-spacing: 0.1em;
}

.card,
.product-showcase {
    border: 3px solid rgba(23, 32, 51, 0.08);
}

.card {
    background: rgba(255, 255, 255, 0.92);
}

.hero-panel.card {
    background: linear-gradient(160deg, #ffffff, #fff4bf 55%, #e4f8ff);
}

.button {
    background: linear-gradient(135deg, #ff6b35, #ff3d81);
    box-shadow: 0 7px 0 #9e2f4f;
    transform: translateY(0);
}

.button:hover {
    background: linear-gradient(135deg, #ff7d45, #ff4f91);
    transform: translateY(-1px);
}

.button-secondary {
    color: #172033;
    background: #ffd166;
    border-color: #f7bd2f;
    box-shadow: 0 6px 0 rgba(160, 111, 0, 0.35);
}

.button-secondary:hover,
.button-ghost:hover {
    background: #ffe08f;
}

.button-ghost {
    background: #ffffff;
    border-color: #ffd166;
    color: #172033;
}

.stats-grid div,
.summary-list div,
.product-meta div {
    background: #fff4c4;
    border: 2px dashed rgba(255, 107, 53, 0.22);
}

.products-grid {
    gap: 1.15rem;
}

.product-card {
    border-radius: 1.85rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
    transform: translateY(-4px) rotate(-0.35deg);
}

.product-media,
.product-showcase,
.mini-media {
    text-shadow: 0 3px 0 rgba(23, 32, 51, 0.18);
}

.product-media {
    min-height: 178px;
    font-size: 2.35rem;
    border-bottom: 4px solid rgba(255, 255, 255, 0.7);
}

.product-media span,
.product-showcase span {
    display: inline-grid;
    place-items: center;
    min-width: 4.3rem;
    min-height: 4.3rem;
    padding: 0.7rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.22);
    border: 3px solid rgba(255, 255, 255, 0.36);
}

.accent-sunrise {
    background: linear-gradient(135deg, #ff8b53, #ff3d81 52%, #ffd166);
}

.accent-forest {
    background: linear-gradient(135deg, #2dd4bf, #4ade80 50%, #16825d);
}

.accent-midnight {
    background: linear-gradient(135deg, #3366ff, #7b3ff2 55%, #172033);
}

.accent-ocean {
    background: linear-gradient(135deg, #38bdf8, #2563eb 55%, #2dd4bf);
}

.accent-violet {
    background: linear-gradient(135deg, #a855f7, #ec4899 58%, #ffd166);
}

.accent-copper {
    background: linear-gradient(135deg, #fb923c, #ef4444 56%, #7c2d12);
}

.product-body h3,
.cart-product h2 {
    font-size: 1.32rem;
    line-height: 1.14;
}

.product-tagline {
    color: #172033;
    font-size: 1.02rem;
}

.chip,
.category-pill {
    background: #e4f8ff;
    color: #17406a;
    border: 2px solid rgba(51, 102, 255, 0.12);
    box-shadow: 0 4px 0 rgba(51, 102, 255, 0.08);
}

.category-pill:hover {
    background: #fff0bf;
    color: #7b2cff;
}

.price {
    color: #7b2cff;
}

.section-alt {
    background: rgba(255, 255, 255, 0.58);
    border-top: 3px solid rgba(255, 107, 53, 0.16);
    border-bottom: 3px solid rgba(51, 102, 255, 0.12);
}

.flash {
    border: 2px solid rgba(23, 32, 51, 0.08);
}

.site-footer {
    background: rgba(255, 252, 235, 0.82);
    border-top: 3px solid rgba(255, 209, 102, 0.55);
}

.lab-art {
    width: 1em;
    height: 1em;
    object-fit: contain;
    pointer-events: none;
}

.hero-badges img {
    width: 1.25rem;
    height: 1.25rem;
    filter: drop-shadow(0 2px 0 rgba(23, 32, 51, 0.12));
}

.hero-badges span::before {
    content: none;
}

.product-media {
    gap: 0.55rem;
}

.product-media span,
.product-showcase span {
    position: relative;
    z-index: 1;
}

.lab-art-card {
    width: 5.5rem;
    height: 5.5rem;
    filter: drop-shadow(0 7px 0 rgba(23, 32, 51, 0.18));
}

.product-showcase {
    gap: 0.85rem;
}

.lab-art-showcase {
    width: min(42%, 11rem);
    height: auto;
    filter: drop-shadow(0 10px 0 rgba(23, 32, 51, 0.18));
}

.mini-media {
    position: relative;
    overflow: hidden;
}

.lab-art-mini {
    width: 1.35rem;
    height: 1.35rem;
    filter: drop-shadow(0 2px 0 rgba(23, 32, 51, 0.18));
}

.mini-media span {
    position: absolute;
    right: 0.32rem;
    bottom: 0.25rem;
    font-size: 0.6rem;
    letter-spacing: 0.04em;
}

.asset-credit {
    margin-top: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-soft);
}

.brand-worlds {
    position: relative;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    background: rgba(23, 32, 51, 0.08);
    color: var(--text-strong);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 900;
    border: 2px dashed rgba(23, 32, 51, 0.2);
}

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

.brand-card {
    position: relative;
    overflow: hidden;
    min-height: 17rem;
    padding: 1.1rem;
    border: 3px solid rgba(23, 32, 51, 0.12);
    border-radius: 1.7rem;
    box-shadow: 0 16px 0 rgba(23, 32, 51, 0.1);
}

.brand-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -45% -20%;
    height: 62%;
    border-radius: 50% 50% 0 0;
    background: rgba(255, 255, 255, 0.38);
    transform: rotate(-4deg);
}

.brand-card h3,
.brand-card p,
.brand-art {
    position: relative;
    z-index: 1;
}

.brand-card h3 {
    margin: 0.9rem 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.65rem;
}

.brand-card p {
    margin: 0;
    color: rgba(23, 32, 51, 0.76);
    font-weight: 800;
}

.brand-art {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 6.8rem;
    padding: 0.55rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.brand-art img {
    max-width: 100%;
    max-height: 6rem;
    object-fit: contain;
    filter: drop-shadow(0 6px 0 rgba(23, 32, 51, 0.18));
}

.brand-art-duo {
    gap: 0.35rem;
}

.brand-art-duo img {
    max-width: 52%;
}

.brand-pokemon {
    background: linear-gradient(140deg, #ffe66d 0%, #ff6f91 100%);
}

.brand-roblox {
    background: linear-gradient(140deg, #1f2937 0%, #ef4444 100%);
    color: #fff;
}

.brand-roblox p {
    color: rgba(255, 255, 255, 0.86);
}

.brand-fortnite {
    background: linear-gradient(140deg, #9b5de5 0%, #00bbf9 100%);
}

.brand-minecraft {
    background: linear-gradient(140deg, #62d26f 0%, #8d6e63 100%);
}

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

@media (max-width: 620px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }
}

/* Visual Redesign V1 overrides */
:root {
    --bg: #090d14;
    --surface: #111827;
    --surface-strong: #121b27;
    --surface-muted: #1a2432;
    --text: #f4f8fc;
    --text-soft: #a8b4c4;
    --line: rgba(255, 255, 255, 0.12);
    --brand: #37d5ff;
    --brand-dark: #16a8df;
    --accent: #7ddcff;
    --shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
    --wrapper: min(1220px, calc(100% - 2rem));
}

html {
    color-scheme: dark;
}

body {
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(55, 213, 255, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(166, 255, 77, 0.08), transparent 28%),
        linear-gradient(180deg, #0a0f17 0%, #081019 30%, #0b111a 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(255,255,255,0.55), transparent 75%);
    opacity: 0.18;
}

p,
.brand small,
.footer-inner p,
.stats-grid dt,
.summary-list dt,
.product-meta dt,
.proof-strip span,
.muted,
.cta-note,
.asset-credit {
    color: var(--text-soft);
}

a:hover,
.text-link,
.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: #fff;
}

.skip-link,
.announcement {
    background: #05080d;
    color: #e6faff;
}

.site-header {
    background: rgba(8, 12, 19, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.brand-mark {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #37d5ff, #8a4dff);
    box-shadow: 0 0 24px rgba(55, 213, 255, 0.35);
}

.site-nav a {
    color: #cfe0f2;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: rgba(55, 213, 255, 0.14);
}

.cart-badge {
    background: linear-gradient(135deg, #ff5da8, #ff7b2c);
}

.card {
    background: linear-gradient(180deg, rgba(18, 27, 39, 0.95), rgba(14, 21, 31, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.card-subtle {
    background: linear-gradient(180deg, rgba(19, 29, 41, 0.92), rgba(15, 22, 32, 0.92));
    border-style: solid;
}

.button {
    color: #031019;
    background: linear-gradient(135deg, #37d5ff, #9eff57);
    box-shadow: 0 14px 30px rgba(55, 213, 255, 0.28);
}

.button:hover {
    background: linear-gradient(135deg, #5de0ff, #b9ff7b);
    color: #031019;
}

.button-secondary {
    color: #f4f8fc;
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}

.button-ghost {
    color: #f4f8fc;
    border-color: rgba(255,255,255,0.16);
}

.button-secondary:hover,
.button-ghost:hover {
    background: rgba(255,255,255,0.1);
}

.hero-v2 {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 2rem;
    padding-top: 3.25rem;
    align-items: stretch;
}

.hero-copy-v2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 0;
}

.hero-copy-v2 h1 {
    font-size: clamp(3.4rem, 8vw, 6.8rem);
    letter-spacing: -0.05em;
    line-height: 0.92;
    text-transform: uppercase;
}

.hero-subcopy {
    max-width: 34rem;
    font-size: 1.16rem;
}

.hero-badges-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero-badges-v2 span,
.product-badge,
.review-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #f4f8fc;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-stage {
    position: relative;
    overflow: hidden;
    min-height: 34rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    isolation: isolate;
}

.hero-stage-backdrop {
    position: absolute;
    inset: 8% 10% auto 10%;
    height: 65%;
    border-radius: 2.2rem;
    filter: blur(0px);
    opacity: 0.96;
}

.hero-stage::after {
    content: "";
    position: absolute;
    inset: auto 10% 7% 10%;
    height: 18%;
    background: radial-gradient(circle, rgba(0,0,0,0.42), transparent 70%);
    z-index: 0;
}

.hero-stage-art {
    position: relative;
    z-index: 2;
    width: min(82%, 29rem);
    align-self: center;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55));
}

.lab-art-hero {
    max-height: 31rem;
    width: auto;
    margin: 0 auto;
}

.hero-stage-stack {
    position: absolute;
    width: 9rem;
    height: 9rem;
    border-radius: 1.5rem;
    padding: 1rem;
    display: grid;
    place-items: center;
    opacity: 0.85;
    z-index: 1;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.hero-stage-stack-left { left: 4%; top: 16%; transform: rotate(-9deg); }
.hero-stage-stack-right { right: 4%; top: 26%; transform: rotate(11deg); }
.hero-stage-meta {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 1.6rem;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    border-radius: 1.15rem;
    background: rgba(5, 10, 16, 0.72);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.hero-stage-meta strong { font-size: 1.05rem; }
.hero-stage-meta span:last-child { color: var(--text-soft); }
.section-heading-v2 { align-items: end; }
.section-heading-v2 h2 { margin-bottom: 0; }
.section-compact { padding-top: 1.2rem; }
.products-grid-featured { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card {
    position: relative;
    background: linear-gradient(180deg, rgba(17, 25, 39, 0.94), rgba(11, 18, 28, 0.98));
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(55,213,255,0.35); box-shadow: 0 28px 55px rgba(0,0,0,0.42); }
.product-card-link { position: absolute; inset: 0; z-index: 1; }
.product-media {
    position: relative;
    min-height: 18rem;
    padding: 1rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.product-media::after {
    content: "";
    position: absolute;
    inset: auto 12% 0 12%;
    height: 26%;
    background: radial-gradient(circle, rgba(0,0,0,0.34), transparent 70%);
}
.product-badge { position: absolute; top: 1rem; left: 1rem; z-index: 3; background: rgba(5,8,13,0.7); }
.product-media-label {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.82);
}
.lab-art-card {
    position: relative;
    z-index: 2;
    max-height: 14.5rem;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 24px 30px rgba(0,0,0,0.35));
}
.product-body { position: relative; z-index: 2; gap: 0.6rem; }
.card-kicker-row-compact { align-items: center; }
.card-kicker-row-compact .eyebrow { margin-bottom: 0; font-size: 0.7rem; }
.product-tagline { font-size: 1rem; }
.product-card-copy,
.chip-row,
.product-meta.compact-meta { display: none; }
.proof-pill {
    background: rgba(55,213,255,0.12);
    border-color: rgba(55,213,255,0.24);
    color: #9eefff;
}
.price-stack { display: grid; gap: 0.2rem; }
.price { font-size: 1.85rem; }
.product-save-form { position: relative; z-index: 3; }
.product-save-button {
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease;
}
.product-save-button:hover { background: rgba(255,255,255,0.14); transform: scale(1.04); }
.drop-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 240px);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    scroll-snap-type: x proximity;
}
.drop-tile {
    position: relative;
    min-height: 18rem;
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
}
.drop-tile-link {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
    padding: 1rem;
    text-decoration: none;
    position: relative;
    color: #fff;
}
.drop-tile .product-badge { position: absolute; top: 1rem; left: 1rem; }
.lab-art-drop {
    position: absolute;
    inset: 1.2rem 1rem auto 1rem;
    max-height: 11rem;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 22px 28px rgba(0,0,0,0.38));
}
.drop-tile-link strong,
.drop-tile-link span:last-child { position: relative; z-index: 2; }
.vibe-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.vibe-tile {
    position: relative;
    display: grid;
    gap: 0.35rem;
    min-height: 12rem;
    padding: 1.25rem;
    border-radius: 1.4rem;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    align-content: end;
}
.vibe-icon { font-size: 1.7rem; }
.vibe-tile strong { font-size: 1.3rem; }
.vibe-tile span:last-child { color: rgba(255,255,255,0.8); }
.lab-process-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1rem;
}
.timelapse-frame {
    min-height: 18rem;
    border-radius: 1.5rem;
    display: grid;
    place-items: center;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.about-story-page {
    gap: 1.25rem;
}
.about-story-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.25rem;
    align-items: stretch;
    overflow: hidden;
}
.about-story-copy {
    display: grid;
    gap: 0.9rem;
}
.about-story-copy h1,
.about-copy-block h2,
.about-timelapse-copy h2,
.about-purpose-grid h2,
.about-small-lab h2,
.about-final-cta h2 {
    margin-bottom: 0;
}
.about-hero-actions {
    margin-top: 0.2rem;
}
.about-story-visual {
    border-radius: 1.4rem;
    padding: 1rem;
    min-height: 100%;
    display: grid;
}
.about-story-visual-frame {
    border-radius: 1.2rem;
    min-height: 100%;
    display: grid;
    align-content: end;
    gap: 0.8rem;
    padding: 1.4rem;
    background: linear-gradient(180deg, rgba(9, 13, 22, 0.12), rgba(9, 13, 22, 0.68));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.about-visual-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.about-story-visual strong {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1.05;
    color: #fff;
}
.about-story-visual p {
    margin: 0;
    color: rgba(255,255,255,0.84);
}
.about-section-grid,
.about-timelapse-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}
.about-copy-block,
.about-media-block,
.about-timelapse-copy,
.about-final-cta,
.about-small-lab {
    display: grid;
    gap: 0.85rem;
}
.about-check-grid,
.about-proof-grid {
    display: grid;
    gap: 0.85rem;
}
.about-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-check-grid div,
.about-proof-card {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}
.about-check-grid strong,
.about-proof-card h3 {
    display: block;
    margin-bottom: 0.3rem;
}
.about-timelapse-section {
    padding: 1.35rem;
}
.about-timelapse-frame {
    min-height: 22rem;
    text-align: center;
    padding: 1.5rem;
}
.about-timelapse-frame span,
.about-timelapse-frame small {
    display: block;
}
.about-timelapse-frame small {
    margin-top: 0.7rem;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    opacity: 0.82;
}
.about-proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.about-proof-card {
    min-height: 100%;
}
.about-proof-card p,
.about-proof-card h3 {
    margin-top: 0;
}
.about-purpose-grid .card,
.about-final-cta,
.about-small-lab {
    min-height: 100%;
}
.lab-step-row {
    display: grid;
    gap: 0.9rem;
}
.lab-step-row div {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}
.lab-step-row strong { display: block; margin-bottom: 0.3rem; }
.section-alt-v2 {
    background: linear-gradient(180deg, rgba(10,15,23,0.5), rgba(10,15,23,0.85));
    border-color: rgba(255,255,255,0.06);
}
.trust-strip-v2 .card { min-height: 100%; }
.product-layout {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}
.product-showcase {
    position: relative;
    background-blend-mode: screen;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}
.product-showcase::after {
    content: "";
    position: absolute;
    inset: auto 12% 4% 12%;
    height: 18%;
    background: radial-gradient(circle, rgba(0,0,0,0.35), transparent 70%);
}
.lab-art-showcase {
    position: relative;
    z-index: 2;
    max-height: 24rem;
    width: auto;
    filter: drop-shadow(0 34px 42px rgba(0,0,0,0.45));
}
.product-details h1 { font-size: clamp(2.4rem, 4vw, 4rem); }
.proof-strip div,
.proof-callout,
.product-meta div,
.stats-grid div,
.summary-list div {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
}
input[type="search"],
input[type="text"],
input[type="number"],
select,
textarea {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: #fff;
}
.section-alt,
.filter-form,
.empty-state,
.flash,
.request-prep,
.prototype-form,
.request-brief-preview,
.cart-table,
.cart-row,
.cart-header,
.flash-wrap .flash {
    border-color: rgba(255,255,255,0.08);
}
.filter-form,
.empty-state,
.request-prep,
.prototype-form,
.request-brief-preview,
.cart-card,
.summary-card,
.faq-list details,
.flash-wrap .flash {
    background: linear-gradient(180deg, rgba(18, 27, 39, 0.95), rgba(13, 20, 31, 0.95));
}
.hero-float { animation: heroFloat 5s ease-in-out infinite; }
@keyframes heroFloat {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@media (max-width: 1024px) {
    .hero-v2,
    .product-layout,
    .lab-process-grid,
    .split-grid,
    .detail-columns,
    .products-grid-featured,
    .vibe-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-v2 { grid-template-columns: 1fr; }
    .hero-stage { min-height: 28rem; }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .hero-copy-v2 h1 { font-size: clamp(2.8rem, 15vw, 4.3rem); }
    .products-grid,
    .products-grid-featured,
    .vibe-grid,
    .split-grid,
    .detail-columns,
    .lab-process-grid,
    .trust-strip {
        grid-template-columns: 1fr;
    }
    .hero-stage-stack { display: none; }
    .hero-stage { min-height: 23rem; }
    .hero-stage-meta { left: 1rem; right: 1rem; bottom: 1rem; }
    .product-media { min-height: 15rem; }
    .lab-art-card { max-height: 12rem; }
    .hero-actions,
    .cart-actions,
    .filter-actions {
        flex-direction: column;
    }
}


/* Visual QA tightening pass */
.site-main,
.hero,
.section,
.section h1,
.section h2,
.product-details h1,
.product-details h2,
.product-card,
.product-body,
.product-footer,
.watch-print,
.lab-steps,
.faq-list .card,
.summary-card,
.cart-card {
    color: var(--text) !important;
}

.hero,
.section {
    background: transparent !important;
}

.hero::after,
.hero-badges span::before,
.brand-card::before {
    content: none !important;
    display: none !important;
}

.hero h1,
.section h1,
.section h2,
.product-details h1,
.product-details h2,
.brand strong,
.footer-inner strong,
.product-tagline,
.product-body h3,
.cart-product h2,
.site-nav a {
    color: var(--text) !important;
}

.brand small,
.site-nav a,
.text-link,
.result-count,
.product-card-subnote,
.product-body p,
.watch-print p,
.lab-steps p,
.footer-inner p,
.asset-credit {
    color: var(--text-soft) !important;
}

.card,
.product-card,
.summary-card,
.cart-card,
.filter-form,
.empty-state,
.request-prep,
.prototype-form,
.request-brief-preview,
.faq-list details,
.flash-wrap .flash,
.hero-stage,
.drop-tile,
.vibe-tile,
.watch-print,
.lab-steps {
    background: linear-gradient(180deg, rgba(18, 27, 39, 0.97), rgba(10, 16, 25, 0.98)) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 28px 60px rgba(0,0,0,0.38) !important;
}

.product-card {
    overflow: hidden;
}

.product-body {
    background: linear-gradient(180deg, rgba(18, 27, 39, 0.95), rgba(12, 18, 28, 0.98)) !important;
}

.product-media {
    min-height: 16rem;
}

.product-media-label,
.product-showcase > span,
.hero-stage-stack img + span {
    display: none !important;
}

.product-badge {
    background: rgba(7, 12, 20, 0.78) !important;
    color: #ffffff !important;
}

.hero-stage {
    min-height: 36rem;
    background: linear-gradient(180deg, rgba(17,25,39,0.98), rgba(9,14,22,0.98)) !important;
}

.hero-stage-backdrop {
    inset: 8% 10% auto 10%;
    height: 68%;
    box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}

.hero-stage-meta {
    background: rgba(4, 10, 17, 0.84) !important;
}

.drop-rail {
    padding-top: 0.2rem;
}

.drop-tile-link {
    min-height: 18rem;
}

.drop-tile-link strong {
    font-size: 1.05rem;
}

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

.hero-badges-v2 span,
.proof-pill,
.category-pill,
.chip {
    background: rgba(255,255,255,0.07) !important;
    color: #eef7ff !important;
    border-color: rgba(255,255,255,0.12) !important;
    box-shadow: none !important;
}

.hero-badges-v2 span {
    font-weight: 700;
}

.button-secondary,
.button-ghost,
.product-save-button {
    box-shadow: none !important;
}

@media (max-width: 720px) {
    .hero-stage {
        min-height: 19rem;
    }

    .hero-stage-art {
        width: min(84%, 18rem);
    }

    .hero-stage-meta {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0 1rem 1rem;
    }

    .product-media {
        min-height: 13.5rem;
    }

    .drop-tile,
    .drop-tile-link {
        min-height: 15rem;
    }
}


/* Product page + mobile nav polish */
.page-product .product-layout {
    gap: 1.6rem;
    align-items: start;
}

.page-product .product-showcase {
    position: sticky;
    top: 7.25rem;
    min-height: 35rem;
    display: grid;
    place-items: center;
    border-radius: 1.8rem;
    padding: 1.5rem;
}

.page-product .lab-art-showcase {
    max-height: 26rem;
}

.page-product .product-details {
    padding: 1.35rem;
}

.page-product .price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.75rem 1rem;
}

.page-product .product-cart-form {
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(16, 24, 36, 0.95), rgba(10, 16, 25, 0.98));
    border: 1px solid rgba(255,255,255,0.07);
}

.page-product .product-cart-form .button {
    min-height: 3rem;
}

.page-product .quantity-input {
    background: rgba(255,255,255,0.05);
}

@media (max-width: 720px) {
    .announcement {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .header-inner {
        gap: 0.8rem;
    }

    .brand {
        width: 100%;
        align-items: flex-start;
    }

    .brand span:last-child {
        min-width: 0;
    }

    .nav-toggle {
        border-color: rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.04);
        color: var(--text);
        border-radius: 1rem;
    }

    .site-nav.is-open {
        display: block;
        padding: 0.35rem 0 0.15rem;
    }

    .site-nav ul {
        gap: 0.7rem;
    }

    .site-nav a {
        justify-content: flex-start;
        min-height: 3.4rem;
        padding: 0.9rem 1rem;
        background: linear-gradient(180deg, rgba(25, 35, 49, 0.98), rgba(15, 22, 32, 0.98)) !important;
        color: var(--text) !important;
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 14px 28px rgba(0,0,0,0.22);
    }

    .site-nav a[aria-current="page"] {
        border-color: rgba(255, 209, 102, 0.45);
        box-shadow: inset 0 -2px 0 rgba(255, 209, 102, 0.9), 0 14px 28px rgba(0,0,0,0.22);
    }

    .page-product .product-layout,
    .page-product .detail-columns,
    .page-product .proof-strip,
    .page-product .detail-meta {
        grid-template-columns: 1fr !important;
    }

    .page-product .product-showcase {
        position: relative;
        top: auto;
        min-height: 17rem;
        padding: 1rem;
    }

    .page-product .lab-art-showcase {
        max-height: 14rem;
    }

    .page-product .product-details {
        padding: 1.1rem;
    }

    .page-product .price-row {
        gap: 0.45rem;
    }

    .page-product .product-cart-form {
        padding: 0.95rem;
    }

    .page-product .inline-field {
        width: 100%;
    }

    .page-product .quantity-input {
        width: 100%;
        max-width: none;
    }
}


/* Homepage flow + shop density polish */
.page-home .hero-v2 {
    padding-bottom: 1rem;
}

.page-home .section-compact {
    padding-top: 2rem;
}

.page-home .section-compact + .section-compact {
    margin-top: 0.25rem;
}

.page-home .section-heading-v2 {
    margin-bottom: 1.4rem;
}

.page-home .products-grid-featured {
    gap: 1.15rem;
}

.page-home .product-card {
    min-height: 100%;
}

.page-home .product-body,
.page-shop .product-body {
    padding: 0.95rem 1rem 1rem;
}

.page-home .product-body h3,
.page-shop .product-body h3 {
    line-height: 1.08;
    min-height: 2.3em;
}

.page-home .product-tagline,
.page-shop .product-tagline {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.page-home .product-footer,
.page-shop .product-footer {
    margin-top: auto;
    padding-top: 0.15rem;
}

.page-home .drop-rail {
    grid-auto-columns: minmax(220px, 255px);
    gap: 1.1rem;
    padding-bottom: 0.9rem;
}

.page-home .watch-print,
.page-home .lab-steps {
    min-height: 100%;
}

.page-home .trust-strip-v2 {
    gap: 1.15rem;
}

.page-shop .section-heading {
    margin-bottom: 1.45rem;
}

.page-shop .filter-form {
    margin-bottom: 1.35rem;
    padding: 1rem 1.1rem;
}

.page-shop .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.page-shop .product-media {
    min-height: 13.5rem;
}

.page-shop .product-save-button {
    padding: 0.68rem 0.95rem;
}

@media (max-width: 1180px) {
    .page-shop .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .page-home .section-compact {
        padding-top: 1.6rem;
    }

    .page-home .section-heading-v2 {
        margin-bottom: 1rem;
    }

    .page-home .drop-rail {
        grid-auto-columns: minmax(200px, 78vw);
        gap: 0.9rem;
    }

    .page-home .hero-badges-v2 {
        gap: 0.55rem;
    }

    .page-shop .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.9rem;
    }

    .page-shop .product-media {
        min-height: 11rem;
    }

    .page-shop .product-body,
    .page-home .product-body {
        padding: 0.85rem 0.9rem 0.95rem;
    }

    .page-shop .product-body h3,
    .page-home .product-body h3 {
        min-height: 0;
    }
}

@media (max-width: 560px) {
    .page-shop .products-grid {
        grid-template-columns: 1fr !important;
    }
}


/* Hero-stage readability + mobile filter UX polish */
.page-home .hero-stage {
    min-height: 35rem;
}

.page-home .hero-stage-meta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.35rem 0.9rem;
    align-items: center;
    padding: 1rem 1.15rem;
    background: linear-gradient(180deg, rgba(4,10,17,0.92), rgba(9,15,24,0.96)) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.page-home .hero-stage-meta .product-badge {
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
}

.page-home .hero-stage-meta strong {
    line-height: 1.05;
    color: #ffffff;
}

.page-home .hero-stage-meta span:last-child {
    font-size: 0.94rem;
    line-height: 1.25;
    color: rgba(232,241,249,0.86);
}

.page-home .hero-stage-stack {
    opacity: 0.72;
}

.page-home .hero-stage-stack-left { left: 3%; }
.page-home .hero-stage-stack-right { right: 3%; }

.page-shop .filter-form .field label {
    font-weight: 700;
}

.page-shop .filter-form input[type="search"],
.page-shop .filter-form select {
    min-height: 3rem;
}

.page-shop .filter-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: end;
}

.page-shop .filter-actions .button,
.page-shop .filter-actions .button-ghost {
    width: 100%;
    justify-content: center;
}

@media (max-width: 720px) {
    .page-home .hero-copy-v2 h1 {
        font-size: clamp(2.9rem, 15vw, 4.5rem);
    }

    .page-home .hero-stage-meta {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        padding: 0.9rem 1rem;
        text-align: left;
    }

    .page-home .hero-stage-meta .product-badge {
        grid-row: auto;
        justify-self: start;
    }

    .page-home .hero-stage-meta strong {
        font-size: 1rem;
    }

    .page-home .hero-stage-meta span:last-child {
        font-size: 0.88rem;
    }

    .page-shop .section-heading {
        margin-bottom: 1.1rem;
    }

    .page-shop .result-count {
        font-size: 0.98rem;
    }

    .page-shop .filter-form {
        padding: 0.95rem;
        gap: 0.85rem;
    }

    .page-shop .filter-form input[type="search"],
    .page-shop .filter-form select {
        min-height: 2.9rem;
        padding: 0.72rem 0.85rem;
        font-size: 0.98rem;
    }

    .page-shop .filter-form input[type="search"]::placeholder {
        font-size: 0.95rem;
    }

    .page-shop .filter-actions {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .page-shop .filter-actions .button,
    .page-shop .filter-actions .button-ghost {
        min-height: 2.9rem;
        padding: 0.78rem 0.85rem;
    }
}


/* P0 review pass: canonical cleanup + product-led cards */
.page-home .product-media,
.page-shop .product-media {
    min-height: 15.25rem;
}

.page-home .lab-art-card,
.page-shop .lab-art-card {
    max-height: 15.8rem;
}

.page-home .product-body,
.page-shop .product-body {
    gap: 0.5rem;
}

.page-home .product-tagline,
.page-shop .product-tagline {
    font-size: 0.96rem;
}

.page-home .product-card-subnote,
.page-shop .product-card-subnote {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.page-home .product-save-button,
.page-shop .product-save-button {
    border-color: rgba(255,255,255,0.1);
}

.page-product .product-layout-v2 {
    gap: 1.75rem;
    align-items: start;
}

.page-product .product-showcase-v2 {
    position: sticky;
    top: 7.25rem;
    min-height: 38rem;
    padding: 1.8rem;
    align-items: end;
    justify-items: center;
    overflow: hidden;
}

.page-product .product-badge-showcase {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.page-product .lab-art-showcase {
    max-height: 29rem;
}

.page-product .showcase-caption {
    align-self: end;
    display: inline-flex;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(9, 14, 22, 0.72);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-soft);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-product .product-details-v2 {
    padding: 1.45rem;
    display: grid;
    gap: 1rem;
}

.page-product .price-row-v2 {
    margin-top: -0.15rem;
}

.page-product .product-summary {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
}

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

.page-product .product-quickfacts div,
.page-product .product-detail-card {
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(17, 24, 36, 0.96), rgba(10, 16, 25, 0.98));
    border-radius: 1.15rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.page-product .product-quickfacts div {
    padding: 0.9rem 0.95rem;
}

.page-product .product-quickfacts span {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-soft);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-product .product-quickfacts strong {
    display: block;
    font-size: 1rem;
    line-height: 1.3;
}

.page-product .product-cart-form-v2 {
    display: grid;
    gap: 0.9rem;
}

.page-product .product-cta-stack {
    display: grid;
    gap: 0.7rem;
}

.page-product .product-cta-stack .button {
    width: 100%;
    justify-content: center;
}

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

.page-product .product-detail-card {
    padding: 1.15rem;
}

.page-product .product-detail-card h2 {
    margin-bottom: 0.7rem;
}

.page-product .bullet-list-compact {
    gap: 0.5rem;
}

.page-product .detail-meta-v2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.2rem;
}

.page-product .detail-meta-v2 dd {
    word-break: break-word;
}

@media (max-width: 980px) {
    .page-about .about-story-hero,
    .page-about .about-section-grid,
    .page-about .about-timelapse-section,
    .page-about .about-purpose-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 720px) {
    .page-home .product-media,
    .page-shop .product-media {
        min-height: 13rem;
    }

    .page-about .about-check-grid,
    .page-about .about-proof-grid {
        grid-template-columns: 1fr;
    }

    .page-about .about-story-hero,
    .page-about .about-timelapse-section,
    .page-about .about-small-lab,
    .page-about .about-final-cta {
        padding: 1rem;
    }

    .page-about .about-timelapse-frame {
        min-height: 16rem;
    }

    .page-home .lab-art-card,
    .page-shop .lab-art-card {
        max-height: 13rem;
    }

    .page-product .product-showcase-v2 {
        position: relative;
        top: auto;
        min-height: 18rem;
        padding: 1rem;
    }

    .page-product .lab-art-showcase {
        max-height: 14rem;
    }

    .page-product .product-quickfacts,
    .page-product .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

.page-request-prep .request-prep-grid-v2 {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.page-request-prep .choice-group-dark {
    background: linear-gradient(180deg, rgba(17, 24, 36, 0.96), rgba(10, 16, 25, 0.98));
    border-color: rgba(255,255,255,0.08);
}

.page-request-prep .request-success {
    margin-bottom: 0.6rem;
}

.page-request-prep .request-success p {
    margin-bottom: 0.6rem;
}

.page-request-prep .request-brief-preview {
    min-height: 24rem;
}

@media (max-width: 980px) {
    .page-request-prep .request-prep-grid-v2 {
        grid-template-columns: 1fr;
    }
}
