@font-face {
    font-family: 'Abar';
    src: url('../fonts/Abar.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'abar';
    src: url('../fonts/Abar.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --font: 'Abar', Tahoma, sans-serif;
    --gold: #d4af37;
    --gold-light: #f0cf67;
    --gold-dark: #b68c1e;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --gold-gradient: linear-gradient(135deg, #f0cf67 0%, #d4af37 48%, #b68c1e 100%);
    --gold-gradient-soft: linear-gradient(135deg, rgba(240, 207, 103, 0.18) 0%, rgba(212, 175, 55, 0.08) 100%);
    --bg: #030303;
    --surface: rgba(14, 14, 14, 0.82);
    --surface-2: rgba(255, 255, 255, 0.035);
    --surface-hover: rgba(212, 175, 55, 0.06);
    --border: rgba(212, 175, 55, 0.2);
    --border-strong: rgba(212, 175, 55, 0.42);
    --text: #fafafa;
    --muted: #a3a3a3;
    --muted-2: #737373;
    --success: #4ade80;
    --danger: #ef4444;
    --warning: #fbbf24;
    --input-bg: rgba(0, 0, 0, 0.38);
    --input-bg-focus: rgba(212, 175, 55, 0.04);
    --input-border: rgba(255, 255, 255, 0.1);
    --focus-ring: 0 0 0 3px rgba(212, 175, 55, 0.14);
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.18);
    --header-h: 72px;
    --container: 1180px;
    --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --icon-box: 48px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
}

html, body, button, input, select, textarea {
    font-family: var(--font);
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-keep {
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

.btn-primary {
    background: var(--gold-gradient);
    color: #0a0a0a;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: none;
    filter: brightness(1.04);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.24);
}

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

.btn-outline:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.06);
}

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

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.16);
}

.section {
    padding: 96px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--gold-gradient-soft);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.section-label .icon {
    width: 14px;
    height: 14px;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.section-head h2 {
    font-size: clamp(1.6rem, 4vw, 2.35rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.section-head p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 auto;
    max-width: 200px;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-head { margin-bottom: 36px; }
    .container { width: min(100% - 28px, var(--container)); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .btn:hover { transform: none; }
}
