/* =====================================================
   PRODUCTS — shared styles for:
   - Home page "Our Products" section  (.products-showcase)
   - /products/ list page               (.products-page)
   - /products/<slug>/ detail page      (.product-detail)
   Uses the site's dark + gold (#eab308) design language.
===================================================== */

:root {
    --prod-gold: #eab308;
    --prod-gold-soft: rgba(234, 179, 8, 0.14);
    --prod-border: rgba(255, 255, 255, 0.09);
    --prod-card: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    --prod-text: #d4d4d8;
    --prod-muted: #9ca3af;
}

/* -----------------------------------------------------
   STATUS PILLS (shared)
----------------------------------------------------- */
.prod-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid transparent;
    white-space: nowrap;
}

.prod-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.prod-status-live {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.28);
}

.prod-status-live::before {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: prod-live-pulse 1.8s ease-out infinite;
}

.prod-status-beta {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.28);
}

.prod-status-coming_soon {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.28);
}

.prod-tag-new {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #facc15, #eab308);
    color: #111;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes prod-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* -----------------------------------------------------
   PRODUCT LOGO TILE (shared)
----------------------------------------------------- */
.prod-logo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--prod-gold-soft);
    border: 1px solid rgba(234, 179, 8, 0.2);
    overflow: hidden;
    transition: transform 0.35s ease;
}

.prod-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.prod-logo-letter {
    font-size: 26px;
    font-weight: 800;
    color: var(--prod-gold);
}

/* -----------------------------------------------------
   PRODUCT CARD (shared: home + list)
----------------------------------------------------- */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.prod-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--prod-border);
    background: var(--prod-card);
    backdrop-filter: blur(12px);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.prod-card::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto;
    height: 60%;
    background: radial-gradient(circle at top, var(--prod-accent, var(--prod-gold)) 0%, transparent 60%);
    opacity: 0.08;
    z-index: -1;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.prod-card:hover {
    transform: translateY(-8px);
    border-color: rgba(234, 179, 8, 0.28);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.prod-card:hover::before {
    opacity: 0.18;
}

.prod-card:hover .prod-logo {
    transform: scale(1.06) rotate(-3deg);
}

.prod-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.prod-card-head-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.prod-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.prod-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 4px;
}

.prod-card h3 a {
    color: inherit;
    text-decoration: none;
}

.prod-card-tagline {
    font-size: 14px;
    color: var(--prod-gold);
    font-weight: 600;
    margin: 0;
}

.prod-card-desc {
    color: var(--prod-text);
    line-height: 1.75;
    font-size: 15px;
    margin: 0;
}

.prod-card-cover {
    margin: 0 -28px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border-top: 1px solid var(--prod-border);
    border-bottom: 1px solid var(--prod-border);
    background: #0a0a0a;
}

.prod-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.prod-card:hover .prod-card-cover img {
    transform: scale(1.05);
}

.prod-card-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prod-card-highlights li {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--prod-border);
    background: rgba(255, 255, 255, 0.03);
    color: #e5e5e5;
    font-size: 12px;
    font-weight: 600;
}

.prod-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 6px;
}

.prod-card-meta {
    font-size: 12px;
    color: var(--prod-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.prod-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* -----------------------------------------------------
   BUTTONS (shared)
----------------------------------------------------- */
.prod-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.prod-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.prod-btn-primary {
    background: linear-gradient(135deg, #facc15, #ca8a04);
    color: #000;
    box-shadow: 0 12px 30px rgba(234, 179, 8, 0.22);
}

.prod-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(234, 179, 8, 0.32);
}

.prod-btn-primary:hover svg {
    transform: translate(2px, -2px);
}

.prod-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.prod-btn-ghost:hover {
    border-color: rgba(234, 179, 8, 0.4);
    color: var(--prod-gold);
}

.prod-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* -----------------------------------------------------
   LAUNCH SPOTLIGHT (shared: home + list)
----------------------------------------------------- */
.prod-launch {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: clamp(28px, 4vw, 52px);
    border-radius: 32px;
    border: 1px solid rgba(234, 179, 8, 0.28);
    background:
        radial-gradient(circle at 12% 20%, rgba(234, 179, 8, 0.2), transparent 38%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.12), transparent 40%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    isolation: isolate;
    margin-bottom: 56px;
}

.prod-launch::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 80% 50%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 80% 50%, #000 20%, transparent 75%);
    z-index: -1;
    pointer-events: none;
}

.prod-launch::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.28), transparent 65%);
    filter: blur(40px);
    z-index: -1;
    animation: prod-launch-glow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes prod-launch-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.prod-launch-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(234, 179, 8, 0.35);
    background: rgba(234, 179, 8, 0.1);
    color: var(--prod-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.prod-launch-kicker svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.prod-launch-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.prod-launch-head .prod-logo {
    width: 76px;
    height: 76px;
    border-radius: 22px;
}

.prod-launch h2,
.prod-launch h3 {
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.prod-launch-tagline {
    font-size: 17px;
    color: var(--prod-gold);
    font-weight: 600;
    margin: 4px 0 0;
}

.prod-launch-desc {
    color: var(--prod-text);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 22px;
}

.prod-launch-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px dashed rgba(234, 179, 8, 0.4);
    background: rgba(234, 179, 8, 0.06);
    color: #fde68a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.prod-launch-note svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.prod-launch-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.prod-launch-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #e5e5e5;
    font-size: 14px;
    line-height: 1.5;
}

.prod-launch-highlights li::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border-radius: 50%;
    background:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center / 11px no-repeat,
        var(--prod-gold);
}

.prod-launch-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.prod-launch-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 22px;
    color: var(--prod-muted);
    font-size: 13px;
}

.prod-launch-meta strong {
    color: #fff;
    font-weight: 600;
}

.prod-launch-visual {
    position: relative;
}

.prod-launch-frame {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0b0b0c;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.6s ease;
}

.prod-launch:hover .prod-launch-frame {
    transform: perspective(1400px) rotateY(0deg) rotateX(0deg);
}

.prod-launch-frame-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.prod-launch-frame-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.prod-launch-frame-bar span:nth-child(1) { background: #ff5f57; }
.prod-launch-frame-bar span:nth-child(2) { background: #febc2e; }
.prod-launch-frame-bar span:nth-child(3) { background: #28c840; }

.prod-launch-frame-url {
    flex: 1;
    margin-left: 10px;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--prod-muted);
    font-size: 11px;
    font-family: ui-monospace, monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.prod-launch-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top;
}

.prod-launch-frame-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(circle at center, rgba(234, 179, 8, 0.16), transparent 60%),
        #0b0b0c;
}

.prod-launch-frame-placeholder .prod-logo {
    width: 96px;
    height: 96px;
    border-radius: 28px;
}

.prod-launch-frame-placeholder .prod-logo-letter {
    font-size: 40px;
}

.prod-launch-frame-placeholder p {
    color: var(--prod-muted);
    font-size: 13px;
    margin: 0;
}

/* -----------------------------------------------------
   HOME PAGE SECTION
----------------------------------------------------- */
.products-showcase {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, #050505 0%, #0a0a0d 50%, #050505 100%);
}

.products-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(234, 179, 8, 0.12), transparent 30%),
        radial-gradient(circle at 85% 70%, rgba(139, 92, 246, 0.1), transparent 32%);
    pointer-events: none;
}

.products-showcase .container {
    position: relative;
    z-index: 1;
}

.products-showcase-header {
    max-width: 900px;
    margin: 0 auto 46px;
    text-align: center;
}

.products-showcase-footer {
    text-align: center;
    margin-top: 40px;
}

/* -----------------------------------------------------
   PRODUCTS LIST PAGE
----------------------------------------------------- */
.products-page .site-page-hero {
    margin-bottom: 56px;
}

.prod-stats {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.prod-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 26px;
    border-radius: 18px;
    border: 1px solid var(--prod-border);
    background: rgba(255, 255, 255, 0.03);
    min-width: 120px;
}

.prod-stat strong {
    font-size: 26px;
    font-weight: 800;
    color: var(--prod-gold);
    line-height: 1;
}

.prod-stat span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--prod-muted);
    margin-top: 6px;
}

.prod-section {
    margin-bottom: 64px;
}

.prod-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--prod-border);
}

.prod-section-head h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.prod-section-head p {
    color: var(--prod-muted);
    margin: 6px 0 0;
    font-size: 15px;
}

.prod-section-count {
    font-size: 13px;
    color: var(--prod-muted);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--prod-border);
}

.prod-card-soon {
    opacity: 0.85;
}

.prod-card-soon .prod-logo {
    filter: grayscale(0.4);
}

.prod-cta-band {
    text-align: center;
    padding: clamp(36px, 5vw, 60px) 28px;
    border-radius: 30px;
    border: 1px solid var(--prod-border);
    background:
        radial-gradient(circle at top, rgba(234, 179, 8, 0.14), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.prod-cta-band h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.prod-cta-band p {
    color: var(--prod-text);
    max-width: 640px;
    margin: 0 auto 26px;
    line-height: 1.75;
}

/* -----------------------------------------------------
   PRODUCT DETAIL PAGE
----------------------------------------------------- */
.product-detail .site-page-shell {
    padding-top: 120px;
}

.prod-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--prod-muted);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.prod-breadcrumb a {
    color: var(--prod-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.prod-breadcrumb a:hover {
    color: var(--prod-gold);
}

.prod-breadcrumb span:last-child {
    color: #fff;
}

.prod-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 72px;
}

.prod-hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.prod-hero-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.prod-hero-head .prod-logo {
    width: 84px;
    height: 84px;
    border-radius: 24px;
}

.prod-hero h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.prod-hero-tagline {
    font-size: 20px;
    color: var(--prod-gold);
    font-weight: 600;
    margin: 0 0 18px;
}

.prod-hero-desc {
    color: var(--prod-text);
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 28px;
}

.prod-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.prod-hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.prod-hero-meta div {
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--prod-border);
    background: rgba(255, 255, 255, 0.03);
}

.prod-hero-meta span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--prod-muted);
    margin-bottom: 4px;
}

.prod-hero-meta strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.prod-hero-visual .prod-launch-frame {
    transform: perspective(1400px) rotateY(-8deg) rotateX(3deg);
}

.prod-hero-visual:hover .prod-launch-frame {
    transform: perspective(1400px) rotateY(0) rotateX(0);
}

.prod-detail-section {
    margin-bottom: 72px;
}

.prod-detail-section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px;
}

.prod-detail-section-head h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.prod-detail-section-head p {
    color: var(--prod-muted);
    margin: 0;
    line-height: 1.7;
}

.prod-richtext {
    max-width: 820px;
    margin: 0 auto;
    color: var(--prod-text);
    font-size: 16px;
    line-height: 1.85;
}

.prod-richtext p { margin: 0 0 16px; }
.prod-richtext ul, .prod-richtext ol { margin: 0 0 16px; padding-left: 22px; }
.prod-richtext li { margin-bottom: 6px; }
.prod-richtext strong { color: #fff; }
.prod-richtext h2, .prod-richtext h3 { color: #fff; margin: 28px 0 12px; }

.prod-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.prod-feature {
    position: relative;
    padding: 26px;
    border-radius: 22px;
    border: 1px solid var(--prod-border);
    background: var(--prod-card);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.prod-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(234, 179, 8, 0.28);
}

.prod-feature-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--prod-gold-soft);
    color: var(--prod-gold);
    margin-bottom: 16px;
    font-weight: 800;
}

.prod-feature-icon svg {
    width: 24px;
    height: 24px;
}

.prod-feature h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.prod-feature p {
    color: var(--prod-text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.prod-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.prod-gallery figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--prod-border);
    background: #0b0b0c;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.prod-gallery figure:hover {
    transform: translateY(-6px);
    border-color: rgba(234, 179, 8, 0.3);
}

.prod-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top;
}

.prod-gallery figcaption {
    padding: 12px 16px;
    font-size: 13px;
    color: var(--prod-muted);
    border-top: 1px solid var(--prod-border);
}

.prod-faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prod-faq details {
    border-radius: 16px;
    border: 1px solid var(--prod-border);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.prod-faq details[open] {
    border-color: rgba(234, 179, 8, 0.3);
}

.prod-faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    font-weight: 600;
    color: #fff;
}

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

.prod-faq summary::after {
    content: "+";
    font-size: 22px;
    color: var(--prod-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.prod-faq details[open] summary::after {
    transform: rotate(45deg);
}

.prod-faq-answer {
    padding: 0 22px 20px;
    color: var(--prod-text);
    line-height: 1.75;
    font-size: 15px;
}

.prod-final-cta {
    text-align: center;
    padding: clamp(36px, 5vw, 64px) 28px;
    border-radius: 32px;
    border: 1px solid rgba(234, 179, 8, 0.25);
    background:
        radial-gradient(circle at top, rgba(234, 179, 8, 0.18), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    margin-bottom: 64px;
}

.prod-final-cta h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}

.prod-final-cta p {
    color: var(--prod-text);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.75;
}

.prod-final-cta .prod-launch-actions {
    justify-content: center;
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */
@media (max-width: 992px) {
    .prod-launch,
    .prod-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .prod-launch-frame,
    .prod-hero-visual .prod-launch-frame {
        transform: none;
    }

    .prod-launch-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .prod-card {
        padding: 22px;
    }

    .prod-card-cover {
        margin: 0 -22px;
    }

    .prod-card-head {
        flex-direction: column;
    }

    .prod-card-badges {
        justify-content: flex-start;
    }

    .prod-hero-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .prod-btn {
        width: 100%;
    }

    .prod-card-actions .prod-btn {
        width: auto;
    }
}
