@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* ===== TOKENS ===== */
:root {
    --gold: #C9A961;
    --gold-light: #e2d1a2;
    --copper: #B87333;
    --black: #050505;
    --black-2: #0a0a0a;
    --black-3: #111111;
    --black-4: #1a1a1a;
    --white: #f5f5f5;
    --white-soft: rgba(245, 245, 245, 0.7);
    --white-muted: rgba(245, 245, 245, 0.4);
    --border: rgba(245, 245, 245, 0.08);
    --border-hover: rgba(201, 169, 97, 0.3);
    --glow-gold: rgba(201, 169, 97, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 100px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font: 'Inter', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: default;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

@media (hover: hover) {
    .cursor-glow { opacity: 1; }
}

/* ===== NAVIGATION ===== */
.ab-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.ab-nav.scrolled {
    padding: 0.75rem 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.ab-nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ab-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.ab-logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--copper));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: 1px;
}

.ab-logo-text {
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.ab-nav-links {
    display: flex;
    gap: 2.5rem;
}

.ab-nav-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition);
    position: relative;
}

.ab-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.ab-nav-links a:hover {
    color: var(--white);
}

.ab-nav-links a:hover::after {
    width: 100%;
}

.ab-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ab-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.ab-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.ab-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.ab-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

.ab-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(30px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.ab-mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.ab-mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===== BUTTONS ===== */
.ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.ab-btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
}

.ab-btn-primary:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.25);
}

.ab-btn-ghost {
    background: transparent;
    color: var(--white-soft);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.ab-btn-ghost:hover {
    color: var(--white);
    border-color: var(--white-muted);
    background: rgba(255, 255, 255, 0.03);
}

.ab-btn-lg {
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
}

/* ===== HERO ===== */
.ab-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.ab-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ab-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 245, 245, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 245, 245, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

.ab-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.ab-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent 70%);
    top: -10%;
    right: -5%;
    animation: orbFloat 20s ease-in-out infinite;
}

.ab-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.1), transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.ab-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 70%);
    top: 40%;
    left: 40%;
    animation: orbFloat 18s ease-in-out infinite 5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.ab-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.2s forwards;
}

.ab-pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: relative;
}

.ab-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(2); opacity: 0; }
}

.ab-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.ab-title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ab-title-line[data-delay="0"] { animation-delay: 0.4s; }
.ab-title-line[data-delay="1"] { animation-delay: 0.55s; }
.ab-title-line[data-delay="2"] { animation-delay: 0.7s; }

.ab-title-accent {
    background: linear-gradient(135deg, var(--gold), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes heroSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    to { opacity: 1; }
}

.ab-hero-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.9s forwards;
}

.ab-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeIn 1s ease 1.1s forwards;
}

.ab-hero-metrics {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: heroFadeIn 1s ease 1.3s forwards;
}

.ab-metric-value {
    display: block;
    font-family: var(--font);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.ab-metric-label {
    font-size: 0.75rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    display: block;
}

.ab-metric-sep {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* ===== HERO ROW LAYOUT ===== */
.ab-hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    min-height: calc(100vh - 12rem);
}

.ab-hero-content {
    flex: 1;
    max-width: 600px;
}

/* ===== GLOBE ===== */
.ab-globe-wrapper {
    flex-shrink: 0;
    width: 650px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -160px;
}

.ab-globe {
    width: 600px;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-globe-sphere {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    position: relative;
    border: 1px solid rgba(201, 169, 97, 0.15);
    animation: globeSpin 30s linear infinite;
}

@keyframes globeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ab-globe-sphere .ab-globe-meridian,
.ab-globe-sphere .ab-globe-ring {
    animation: meridianShift 30s linear infinite;
}

@keyframes meridianShift {
    0% { opacity: 0.6; }
    25% { opacity: 1; }
    50% { opacity: 0.6; }
    75% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Latitude rings */
.ab-globe-ring {
    position: absolute;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.12);
    transform: translateX(-50%);
}

.ab-globe-ring-1 {
    width: 90%;
    height: 0;
    padding-bottom: 30%;
    top: 10%;
    border-color: rgba(201, 169, 97, 0.1);
}

.ab-globe-ring-2 {
    width: 98%;
    height: 0;
    padding-bottom: 25%;
    top: 25%;
    border-color: rgba(201, 169, 97, 0.15);
}

.ab-globe-ring-3 {
    width: 100%;
    height: 0;
    padding-bottom: 20%;
    top: 40%;
    border-color: rgba(201, 169, 97, 0.2);
}

.ab-globe-ring-4 {
    width: 98%;
    height: 0;
    padding-bottom: 25%;
    top: 55%;
    border-color: rgba(201, 169, 97, 0.15);
}

.ab-globe-ring-5 {
    width: 90%;
    height: 0;
    padding-bottom: 30%;
    top: 68%;
    border-color: rgba(201, 169, 97, 0.1);
}

/* Equator */
.ab-globe-equator {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.4), transparent);
    transform: translateY(-50%);
}

/* Meridians */
.ab-globe-meridian {
    position: absolute;
    top: 0;
    left: 50%;
    width: 60%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.12);
    transform: translateX(-50%);
}

.ab-globe-meridian-1 {
    transform: translateX(-50%) rotateY(0deg);
}

.ab-globe-meridian-2 {
    transform: translateX(-50%) rotateY(60deg);
    width: 80%;
}

.ab-globe-meridian-3 {
    transform: translateX(-50%) rotateY(-60deg);
    width: 80%;
}

/* Vertical axis */
.ab-globe-axis {
    position: absolute;
    top: -10%;
    left: 50%;
    width: 1px;
    height: 120%;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 97, 0.2), transparent);
    transform: translateX(-50%);
}

/* Glow behind globe */
.ab-globe-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 560px;
    height: 560px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.14) 0%, rgba(201, 169, 97, 0.05) 40%, transparent 70%);
    z-index: -1;
}

/* Outer pulsing ring */
.ab-globe-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 580px;
    height: 580px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.08);
    animation: globePulse 4s ease-in-out infinite;
}

@keyframes globePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.2; }
}

/* Floating connection dots */
.ab-globe-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.6), 0 0 20px rgba(201, 169, 97, 0.3);
    animation: dotFloat 6s ease-in-out infinite;
}

.ab-globe-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.3);
    animation: dotPing 3s ease-in-out infinite;
}

.ab-dot-1 { top: 20%; left: 25%; animation-delay: 0s; }
.ab-dot-2 { top: 35%; right: 15%; animation-delay: 1s; }
.ab-dot-3 { bottom: 30%; left: 18%; animation-delay: 2s; }
.ab-dot-4 { top: 15%; right: 30%; animation-delay: 0.5s; }
.ab-dot-5 { bottom: 20%; right: 25%; animation-delay: 1.5s; }
.ab-dot-6 { top: 50%; left: 8%; animation-delay: 2.5s; }

@keyframes dotFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(3px, -5px); }
    50% { transform: translate(-2px, 3px); }
    75% { transform: translate(4px, 2px); }
}

@keyframes dotPing {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.ab-hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.ab-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollFade 2.5s ease-in-out infinite;
}

@keyframes scrollFade {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== TICKER ===== */
.ab-ticker {
    background: var(--black-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
}

.ab-ticker-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.ab-ticker-track span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white-muted);
    flex-shrink: 0;
}

.ab-ticker-track a {
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.ab-ticker-track a:hover span {
    color: var(--gold);
}

.ab-ticker-dot {
    color: var(--gold) !important;
    font-size: 0.5rem !important;
    vertical-align: middle;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.ab-section {
    padding: 8rem 0;
    position: relative;
}

.ab-section-dark {
    background: var(--black-2);
}

.ab-section-black {
    background: var(--black);
}

.ab-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.ab-label-center {
    display: block;
    text-align: center;
}

.ab-heading-xl {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.ab-heading-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.ab-text-lg {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--white-muted);
    margin-bottom: 1.5rem;
}

.ab-text-gold {
    color: var(--gold);
}

.ab-text-muted {
    color: var(--white-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.ab-text-feature {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--white-soft);
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
}

/* ===== REVEAL ANIMATION ===== */
.ab-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ===== PILLARS ===== */
.ab-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ab-pillar-card {
    position: relative;
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.ab-pillar-card:hover {
    color: var(--white);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.ab-pillar-card:hover .ab-pillar-glow {
    opacity: 1;
}

.ab-pillar-card:hover .ab-pillar-cta {
    color: var(--gold);
}

.ab-pillar-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.ab-glow-gold {
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.1), transparent 70%);
}

.ab-glow-copper {
    background: radial-gradient(ellipse at 50% 0%, rgba(184, 115, 51, 0.12), transparent 70%);
}

.ab-glow-teal {
    background: radial-gradient(ellipse at 50% 0%, rgba(26, 61, 61, 0.2), transparent 70%);
}

.ab-pillar-featured {
    border-color: var(--border-hover);
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.04), var(--black-3) 40%);
}

.ab-pillar-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ab-pillar-number {
    font-family: var(--font);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(245, 245, 245, 0.03);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.ab-pillar-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.ab-pillar-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ab-pillar-domain {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    opacity: 0.7;
}

.ab-pillar-desc {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ab-pillar-list {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.ab-pillar-list li {
    font-size: 0.9rem;
    color: var(--white-soft);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0;
}

.ab-pillar-list li::before {
    content: '—';
    color: var(--gold);
    margin-right: 0.75rem;
    font-weight: 300;
}

.ab-pillar-list li:last-child {
    border-bottom: none;
}

.ab-pillar-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-muted);
    transition: color var(--transition);
    margin-top: auto;
}

/* ===== BIG STATEMENT ===== */
.ab-statement {
    padding: 10rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.ab-statement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.04), transparent 60%);
}

.ab-statement-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -1px;
    position: relative;
}

.ab-statement-text span {
    display: block;
}

/* ===== MANIFESTO ===== */
.ab-manifesto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.ab-manifesto-card {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.ab-manifesto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.ab-manifesto-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.ab-manifesto-card:hover::before {
    opacity: 1;
}

.ab-manifesto-num {
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.ab-manifesto-card h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.ab-manifesto-card p {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PODCAST ===== */
.ab-podcast-platforms {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ab-platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--white-soft);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition);
}

.ab-platform-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 97, 0.05);
}

.ab-podcast-card {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.ab-podcast-visual {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(184, 115, 51, 0.05));
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 60px;
}

.ab-waveform span {
    width: 4px;
    height: var(--h);
    background: var(--gold);
    border-radius: 4px;
    animation: waveform 1.5s ease-in-out infinite;
    animation-delay: var(--d);
    opacity: 0.6;
}

@keyframes waveform {
    0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 0.8; }
}

.ab-podcast-info {
    padding: 2rem;
}

.ab-podcast-ep {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.ab-podcast-info h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.ab-podcast-desc {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.6;
}

.ab-podcast-controls {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ab-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--black);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ab-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.ab-podcast-progress {
    flex: 1;
}

.ab-progress-track {
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.ab-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.ab-progress-time {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: var(--white-muted);
    font-variant-numeric: tabular-nums;
}

/* ===== CTA ===== */
.ab-cta {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    background: var(--black-2);
}

.ab-cta-bg {
    position: absolute;
    inset: 0;
}

.ab-orb-cta-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 70%);
    top: -20%;
    left: 30%;
    filter: blur(80px);
}

.ab-orb-cta-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.08), transparent 70%);
    bottom: -20%;
    right: 20%;
    filter: blur(80px);
}

.ab-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.ab-cta-form {
    margin-bottom: 3rem;
}

.ab-input-group {
    display: flex;
    gap: 0;
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.35rem;
    transition: border-color var(--transition);
}

.ab-input-group:focus-within {
    border-color: var(--border-hover);
}

.ab-input-group input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    padding: 0.85rem 1.5rem;
    font-family: var(--font);
    font-size: 0.95rem;
}

.ab-input-group input::placeholder {
    color: var(--white-muted);
}

.ab-input-group button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.ab-input-group button:hover {
    background: var(--gold-light);
    transform: scale(1.02);
}

.ab-cta-note {
    font-size: 0.8rem;
    color: var(--white-muted);
    margin-top: 1rem;
}

.ab-cta-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ab-cta-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.ab-cta-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== FOOTER ===== */
.ab-footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
}

.ab-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.ab-footer-brand {
    max-width: 320px;
}

.ab-footer-desc {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

.ab-social {
    display: flex;
    gap: 1rem;
}

.ab-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-muted);
    font-size: 0.85rem;
    transition: all var(--transition);
    text-decoration: none;
}

.ab-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.ab-footer-links {
    display: flex;
    gap: 4rem;
}

.ab-footer-col h5 {
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.ab-footer-col a {
    display: block;
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

.ab-footer-col a:hover {
    color: var(--gold);
}

.ab-footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.ab-footer-bottom p {
    font-size: 0.8rem;
    color: var(--white-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .ab-nav-links {
        display: none;
    }

    .ab-menu-toggle {
        display: flex;
    }

    .ab-btn-primary {
        display: none;
    }

    .ab-nav-actions .ab-btn-primary {
        display: none;
    }

    .ab-hero-row {
        flex-direction: column;
        gap: 3rem;
        min-height: auto;
    }

    .ab-globe-wrapper {
        width: 320px;
        height: 320px;
        order: -1;
    }

    .ab-globe {
        width: 280px;
        height: 280px;
    }

    .ab-globe-sphere {
        width: 220px;
        height: 220px;
    }

    .ab-globe-glow {
        width: 240px;
        height: 240px;
    }

    .ab-globe-pulse {
        width: 260px;
        height: 260px;
    }

    .ab-pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .ab-manifesto-grid {
        grid-template-columns: 1fr;
    }

    .ab-footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .ab-footer-brand {
        max-width: 100%;
    }

    .ab-footer-links {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .ab-footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .ab-section {
        padding: 5rem 0;
    }

    .ab-hero {
        padding: 7rem 0 4rem;
    }

    .ab-hero-metrics {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .ab-metric-sep {
        display: none;
    }

    .ab-statement {
        padding: 6rem 0;
    }

    .ab-cta {
        padding: 6rem 0;
    }

    .ab-pillar-card {
        padding: 2rem 1.5rem;
    }

    .ab-manifesto-card {
        padding: 2rem;
    }

    .ab-input-group {
        flex-direction: column;
        border-radius: var(--radius);
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .ab-input-group input {
        padding: 0.75rem 1rem;
    }

    .ab-input-group button {
        width: 100%;
        justify-content: center;
        padding: 0.85rem;
    }

    .ab-cta-links {
        flex-direction: column;
        align-items: center;
    }

    .ab-footer-links {
        gap: 2rem;
    }

    .ab-footer-col {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .ab-logo-text {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .ab-hero-tag {
        font-size: 0.7rem;
    }

    .ab-metric-value {
        font-size: 2rem;
    }

    .ab-podcast-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .ab-play-btn {
        align-self: center;
    }
}
