:root {
    --bg: #070707;
    --panel: rgba(255,255,255,.085);
    --panel-strong: rgba(255,255,255,.13);
    --gold: #d7ad4a;
    --gold-2: #f2d37b;
    --muted: #b9b9b9;
    --white: #ffffff;
    --danger: #ff5c70;
}

* { box-sizing: border-box; }

body {
    font-family: Tahoma, Arial, sans-serif;
    min-height: 100vh;
}

.public-body {
    background:
        radial-gradient(circle at top right, rgba(215,173,74,.22), transparent 32%),
        radial-gradient(circle at 10% 25%, rgba(255,255,255,.1), transparent 25%),
        linear-gradient(135deg, #040404 0%, #111111 46%, #201703 100%);
    color: var(--white);
    overflow-x: hidden;
}

.hero-wrap {
    min-height: 100vh;
    padding: 56px 0;
    position: relative;
}

.hero-container { position: relative; z-index: 2; }

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: .55;
    pointer-events: none;
}
.orb-one {
    width: 310px;
    height: 310px;
    background: rgba(215,173,74,.18);
    left: 8%;
    top: 10%;
}
.orb-two {
    width: 210px;
    height: 210px;
    background: rgba(255,255,255,.1);
    right: 5%;
    bottom: 12%;
}

.hero-copy .eyebrow {
    display: inline-flex;
    padding: 9px 16px;
    border: 1px solid rgba(215,173,74,.35);
    color: var(--gold-2);
    border-radius: 999px;
    background: rgba(215,173,74,.08);
    margin-bottom: 22px;
    font-size: 14px;
}

.hero-copy h1 {
    font-size: clamp(34px, 5vw, 66px);
    line-height: 1.23;
    font-weight: 900;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
}

.hero-copy p {
    max-width: 640px;
    color: var(--muted);
    font-size: 18px;
    line-height: 2;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.trust-row span {
    padding: 10px 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    color: #e9e9e9;
    font-size: 13px;
}

.lookup-card, .result-card {
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
    backdrop-filter: blur(18px);
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,.38);
}

.lookup-card {
    padding: 32px;
}

.lookup-card-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}
.lookup-icon, .result-status {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #111;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font-weight: 900;
    font-size: 24px;
    flex-shrink: 0;
}
.lookup-card h2 { margin: 0; font-weight: 900; }
.lookup-card p { margin: 6px 0 0; color: var(--muted); }

.lookup-form label { color: #eeeeee; margin-bottom: 9px; }
.lookup-form .form-control, .lookup-form .form-select {
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(0,0,0,.32);
    color: white;
    border-radius: 18px;
    padding: 14px 16px;
}
.lookup-form .form-control::placeholder { color: rgba(255,255,255,.45); }
.lookup-form .form-control:focus, .lookup-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .25rem rgba(215,173,74,.18);
    background: rgba(0,0,0,.42);
    color: white;
}
.lookup-form .form-select option { color: #111; }

.btn-gold {
    border: none;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #15110a;
    font-weight: 900;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(215,173,74,.18);
}
.btn-gold:hover { color: #15110a; transform: translateY(-1px); }

.result-card {
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.result-status.danger {
    background: linear-gradient(135deg, #ff9aaa, var(--danger));
    color: #fff;
}
.result-notfound h3 { margin-bottom: 8px; font-weight: 900; }
.result-notfound p { color: var(--muted); margin-bottom: 0; }

.product-image-frame {
    min-height: 270px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.26);
    display: grid;
    place-items: center;
}
.product-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 32px;
    display: grid;
    place-items: center;
    background: rgba(215,173,74,.13);
    border: 1px solid rgba(215,173,74,.35);
    color: var(--gold-2);
    font-weight: 900;
    font-size: 34px;
}

.verified-badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(28, 197, 117, .14);
    color: #9ff0c3;
    border: 1px solid rgba(28, 197, 117, .24);
    font-size: 13px;
    margin-bottom: 12px;
}
.result-head h3 { font-size: 32px; font-weight: 900; margin-bottom: 5px; }
.result-head p { color: var(--gold-2); margin-bottom: 3px; }
.result-head small { color: var(--muted); }

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.spec-grid div {
    padding: 15px;
    border-radius: 18px;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.09);
}
.spec-grid span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 7px;
}
.spec-grid strong {
    color: white;
    font-size: 15px;
}
.description-box {
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(215,173,74,.08);
    border: 1px solid rgba(215,173,74,.18);
    color: #eadfbf;
    line-height: 2;
}

@media (max-width: 991px) {
    .hero-wrap { padding: 34px 0; }
    .lookup-card { padding: 24px; }
    .result-card { flex-direction: column; }
}

@media (max-width: 576px) {
    .spec-grid { grid-template-columns: 1fr; }
    .trust-row span { width: 100%; text-align: center; }
}
