@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --abn-bg: #050505;
    --abn-surface: #111111;
    --abn-surface-hover: #1a1a1a;
    --abn-border: #332912;
    --abn-gold: #cca34d;
    --abn-gold-light: #ebd699;
    --abn-text-main: #f5f5f5;
    --abn-text-muted: #a3a3a3;
    --abn-font-heading: 'Cinzel', serif;
    --abn-font-body: 'Montserrat', sans-serif;
    --abn-radius: 4px;
    --abn-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

.abn-body {
    font-family: var(--abn-font-body);
    background-color: var(--abn-bg);
    color: var(--abn-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, .abn-logo, .abn-hero-title, .abn-section-title {
    font-family: var(--abn-font-heading);
    font-weight: 700;
}

/* Header */
.abn-header {
    background-color: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid var(--abn-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.abn-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.abn-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.abn-logo {
    font-size: 2rem;
    color: var(--abn-gold);
    letter-spacing: 2px;
}

.abn-brand-name {
    display: flex;
    flex-direction: column;
}

.abn-brand-name strong {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--abn-text-main);
}

.abn-brand-name span {
    font-size: 0.75rem;
    color: var(--abn-gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.abn-badge {
    border: 1px solid var(--abn-gold);
    color: var(--abn-gold);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--abn-radius);
}

/* Hero Section */
.abn-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    background: radial-gradient(circle at center, #1a1508 0%, var(--abn-bg) 70%);
}

.abn-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(204, 163, 77, 0.02) 10px,
        rgba(204, 163, 77, 0.02) 20px
    );
    pointer-events: none;
}

.abn-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.abn-hero-kicker {
    display: inline-block;
    color: var(--abn-gold);
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.abn-hero-title {
    font-size: 5rem;
    color: var(--abn-text-main);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.abn-hero-desc {
    font-size: 1.2rem;
    color: var(--abn-text-muted);
    max-width: 700px;
    margin: 0 auto 4rem;
    font-weight: 300;
}

.abn-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--abn-border);
    padding-top: 3rem;
}

.abn-hero-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.abn-hero-card-title {
    color: var(--abn-gold-light);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.abn-hero-card-val {
    color: var(--abn-text-main);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Sections */
.abn-section {
    padding: 6rem 2rem;
}

.abn-section-alt {
    background-color: var(--abn-surface);
    border-top: 1px solid var(--abn-border);
    border-bottom: 1px solid var(--abn-border);
}

.abn-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.abn-section-title {
    font-size: 2.5rem;
    color: var(--abn-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.abn-section-desc {
    text-align: center;
    color: var(--abn-text-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

/* Grid & Cards */
.abn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.abn-card {
    background: var(--abn-surface);
    border: 1px solid var(--abn-border);
    padding: 3rem 2rem;
    transition: var(--abn-transition);
    border-radius: var(--abn-radius);
    position: relative;
    overflow: hidden;
}

.abn-section-alt .abn-card {
    background: var(--abn-bg);
}

.abn-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--abn-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--abn-transition);
}

.abn-card:hover {
    transform: translateY(-5px);
    border-color: var(--abn-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.abn-card:hover::after {
    transform: scaleX(1);
}

.abn-card-kicker {
    color: var(--abn-gold-light);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.abn-card-title {
    font-size: 1.5rem;
    color: var(--abn-text-main);
    margin-bottom: 1rem;
}

.abn-card-text {
    color: var(--abn-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 45px;
}

.abn-card-list {
    list-style: none;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.abn-card-list li {
    color: var(--abn-text-main);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.abn-card-list li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--abn-gold);
    font-size: 0.8rem;
}

/* Footer */
.abn-footer {
    padding: 6rem 2rem 2rem;
    background-color: #030303;
    border-top: 1px solid var(--abn-border);
}

.abn-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.abn-footer-slogan {
    font-size: 2rem;
    color: var(--abn-gold);
    margin-bottom: 3rem;
    text-align: center;
}

.abn-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--abn-border);
}

.abn-footer-col p {
    color: var(--abn-text-muted);
    font-size: 0.95rem;
}

.abn-footer-col strong {
    color: var(--abn-text-main);
    display: block;
    margin-bottom: 0.5rem;
}

.abn-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.abn-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--abn-text-muted);
    font-size: 0.85rem;
}

.abn-footer-nav {
    display: flex;
    gap: 2rem;
}

.abn-nav-link {
    color: var(--abn-text-main);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--abn-transition);
}

.abn-nav-link:hover {
    color: var(--abn-gold);
}

/* Responsive */
@media (max-width: 992px) {
    .abn-hero-title { font-size: 4rem; }
    .abn-grid { grid-template-columns: repeat(2, 1fr); }
    .abn-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .abn-header-inner { flex-direction: column; gap: 1rem; }
    .abn-hero-title { font-size: 3rem; }
    .abn-hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .abn-grid { grid-template-columns: 1fr; }
    .abn-footer-bottom { flex-direction: column; text-align: center; align-items: center; }
    .abn-footer-contact { align-items: center; }
}
