/* Homepage-specific styles — Light theme */

/* No hero background image in light theme */
.page-home .hero::before,
.page-home .hero::after {
    display: none;
}

/* Hero CTA Panel */
.hero-cta-panel {
    width: 100%;
    max-width: none;
}
.cta-container {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.cta-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}
.cta-subtitle {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.hero-buttons .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--yellow-400);
    color: var(--slate-900);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.hero-buttons .btn-primary:hover {
    background: var(--yellow-300);
    transform: translateY(-2px);
}
.hero-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--slate-700);
    padding: 1rem 1.5rem;
    border: 1px solid var(--slate-300);
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.hero-buttons .btn-secondary:hover {
    background: var(--slate-50);
    border-color: var(--blue-500);
    color: var(--blue-600);
}
.hero-trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.trust-point {
    color: var(--slate-600);
    font-size: 0.875rem;
}

/* Proof Strip */
.proof-strip {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.proof-strip-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.proof-strip-inner h2 {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.proof-strip-inner > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}
.proof-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.proof-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
}
.proof-metric .metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}
.proof-metric .metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.proof-cta {
    margin-top: 1rem;
}
.proof-cta a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}
.proof-cta a:hover {
    text-decoration: underline;
}

/* Products Section (3 cards) */
.products-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}
.products-section > .container > h2 {
    text-align: left;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.products-section > .container > p {
    text-align: left;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.product-card .product-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--accent-primary);
}
.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.product-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.product-price {
    font-size: 0.875rem;
    color: var(--slate-400);
    margin-bottom: 1.25rem;
}
.product-card .product-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}
.product-card .product-link:hover {
    text-decoration: underline;
}

/* Contact Section — light theme */
.contact-section {
    padding: 5rem 0;
    background: var(--slate-50);
    color: var(--slate-900);
    border-top: 1px solid var(--slate-200);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}
.contact-text h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--slate-900);
}
.contact-text > p {
    color: var(--slate-600);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}
.contact-reassurance {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--slate-200);
}
.contact-reassurance p {
    color: var(--slate-700);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
.contact-reassurance ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-reassurance li {
    color: var(--slate-600);
    font-size: 0.875rem;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}
.contact-reassurance li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green-600);
}
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--slate-200);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.contact-form-wrapper .form-group {
    margin-bottom: 1rem;
}
.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #ffffff;
    border: 1px solid var(--slate-300);
    border-radius: 0.5rem;
    color: var(--slate-900);
    font-size: 1rem;
}
.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.contact-form-wrapper .submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--blue-600);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.contact-form-wrapper .submit-btn:hover {
    background: var(--blue-500);
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Homepage hero — clean light background */
.page-home .hero {
    background: var(--slate-50);
}

/* Proof strip metric numbers - warm accent */
.proof-metric .metric-number {
    color: var(--accent-warm, #f59e0b);
}


/* Products - Staggered Rows */
.products-stagger {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.product-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 1rem;
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.product-row:hover {
    border-color: var(--accent-warm, #f59e0b);
    transform: translateY(-2px);
}
.product-row--reverse {
    direction: rtl;
}
.product-row--reverse > * {
    direction: ltr;
}
.product-row--reverse .product-row-content {
    text-align: left;
}
.product-row--reverse .product-row-footer {
    justify-content: flex-start;
}
.product-row-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    padding: 14px;
}
.product-row-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-warm, #f59e0b);
}
.product-row-content h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #0f172a);
}
.product-row-content p {
    color: var(--text-secondary, #475569);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.product-row-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.product-row-footer .product-price {
    color: var(--accent-warm, #f59e0b);
    font-weight: 600;
    font-size: 0.9rem;
}
.product-row-footer .product-link {
    color: var(--accent-primary, #3b82f6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}
.product-row-footer .product-link:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .product-row, .product-row--reverse {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .product-row--reverse .product-row-footer {
        justify-content: flex-start;
    }
    .product-row-icon {
        width: 48px;
        height: 48px;
        padding: 10px;
    }
}

/* How It Works - Alternating Steps */
.hiw-alternating {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.hiw-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}
.hiw-step--right {
    grid-template-columns: 1fr 80px;
    text-align: right;
}
.hiw-step-number {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent-warm, #f59e0b);
    opacity: 0.4;
    line-height: 1;
}
.hiw-step-content h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #0f172a);
}
.hiw-step-content p {
    color: var(--text-secondary, #475569);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.hiw-step-timeline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-primary, #3b82f6);
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}
@media (max-width: 768px) {
    .hiw-step, .hiw-step--right {
        grid-template-columns: 60px 1fr;
        text-align: left;
    }
    .hiw-step-number {
        font-size: 2.5rem;
    }
}



/* Ensure hiw steps are visible (not dependent on old scroll animation) */
.hiw-step {
    opacity: 1 !important;
    transform: none !important;
}


/* Product Feature Cards — bold left-border accent */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.product-feature {
    border-left: 4px solid var(--slate-600, #475569);
    background: var(--card-bg, #ffffff);
    border-radius: 0 12px 12px 0;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.product-feature:hover {
    border-left-color: var(--accent-warm, #f59e0b);
    transform: translateX(4px);
}
.product-feature--accent {
    border-left-color: var(--accent-warm, #f59e0b);
}
.product-feature-inner {
    padding: 2rem 2.5rem;
}
.product-feature-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-warm, #f59e0b);
    margin-bottom: 0.5rem;
}
.product-feature h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--text-primary, #0f172a);
    margin-bottom: 0.75rem;
}
.product-feature p {
    color: var(--text-secondary, #475569);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 700px;
}
.product-feature-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.product-feature-meta .product-price {
    color: var(--accent-warm, #f59e0b);
    font-weight: 600;
    font-size: 0.9rem;
}
.product-feature-meta .product-link {
    color: var(--accent-primary, #3b82f6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}
.product-feature-meta .product-link:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .product-feature-inner {
        padding: 1.5rem;
    }
}

/* How It Works — clean vertical steps */
.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hiw-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
    opacity: 1 !important;
    transform: none !important;
}
.hiw-step:last-child {
    border-bottom: none;
}
.hiw-num {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--accent-warm, #f59e0b);
    line-height: 1;
    opacity: 0.5;
}
.hiw-body h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--text-primary, #0f172a);
    margin-bottom: 0.5rem;
}
.hiw-body p {
    color: var(--text-secondary, #475569);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    max-width: 600px;
}
.hiw-timeline {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-primary, #3b82f6);
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}
@media (max-width: 768px) {
    .hiw-step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    .hiw-num {
        font-size: 2.5rem;
    }
}

/* Industries Grid */
.industries-section {
    padding: 5rem 0;
    background: var(--bg-secondary, #f8fafc);
    border-top: 1px solid var(--border-color, #e2e8f0);
}
.industries-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary, #0f172a);
    margin-bottom: 0.75rem;
}
.industries-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary, #475569);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.industry-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid var(--slate-200);
    border-radius: 0.375rem;
    color: var(--slate-700);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.industry-tag:hover {
    border-color: var(--blue-500);
    color: var(--blue-600);
    background: var(--blue-50);
}
@media (max-width: 768px) {
    .industries-grid {
        gap: 0.5rem;
    }
    .industry-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
}

/* ==========================================================
   INVENTORY STRIP — blue ocean component
   Dark contrast section between hero and proof-strip.
   Regenerated weekly by tools/build-inventory-strip.py
   ========================================================== */
.inventory-strip {
    padding: 5rem 0 4rem;
    background: var(--slate-900, #0f172a);
    position: relative;
    overflow: hidden;
}
.inventory-strip::before {
    content: "";
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.inventory-strip .container { position: relative; z-index: 1; }

.inventory-header {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}
.inventory-eyebrow {
    display: inline-block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}
.inventory-header h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1rem;
}
.inventory-header h2 .accent {
    color: #fbbf24;
    font-style: italic;
}
.inventory-header p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--slate-300, #cbd5e1);
    margin: 0;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 960px) {
    .inventory-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .inventory-grid { grid-template-columns: 1fr; }
}

.inventory-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.inventory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px #fbbf24;
    border-color: #fbbf24;
}

.card-browser {
    position: relative;
    background: var(--slate-100, #f1f5f9);
    border-bottom: 1px solid var(--slate-200, #e2e8f0);
}
.card-chrome {
    display: flex;
    gap: 0.35rem;
    padding: 0.55rem 0.75rem;
    background: var(--slate-100, #f1f5f9);
    border-bottom: 1px solid var(--slate-200, #e2e8f0);
}
.card-chrome span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--slate-300, #cbd5e1);
}
.card-chrome span:nth-child(1) { background: #ef4444; }
.card-chrome span:nth-child(2) { background: #fbbf24; }
.card-chrome span:nth-child(3) { background: #10b981; }

.card-preview {
    aspect-ratio: 16 / 10;
    padding: 1.25rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.card-preview > * { position: relative; z-index: 2; }

.preview-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.55rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    letter-spacing: 0.05em;
}
.preview-nav .logo-dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fbbf24;
    margin-right: 4px;
    vertical-align: middle;
}
.preview-nav .nav-links { opacity: 0.8; }

.preview-headline {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
    max-width: 85%;
}
.preview-tagline {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.85);
    margin: 0.35rem 0 0.6rem;
}
.preview-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: #0f172a;
    background: #fbbf24;
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    width: fit-content;
}

.card-meta {
    padding: 0.9rem 1.1rem 1rem;
    font-family: 'Inter', system-ui, sans-serif;
}
.card-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}
.card-industry {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fbbf24;
}
.card-status {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--slate-500, #64748b);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.card-status::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.card-city {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate-900, #0f172a);
    margin: 0;
}
.card-claim {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--slate-100, #f1f5f9);
    font-size: 0.8rem;
    color: var(--slate-600, #475569);
}
.card-claim strong { color: var(--slate-900, #0f172a); }
.card-claim .arrow {
    color: #fbbf24;
    font-weight: 700;
    transition: transform 0.2s ease;
}
.inventory-card:hover .card-claim .arrow { transform: translateX(3px); }

.inventory-footer {
    max-width: 720px;
    margin: 3rem auto 0;
    text-align: center;
}
.inventory-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fbbf24;
    color: var(--slate-900, #0f172a);
    text-decoration: none;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 1.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.25);
}
.inventory-cta:hover {
    background: #fcd34d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}
.inventory-cta-subline {
    margin-top: 0.9rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    color: var(--slate-400, #94a3b8);
    letter-spacing: 0.01em;
}

.inventory-divider {
    max-width: 520px;
    margin: 3.5rem auto 2.5rem;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(251, 191, 36, 0.35) 50%,
        transparent 100%
    );
}

.inventory-inclusion-band {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.inventory-inclusion-band h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1rem;
    line-height: 1.1;
}
.inventory-inclusion-band h3 .accent {
    color: #fbbf24;
    font-style: italic;
}
.inventory-inclusion-band p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-300, #cbd5e1);
    margin: 0 0 1.75rem;
}

.inventory-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fbbf24;
    text-decoration: none;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border: 1.5px solid rgba(251, 191, 36, 0.55);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}
.inventory-cta-secondary:hover {
    background: rgba(251, 191, 36, 0.12);
    border-color: #fbbf24;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.18);
}
