:root {
    --bg: #070707;
    --panel: rgba(255,255,255,0.055);
    --panel-strong: rgba(255,255,255,0.085);
    --line: rgba(255,255,255,0.12);
    --warm-line: rgba(255,122,24,0.24);
    --text: #f4f1ea;
    --muted: #b9b1a8;
    --quiet: #8e867e;
    --orange: #ff7a18;
    --gold: #d8a441;
    --radius: 26px;
    --shadow: 0 22px 70px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% -8%, rgba(255,122,24,0.22), transparent 28rem),
        radial-gradient(circle at 90% 0%, rgba(216,164,65,0.10), transparent 30rem),
        linear-gradient(180deg, #050505 0%, #101011 48%, #070707 100%);
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 92px 92px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.68), transparent 74%);
    z-index: -1;
}

a { color: var(--orange); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(7,7,7,0.70);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--line);
}

.nav {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.topbar-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 16px;
    border: 1px solid var(--warm-line);
    background: rgba(255,122,24,0.065);
    border-radius: 999px;
    color: var(--gold) !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.topbar-badge:hover {
    border-color: rgba(255,122,24,0.42);
    color: var(--gold) !important;
    filter: brightness(1.08);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

nav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

nav a {
    color: rgba(244,241,234,0.82);
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

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

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 22px;
}

.hero {
    padding: 76px 0 92px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 74px;
    align-items: center;
}

.hero-copy {
    max-width: 790px;
    padding-top: 4px;
}

.hero-logo {
    justify-self: end;
    align-self: center;
    width: 310px;
    height: 310px;
    margin-top: 34px;
    object-fit: cover;
    border-radius: 48px;
    border: 1px solid var(--warm-line);
    box-shadow:
        0 0 56px rgba(255,122,24,0.20),
        var(--shadow);
}

.kicker {
    display: inline-flex;
    margin-bottom: 30px;
    padding: 7px 12px;
    border: 1px solid var(--warm-line);
    background: rgba(255,122,24,0.065);
    border-radius: 999px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 22px;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.03;
    letter-spacing: -2px;
}

h1 span, h2 span { color: var(--orange); }

.hero p {
    max-width: 680px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 19px;
}

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

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #140b04;
    text-decoration: none;
    font-weight: 950;
    box-shadow: 0 16px 32px rgba(255,122,24,0.18);
}

.button.secondary {
    background: rgba(255,255,255,0.045);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.section {
    padding: 48px 0;
}

.products-section {
    padding-bottom: 110px;
}

.section-header {
    max-width: 760px;
    margin-bottom: 26px;
}

h2 {
    margin: 0 0 12px;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.1px;
}

.section-header p, .muted {
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 22px;
}

.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }

.card, .content {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--panel-strong), var(--panel));
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.card {
    padding: 30px;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 23px;
}

.card p, .content p, .content li {
    color: var(--muted);
}

.product-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.badge {
    display: inline-flex;
    width: max-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--warm-line);
    background: rgba(255,122,24,0.065);
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.product-link {
    margin-top: 20px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 950;
}

.page-hero {
    padding: 74px 0 34px;
    max-width: 820px;
}

.page-title {
    font-size: clamp(40px, 5vw, 62px);
}

.content {
    padding: 34px;
    margin-bottom: 48px;
}

.content h2 {
    margin-top: 34px;
    font-size: 27px;
}

.content h2:first-child { margin-top: 0; }

.content h3 {
    margin-top: 24px;
}

.feature-list {
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-list li {
    border: 1px solid var(--line);
    background: rgba(0,0,0,0.18);
    border-radius: 16px;
    padding: 13px 15px;
    color: var(--text);
    font-weight: 820;
}

.notice {
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--warm-line);
    background: rgba(255,122,24,0.07);
    color: var(--text);
}

.social-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.045);
    color: var(--text);
    text-decoration: none;
    font-weight: 850;
}

.footer {
    border-top: 1px solid var(--line);
    background: rgba(0,0,0,0.30);
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 560px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 800;
}

.small {
    color: var(--quiet);
    font-size: 14px;
}

@media (max-width: 880px) {
    .nav {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .hero {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 56px;
    }

    .hero-logo {
        justify-self: start;
        width: 190px;
        height: 190px;
        margin-top: 8px;
        border-radius: 34px;
    }

    .grid.two, .grid.three, .feature-list {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    nav { gap: 14px; }
    .topbar-badge {
        font-size: 11px;
        letter-spacing: 1.35px;
        padding: 7px 12px;
    }
    .content { padding: 24px; }
}

/* v8 professional polish */
.card,
.content {
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.card:hover {
    border-color: rgba(255,122,24,0.28);
    transform: translateY(-2px);
}

.button:hover,
.product-link:hover,
nav a:hover,
.footer-links a:hover {
    filter: brightness(1.08);
}


/* v10 fix: top bar badge restored to original pill style and placed left */
.site-header .topbar-badge {
    text-decoration: none !important;
}


/* v12: social placeholders removed, badge retained */
.nav-right nav {
    margin-left: auto;
}
