:root {
    --bg: #17181d;
    --bg-soft: #20222a;
    --panel: #252832;
    --panel-strong: #111319;
    --text: #f4efe3;
    --muted: #cbb68a;
    --gold: #c9a862;
    --gold-soft: rgba(201, 168, 98, 0.16);
    --gold-strong: #e1c17b;
    --border: rgba(201, 168, 98, 0.22);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(201, 168, 98, 0.14), transparent 30%),
        linear-gradient(180deg, #15161b 0%, #1b1d24 50%, #121318 100%);
    color: var(--text);
    line-height: 1.6;
}

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

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

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(17, 19, 25, 0.82);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 86px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand-name {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-tag {
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav a {
    color: #efe3c5;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--gold-strong);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.header-cta {
    padding: 0.85rem 1.3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
    color: #17181d;
    box-shadow: 0 10px 30px rgba(201, 168, 98, 0.22);
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.hero {
    padding: 4.8rem 0 2.2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.4rem;
    align-items: center;
}

.eyebrow,
.section-label {
    margin: 0 0 0.85rem;
    color: var(--gold-strong);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 10ch;
}

.hero-text {
    margin: 1.3rem 0 0;
    font-size: 1.08rem;
    color: #e7dcc5;
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.95rem 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
    color: #17181d;
    box-shadow: 0 14px 32px rgba(201, 168, 98, 0.22);
}

.btn-secondary {
    color: var(--text);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.2rem;
}

.hero-logo-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    perspective: 1400px;
}

.hero-logo-tilt {
    position: relative;
    width: min(100%, 440px);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform-style: preserve-3d;
    animation: floatLogo 5s ease-in-out infinite;
    transition: transform 0.35s ease;
    overflow: visible;
}

.hero-logo-tilt:hover {
    transform: rotateX(10deg) rotateY(-12deg) translateY(-8px) scale(1.02);
}

.hero-logo-tilt:hover .hero-logo-large {
    transform: translateZ(30px) scale(1.04);
}

.hero-logo-glow {
    position: absolute;
    inset: -10% -20%;
    background: radial-gradient(circle, rgba(201, 168, 98, 0.14), transparent 60%);
    filter: blur(18px);
    opacity: 0.45;
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-logo-large {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 0;
    background: transparent;
    transform: translateZ(0);
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.24));
    mix-blend-mode: normal;
}

.hero-logo-cta {
    min-width: 180px;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.98);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.04);
    }
}

.metric-card,
.hero-card,
.value-card,
.product-card,
.contact-card,
.audience-card {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: var(--shadow);
}

.metric-card {
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.metric-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: #fff5dd;
}

.metric-card span {
    color: #d8c8a6;
    font-size: 0.92rem;
}

.hero-card {
    padding: 2rem;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 168, 98, 0.2), transparent 68%);
    pointer-events: none;
}

.hero-logo {
    width: 110px;
    margin-bottom: 1.25rem;
    border-radius: 18px;
}

.hero-card h2 {
    margin: 0 0 0.9rem;
    font-size: 1.7rem;
}

.hero-card p {
    margin: 0 0 1rem;
    color: #e4d6b8;
}

.hero-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #f0e4c7;
}

.section {
    padding: 5.8rem 0;
}

.section+.section {
    margin-top: 1rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.section h2,
.centered-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.section-grid p,
.contact-copy p {
    color: #dfd0b2;
}

.values-grid,
.product-grid,
.audience-grid {
    display: grid;
    gap: 1.25rem;
}

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

.value-card,
.product-card {
    padding: 1.5rem;
    border-radius: var(--radius-sm);
}

.card-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: rgba(201, 168, 98, 0.14);
    border: 1px solid rgba(201, 168, 98, 0.18);
    font-size: 1.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.audience-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.audience-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.value-card h3,
.product-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #fff3d8;
}

.value-card p,
.product-card p {
    margin: 0;
    color: #dccaa7;
}

.audience-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
}

.audience-card {
    padding: 1.2rem;
    text-align: center;
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: #fff1d2;
}

.products {
    background: linear-gradient(180deg, rgba(201, 168, 98, 0.05), transparent);
}

.partners-section {
    padding-top: 3.2rem;
}

.partners-slider {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    padding: 0.75rem 0;
}

.partners-slider::before,
.partners-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(90deg, #17181d 15%, rgba(23, 24, 29, 0));
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(270deg, #17181d 15%, rgba(23, 24, 29, 0));
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: scrollPartners 22s linear infinite;
}

.partner-logo {
    min-width: 240px;
    height: 96px;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    border: 1px solid rgba(201, 168, 98, 0.14);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

.partner-logo img {
    max-width: 160px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.02) contrast(1.02);
    opacity: 0.95;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.product-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem;
}

.product-card:nth-child(5) {
    grid-column: span 2;
}

.centered-title {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
}

.contact-card {
    border-radius: var(--radius);
    padding: 2rem;
}

.contact-item+.contact-item {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border);
}

.contact-item span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-strong);
    margin-bottom: 0.45rem;
}

.contact-item a,
.contact-item p {
    margin: 0;
    font-size: 1.05rem;
    color: #fff1d2;
}

.site-footer {
    padding: 1.4rem 0 2rem;
    border-top: 1px solid var(--border);
    background: rgba(10, 11, 15, 0.65);
}

.footer-top,
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: #d1be98;
}

.footer-top {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand p,
.footer-inner p {
    margin: 0.2rem 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer-links a {
    color: #ead4a2;
    font-weight: 600;
    transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--gold-strong);
}

.legal-page {
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
}

.legal-page h1 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
}

.legal-meta {
    margin-top: 1rem;
    color: #dfd0b2;
}

.legal-card {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: var(--shadow);
}

.legal-card h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: #fff3d8;
}

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

.legal-card p,
.legal-card li {
    color: #dccaa7;
}

.legal-card ul {
    margin: 0 0 1rem 1.2rem;
    padding: 0;
}

.products-intro {
    margin-top: 1rem;
    max-width: 65ch;
    color: #dfd0b2;
}

.products-showcase {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.2rem;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: var(--shadow);
}

.product-detail-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
}

.product-detail-content h2 {
    margin: 0 0 0.8rem;
    font-size: 1.6rem;
    color: #fff3d8;
}

.product-detail-content p {
    margin: 0;
    color: #dccaa7;
}

.purpose-section {
    padding-top: 1.8rem;
}

.purpose-card {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

@media (max-width: 1080px) {

    .hero-grid,
    .section-grid,
    .contact-grid,
    .values-grid,
    .product-grid,
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid,
    .section-grid,
    .contact-grid {
        align-items: stretch;
    }

    .hero-logo-tilt {
        width: 100%;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .product-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 820px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem 0;
    }

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

    .hero {
        padding-top: 3rem;
    }

    .hero-grid,
    .section-grid,
    .contact-grid,
    .values-grid,
    .product-grid,
    .audience-grid,
    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: none;
    }

    .footer-top,
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 1.2rem));
    }

    .brand {
        flex-direction: column;
        text-align: center;
    }

    .brand-logo {
        width: 68px;
        height: 68px;
    }

    .hero-card,
    .contact-card,
    .value-card,
    .product-card,
    .metric-card {
        padding: 1.2rem;
    }

    .header-cta,
    .btn {
        width: 100%;
    }
}