:root {
    --bg: #050814;
    --panel: #0b1020;
    --panel-2: #10182a;
    --text: #f7fbff;
    --muted: #aab8c8;
    --line: rgba(255, 255, 255, 0.12);
    --cyan: #19d6e5;
    --green: #2df0a2;
    --amber: #ffc21f;
    --orange: #ff7a18;
    --danger: #ff5c5c;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Tahoma, Arial, sans-serif;
    background:
        radial-gradient(circle at 18% 12%, rgba(25, 214, 229, 0.18), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(255, 194, 31, 0.16), transparent 25%),
        linear-gradient(180deg, #050814 0%, #080d18 48%, #07080d 100%);
    color: var(--text);
    font-size: 14px;
}

a {
    color: inherit;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px clamp(14px, 4vw, 46px);
    background: rgba(5, 8, 20, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

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

.brand img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(255, 194, 31, 0.5);
}

.brand span {
    display: grid;
    gap: 3px;
}

.brand strong {
    font-size: 18px;
    color: var(--amber);
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

nav {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 13px;
}

nav a {
    text-decoration: none;
}

nav a:hover {
    color: var(--amber);
}

.cart-toggle,
.button,
.filters button {
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.cart-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: var(--text);
    background: linear-gradient(135deg, rgba(25, 214, 229, 0.18), rgba(255, 194, 31, 0.16));
    border: 1px solid var(--line);
}

.cart-toggle span {
    min-width: 24px;
    min-height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #06101c;
    background: var(--amber);
}

.hero {
    width: min(1180px, calc(100% - 32px));
    min-height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: 30px;
    align-items: center;
    padding: 38px 0 28px;
}

.hero-copy {
    display: grid;
    gap: 18px;
}

.eyebrow {
    margin: 0;
    color: var(--green);
    font-weight: 700;
}

h1,
h2,
p {
    margin: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.3;
}

h2 {
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.35;
}

.hero-copy > p:not(.eyebrow),
.section-head p,
.guide p,
.policy-band p,
.contact p {
    color: var(--muted);
    line-height: 1.9;
    font-size: 14px;
}

.hero-actions,
.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    text-decoration: none;
}

.button.primary {
    color: #06101c;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 14px 34px rgba(255, 122, 24, 0.22);
}

.button.ghost {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.hero-visual img {
    width: min(100%, 360px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
}

.beam {
    position: absolute;
    inset-inline-end: -8%;
    width: 68%;
    height: 22%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 194, 31, 0.56), transparent);
    filter: blur(20px);
    transform: rotate(-8deg);
    z-index: -1;
}

.beam-one {
    bottom: 23%;
}

.beam-two {
    bottom: 32%;
    background: linear-gradient(90deg, rgba(25, 214, 229, 0.34), transparent);
}

.trust-strip {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
}

.trust-strip div {
    padding: 14px;
    display: grid;
    gap: 8px;
    border-inline-start: 1px solid var(--line);
}

.trust-strip div:last-child {
    border-inline-start: 0;
}

.trust-strip strong {
    color: var(--amber);
}

.trust-strip span {
    color: var(--muted);
    line-height: 1.8;
    font-size: 13px;
}

.promo-wall {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 18px;
}

.promo-main,
.promo-stack article,
.knowledge-grid article,
.faq details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.promo-main {
    min-height: 220px;
    padding: 22px;
    display: grid;
    align-content: center;
    gap: 14px;
    background:
        linear-gradient(135deg, rgba(255, 194, 31, 0.2), rgba(25, 214, 229, 0.07)),
        rgba(255, 255, 255, 0.055);
}

.promo-main span {
    color: var(--green);
    font-weight: 800;
}

.promo-main p,
.promo-stack span,
.knowledge-grid p,
.faq p {
    color: var(--muted);
    line-height: 1.85;
}

.promo-stack {
    display: grid;
    gap: 12px;
}

.promo-stack article {
    padding: 14px;
    display: grid;
    gap: 8px;
}

.promo-stack strong {
    color: var(--amber);
}

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0 0;
}

.section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.filters button {
    padding: 0 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
}

.filters button.active {
    color: #06101c;
    background: var(--amber);
    border-color: var(--amber);
}

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

.product-card {
    min-width: 0;
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.product-image {
    aspect-ratio: 1 / 1;
    min-height: 0;
    border-radius: 8px;
    background:
        radial-gradient(circle at 72% 52%, rgba(255, 194, 31, 0.92) 0 9%, rgba(255, 122, 24, 0.46) 10% 22%, transparent 23%),
        linear-gradient(135deg, rgba(25, 214, 229, 0.2), rgba(45, 240, 162, 0.08)),
        var(--panel-2);
    position: relative;
    overflow: hidden;
}

.product-image.has-photo {
    min-height: 0;
    background: #050814;
}

.product-image.has-photo img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: contain;
    padding: 8px;
    background: #f3f3f3;
}

.product-image::before {
    content: "";
    position: absolute;
    width: 64%;
    height: 34%;
    border: 3px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px 8px 24px 8px;
    inset-inline-end: 14%;
    top: 34%;
    box-shadow: inset 0 0 24px rgba(25, 214, 229, 0.2), 0 0 34px rgba(255, 194, 31, 0.15);
}

.product-image.has-photo::before,
.product-image.has-photo::after {
    display: none;
}

.product-image::after {
    content: "";
    position: absolute;
    width: 48%;
    height: 24%;
    inset-inline-start: -10%;
    top: 40%;
    background: linear-gradient(90deg, rgba(255, 194, 31, 0.5), transparent);
    filter: blur(8px);
}

.product-card h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.product-card p {
    color: var(--muted);
    line-height: 1.75;
    min-height: 76px;
    font-size: 12px;
}

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

.specs span {
    color: var(--cyan);
    background: rgba(25, 214, 229, 0.08);
    border: 1px solid rgba(25, 214, 229, 0.18);
    border-radius: 999px;
    padding: 5px 8px;
    font-size: 11px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price {
    color: var(--amber);
    font-size: 15px;
    font-weight: 800;
}

.add-button {
    color: #06101c;
    background: var(--green);
    padding: 0 12px;
    font-size: 12px;
}

.guide {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
    align-items: start;
}

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

.guide-grid article,
.contact-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.guide-grid article {
    display: grid;
    gap: 8px;
}

.guide-grid strong {
    color: var(--amber);
}

.guide-grid span {
    color: var(--muted);
    line-height: 1.9;
}

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

.knowledge-grid article {
    padding: 14px;
}

.knowledge-grid h3 {
    color: var(--amber);
    margin: 0 0 10px;
}

.policy-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 22px;
    margin-top: 58px;
    border: 1px solid rgba(255, 194, 31, 0.22);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 194, 31, 0.12), rgba(25, 214, 229, 0.06));
}

.policy-band ul {
    margin: 0;
    padding: 0 20px 0 0;
    color: var(--muted);
    line-height: 2.1;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 26px;
    padding-bottom: 54px;
}

.faq {
    padding-top: 0;
    padding-bottom: 54px;
}

.faq details {
    padding: 16px 18px;
    margin-bottom: 10px;
}

.faq summary {
    cursor: pointer;
    color: var(--amber);
    font-weight: 800;
}

.faq p {
    margin-top: 12px;
}

.contact-card {
    display: grid;
    gap: 10px;
}

.contact-card span {
    color: var(--muted);
}

.contact-card strong {
    color: var(--text);
    font-size: 16px;
}

.contact-card .address {
    font-size: 14px;
    line-height: 1.9;
}

.full-button {
    width: 100%;
}

.cart {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.58);
    display: none;
    justify-content: flex-start;
}

.cart.open {
    display: flex;
}

.cart-panel {
    width: min(420px, 100%);
    min-height: 100vh;
    margin-right: auto;
    padding: 20px;
    background: #080d18;
    border-inline-start: 1px solid var(--line);
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    gap: 16px;
}

.cart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-head button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    font-size: 24px;
}

.cart-items {
    display: grid;
    align-content: start;
    gap: 10px;
    overflow: auto;
}

.cart-item {
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.cart-item button {
    justify-self: start;
    color: var(--danger);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
    .topbar {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero,
    .guide,
    .policy-band,
    .contact,
    .promo-wall {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

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

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

@media (max-width: 620px) {
    .brand small {
        display: none;
    }

    .hero {
        padding-top: 22px;
        gap: 20px;
    }

    h1 {
        font-size: 29px;
    }

    h2 {
        font-size: 22px;
    }

    .hero-actions .button,
    .contact-card .button,
    .promo-main .button {
        width: 100%;
    }

    .trust-strip,
    .guide-grid,
    .knowledge-grid {
        grid-template-columns: 1fr;
    }

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

    .product-card {
        padding: 9px;
    }

    .product-card h3 {
        font-size: 13px;
    }

    .product-card p {
        min-height: 72px;
        font-size: 11px;
        line-height: 1.65;
    }

    .specs span {
        font-size: 10px;
        padding: 4px 6px;
    }

    .price-row {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }

    .add-button {
        width: 100%;
    }

    .section {
        padding-top: 42px;
    }

    .hero-visual img {
        width: min(100%, 280px);
    }

    .trust-strip div {
        border-inline-start: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-strip div:last-child {
        border-bottom: 0;
    }
}

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