
:root {
    --bg: #050814;
    --bg-soft: #0b1022;
    --card-bg: #101528;
    --primary: #ffb547;
    --primary-soft: rgba(255, 181, 71, 0.16);
    --accent: #34e1ff;
    --accent-soft: rgba(52, 225, 255, 0.14);
    --text: #f5f7ff;
    --muted: #a0a4c0;
    --danger: #ff4b81;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --shadow-soft: 0 22px 60px rgba(0,0,0,0.6);
    --shadow-soft-small: 0 12px 35px rgba(0,0,0,0.55);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top, #141b3b 0, #050814 50%, #02030a 100%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(1120px, 100% - 32px);
    margin-inline: auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(5, 8, 20, 0.98), rgba(5, 8, 20, 0.8), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: radial-gradient(circle at 10% 0, #fff 0, #ffb547 15%, #ff4b81 40%, #141b3b 100%);
    box-shadow:
        0 0 16px rgba(255, 181, 71, 0.7),
        0 0 40px rgba(255, 75, 129, 0.5);
    position: relative;
    overflow: hidden;
}

.brand-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 0, rgba(255,255,255,0.55), transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.9;
}

.brand-text-main {
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.brand-text-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.16em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.86rem;
}

.nav a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted);
    position: relative;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    inset: auto 12px -6px 12px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.03);
    transform: translateY(-1px);
}

.nav a:hover::after,
.nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav a.is-active {
    color: var(--text);
    background: linear-gradient(120deg, rgba(255,181,71,0.1), rgba(52,225,255,0.08));
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    border-radius: 999px;
    padding: 8px 16px;
    border: 0;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    white-space: nowrap;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb547, #ff4b81);
    color: #050814;
    box-shadow: 0 16px 35px rgba(0,0,0,0.65);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.8);
}

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

.btn-ghost:hover {
    border-color: rgba(255,255,255,0.28);
    color: var(--text);
    background: rgba(255,255,255,0.03);
}

.pill-live {
    border-radius: 999px;
    padding: 5px 10px;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.7rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(12px);
    background: rgba(5,8,20,0.65);
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #fff, #32ff7e);
    box-shadow: 0 0 9px rgba(50,255,126,0.9);
    animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

/* HERO */

.hero {
    padding: 32px 0 48px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 10px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(52,225,255,0.16), transparent);
    border: 1px solid rgba(52,225,255,0.35);
}

.eyebrow span.badge-hot {
    border-radius: 999px;
    padding: 3px 7px;
    background: rgba(5,8,20,0.9);
    border: 1px solid rgba(255,181,71,0.5);
    color: var(--primary);
    font-size: 0.68rem;
}

.hero-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin: 14px 0 10px;
    line-height: 1.08;
}

.hero-title span.highlight {
    background: linear-gradient(120deg, #ffb547, #ff4b81);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 22px rgba(0,0,0,0.9);
}

.hero-lead {
    color: var(--muted);
    font-size: 0.96rem;
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.75rem;
}

.badge {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--muted);
}

.badge-rtp {
    border-color: rgba(52,225,255,0.5);
    color: var(--accent);
    background: var(--accent-soft);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 0.78rem;
    color: var(--muted);
}

.hero-note strong {
    color: var(--primary);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 8px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-item span.value {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
}

.hero-visual {
    position: relative;
    padding: 16px;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top left, rgba(255,181,71,0.18), transparent 55%),
                radial-gradient(circle at bottom, rgba(52,225,255,0.16), transparent 60%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-soft);
}

.hero-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(5,8,20,0.88);
    border: 1px solid rgba(255,255,255,0.09);
    font-size: 0.7rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.hero-card-main {
    border-radius: 20px;
    background: radial-gradient(circle at 30% 0, #ffe2b0 0, #ffb547 28%, #ff4b81 52%, #3e1a68 78%, #050814 100%);
    padding: 18px 16px 16px;
    color: #050814;
    position: relative;
    overflow: hidden;
}

.hero-card-main::after {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0 0, rgba(255,255,255,0.8), transparent 55%),
        radial-gradient(circle at 100% 50%, rgba(255,0,120,0.8), transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.7;
    pointer-events: none;
}

.hero-card-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.hero-card-title {
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero-card-chip {
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(5,8,20,0.8);
    color: #ffe2b0;
}

.hero-card-body {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
    gap: 10px;
    align-items: end;
}

.hero-card-label {
    font-size: 0.68rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-card-rates {
    font-size: 1.4rem;
    font-weight: 800;
}

.hero-card-rates span.sub {
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 6px;
}

.hero-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.68rem;
}

.hero-card-badge {
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(5,8,20,0.7);
}

.hero-card-reel {
    justify-self: end;
    width: 132px;
    height: 86px;
    border-radius: 18px;
    border: 3px solid rgba(255,255,255,0.7);
    background: conic-gradient(from 0deg, #fff8e5, #ffd36f, #ffb547, #ff8cab, #ffe2b0, #fff8e5);
    box-shadow: 0 0 0 2px rgba(5,8,20,0.6);
    position: relative;
    overflow: hidden;
}

.hero-card-reel-inner {
    position: absolute;
    inset: 8px;
    border-radius: 12px;
    background: repeating-linear-gradient(
        90deg,
        rgba(5,8,20,0.94) 0,
        rgba(5,8,20,0.94) 28px,
        rgba(15,24,54,0.95) 28px,
        rgba(15,24,54,0.95) 30px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    animation: reelSlide 1.6s linear infinite;
}

@keyframes reelSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-32px); }
}

.hero-card-symbol {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: radial-gradient(circle at 20% 0, #fff, #ffe2b0 32%, #ffb547 60%, #c9184a 100%);
    box-shadow:
        0 0 12px rgba(255, 181, 71, 0.8),
        0 0 22px rgba(255, 75, 129, 0.9);
}

.hero-card-symbol.scatter {
    background: radial-gradient(circle at 10% 0, #fff, #ffe2b0 25%, #34e1ff 60%, #4c6fff 100%);
}

.hero-card-footer {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
}

.hero-card-guarantee {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-card-guarantee span.label {
    opacity: 0.8;
}

.hero-card-guarantee span.value {
    font-weight: 600;
}

.hero-card-pill {
    border-radius: 999px;
    padding: 4px 8px;
    background: rgba(5,8,20,0.85);
    border: 1px solid rgba(5,8,20,0.8);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hero-card-pill span.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 10%, #fff, #32ff7e);
    box-shadow: 0 0 10px rgba(50,255,126,0.9);
}

.hero-floating {
    margin-top: 12px;
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(0,1fr);
    gap: 10px;
}

.hero-floating-card {
    border-radius: 16px;
    padding: 10px 12px;
    background: rgba(5,8,20,0.88);
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.7rem;
    color: var(--muted);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft-small);
}

.hero-floating-card strong {
    color: var(--primary);
}

.hero-floating-note {
    font-size: 0.68rem;
    color: var(--muted);
    text-align: right;
    align-self: center;
}

/* SECTIONS */

.section {
    padding: 8px 0 40px;
}

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

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.section-sub {
    font-size: 0.82rem;
    color: var(--muted);
    max-width: 380px;
}

.pill-soft {
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.7rem;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(5,8,20,0.9);
}

/* PRODUCT GRID */

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

.product-card {
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, rgba(255,181,71,0.18), rgba(5,8,20,0.96) 38%, #050814 100%);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 12px;
    box-shadow: var(--shadow-soft-small);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top left, rgba(255,181,71,0.65), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    mix-blend-mode: soft-light;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px rgba(0,0,0,0.85);
    border-color: rgba(255,181,71,0.6);
}

.product-card:hover::after {
    opacity: 0.75;
}

.product-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--muted);
}

.product-badge {
    border-radius: 999px;
    padding: 3px 8px;
    background: rgba(5,8,20,0.92);
    border: 1px solid rgba(255,255,255,0.1);
}

.product-image {
    margin-top: 6px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 0, #ffe2b0, #ffb547 32%, #ff4b81 70%, #20113a 100%);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: "LINK EXOTOTO EXCLUSIVE";
    position: absolute;
    inset: auto -30%;
    top: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.16;
    text-align: center;
    transform: rotate(-10deg);
    color: #050814;
}

.product-symbols {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.product-symbol {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: radial-gradient(circle at 20% 0, #fff, #ffe2b0 30%, #ffb547 65%, #ff4b81 100%);
    box-shadow:
        0 0 18px rgba(255, 181, 71, 0.9),
        0 0 30px rgba(255, 75, 129, 0.95);
}

.product-symbol.blue {
    background: radial-gradient(circle at 20% 0, #fff, #e3fbff 30%, #34e1ff 65%, #4c6fff 100%);
    box-shadow:
        0 0 18px rgba(52, 225, 255, 0.9),
        0 0 30px rgba(76, 111, 255, 0.95);
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.product-meta {
    font-size: 0.76rem;
    color: var(--muted);
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
    margin-top: 4px;
}

.product-price-main {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.price {
    font-weight: 700;
    font-size: 1.05rem;
}

.price small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--muted);
    margin-left: 4px;
}

.price-striked {
    font-size: 0.7rem;
    color: var(--muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.product-tagline {
    font-size: 0.7rem;
    color: var(--accent);
}

.product-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-top: 10px;
}

.btn-pill {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.74rem;
    border: 0;
    cursor: pointer;
    background: rgba(5,8,20,0.9);
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-pill svg {
    width: 12px;
    height: 12px;
}

.stock-pill {
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.68rem;
    background: rgba(6, 95, 70, 0.7);
    color: #b9ffe0;
}

/* FEATURE STRIP */

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.feature-card {
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(5,8,20,0.9);
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.78rem;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

/* TESTIMONIALS */

.testimonial-row {
    display: grid;
    grid-template-columns: 2.1fr 1.4fr;
    gap: 18px;
    margin-top: 8px;
}

.testimonial-card {
    border-radius: var(--radius-lg);
    padding: 14px 14px 12px;
    background: linear-gradient(145deg, rgba(5,8,20,0.96), rgba(10,16,40,0.96));
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.author-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb547, #ff4b81);
}

.author-name {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text);
}

.author-meta {
    font-size: 0.68rem;
    color: var(--muted);
}

.rating {
    font-size: 0.78rem;
    color: #ffdd69;
}

.rating span {
    font-size: 0.9rem;
    margin-right: 3px;
}

.testimonial-note {
    font-size: 0.72rem;
    color: var(--muted);
}

.pill-mini {
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 0.68rem;
    background: rgba(5,8,20,0.9);
    border: 1px solid rgba(255,255,255,0.06);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.stat-big {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

/* CTA SECTION */

.cta-strip {
    margin-top: 24px;
    border-radius: var(--radius-xl);
    padding: 16px 16px 14px;
    background: radial-gradient(circle at 0 0, rgba(255,181,71,0.23), transparent 55%),
                radial-gradient(circle at 100% 0, rgba(52,225,255,0.18), transparent 55%),
                rgba(5,8,20,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.cta-strip-title {
    font-size: 0.98rem;
    font-weight: 600;
}

.cta-strip-sub {
    font-size: 0.8rem;
    color: var(--muted);
    max-width: 420px;
}

.cta-strip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-outline-light {
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 0.78rem;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.06);
}

/* PAGE STYLES: ABOUT, PRODUCTS, CONTACT */

.page-hero {
    padding: 28px 0 12px;
}

.page-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.page-lead {
    font-size: 0.94rem;
    color: var(--muted);
    max-width: 560px;
}

.breadcrumbs {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 6px;
}

.breadcrumbs a {
    color: var(--muted);
}

.breadcrumbs span.current {
    color: var(--accent);
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 22px;
}

.card {
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    background: rgba(5,8,20,0.96);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-soft-small);
    font-size: 0.88rem;
    color: var(--muted);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 1rem;
    color: var(--text);
}

.card p {
    margin: 4px 0;
    line-height: 1.6;
}

.bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 6px 0 0;
}

.bullet-list li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
    font-size: 0.86rem;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.chip {
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.72rem;
    background: rgba(5,8,20,0.9);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--muted);
}

.subtle-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 4px;
}

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

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.76rem;
}

.filter-pill {
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(5,8,20,0.92);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    color: var(--muted);
}

.filter-pill.is-active {
    border-color: rgba(255,181,71,0.7);
    background: rgba(255,181,71,0.08);
    color: var(--text);
}

.table-mini {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    color: var(--muted);
}

.table-mini th,
.table-mini td {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: left;
}

.table-mini th {
    font-weight: 500;
    color: var(--text);
}

.badge-soft {
    border-radius: 999px;
    padding: 3px 7px;
    font-size: 0.68rem;
    background: rgba(5,8,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 20px;
}

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

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

.field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--muted);
}

.field label {
    font-size: 0.78rem;
}

.field input,
.field textarea,
.field select {
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    padding: 8px 9px;
    background: rgba(5,8,20,0.96);
    color: var(--text);
    font-size: 0.8rem;
    outline: none;
}

.field textarea {
    resize: vertical;
    min-height: 80px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: rgba(255,181,71,0.7);
    box-shadow: 0 0 0 1px rgba(255,181,71,0.4);
}

.contact-meta-list {
    list-style: none;
    padding-left: 0;
    margin: 6px 0 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.contact-meta-list li {
    margin-bottom: 4px;
}

/* FOOTER */

.site-footer {
    margin-top: auto;
    padding: 20px 0 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: radial-gradient(circle at top, rgba(17,24,39,0.75), rgba(5,8,20,0.98));
    font-size: 0.74rem;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: var(--muted);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-badge {
    border-radius: 999px;
    padding: 4px 8px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(5,8,20,0.9);
    font-size: 0.68rem;
}

/* UTIL */

.mt-xs { margin-top: 6px; }
.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 16px; }

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero-grid,
    .two-col,
    .testimonial-row,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 24px;
    }

    .hero-visual {
        order: -1;
    }

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

@media (max-width: 700px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .nav {
        order: 2;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .product-grid,
    .feature-strip,
    .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .cta-strip {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-card-body {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card-reel {
        justify-self: start;
    }
}
