/* =========================================
   LEWIS HAMILTON 44 — PREMIUM DESIGN SYSTEM
   ========================================= */

/* === CSS CUSTOM PROPERTIES === */
:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #141414;
    --black-surface: #1a1a1a;
    --gray-900: #1e1e1e;
    --gray-800: #2a2a2a;
    --gray-700: #3a3a3a;
    --gray-600: #555;
    --gray-400: #888;
    --gray-300: #aaa;
    --white: #f5f5f5;
    --white-pure: #ffffff;

    --red: #DC143C;
    --red-dark: #9B0A28;
    --red-glow: rgba(220, 20, 60, 0.3);
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #9A7B2F;
    --gold-glow: rgba(201, 168, 76, 0.3);
    --purple: #6B3FA0;
    --purple-glow: rgba(107, 63, 160, 0.25);

    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

    --nav-height: 80px;
    --section-pad: clamp(80px, 10vw, 140px);
    --container-max: 1200px;
    --container-wide: 1400px;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* === PRELOADER === */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-number {
    font-family: var(--font-display);
    font-size: clamp(80px, 15vw, 160px);
    background: linear-gradient(135deg, var(--gold), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--gray-800);
    margin: 20px auto;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 2px;
    animation: preloaderFill 2s var(--ease-out-expo) forwards;
}

@keyframes preloaderFill {
    to {
        width: 100%;
    }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gray-400);
    margin-top: 10px;
    text-transform: uppercase;
}

/* === NAVIGATION === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(20px, 4vw, 40px);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
    z-index: 10;
}

.logo-lh {
    color: var(--white);
}

.logo-44 {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-300);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-link-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--gold-glow);
    color: var(--black);
}

.nav-link-cta::after {
    display: none;
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 10;
}

.nav-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.nav-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 56px);
    letter-spacing: 2px;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--gold);
}

/* === HERO === */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-layers {
    position: absolute;
    inset: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(220, 20, 60, 0.1), transparent 60%),
        var(--black);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
    filter: contrast(1.2) brightness(0.5);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--black) 0%, var(--black) 35%, rgba(10, 10, 10, 0.4) 65%, rgba(10, 10, 10, 0.1) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.6) 85%, var(--black) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
}

/* Split layout */
.hero-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
}

@media (min-width: 1025px) {
    .hero-content {
        padding-left: max(40px, calc((100% - 1400px) / 2 + 40px));
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    padding-right: 40px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    opacity: 0;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
}

.badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.badge-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-name {
    position: relative;
    margin-bottom: 0;
}

.hero-first,
.hero-last {
    display: block;
    font-family: var(--font-display);
    line-height: 0.9;
    letter-spacing: 6px;
    opacity: 0;
}

.hero-first {
    font-size: clamp(52px, 10vw, 110px);
    color: var(--white);
}

.hero-last {
    font-size: clamp(62px, 12vw, 140px);
    background: linear-gradient(135deg, var(--white-pure), var(--gray-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-number {
    font-family: var(--font-display);
    font-size: clamp(140px, 22vw, 320px);
    line-height: 0.8;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.1), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 8px;
    color: var(--gray-400);
    margin-top: 16px;
    opacity: 0;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
    opacity: 0;
}

/* Hero portrait — right side */
.hero-portrait {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
    overflow: hidden;
}

.hero-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    max-height: 100vh;
    border-radius: 0;
    filter: contrast(1.05) brightness(0.95);
}

.hero-portrait-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--black) 0%, transparent 25%),
        linear-gradient(180deg, transparent 60%, var(--black) 100%),
        linear-gradient(0deg, transparent 80%, rgba(10, 10, 10, 0.3) 100%);
    pointer-events: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    z-index: 5;
}

.hero-scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gray-600);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 4px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 24px var(--red-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(220, 20, 60, 0.5);
}

.btn-ghost {
    border: 1px solid var(--gray-700);
    color: var(--white);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.btn-lg {
    padding: 20px 44px;
    font-size: 15px;
}

.btn-tier {
    width: 100%;
    justify-content: center;
    padding: 18px 36px;
    font-size: 14px;
    border-radius: 6px;
    margin-top: 24px;
}

.btn-tier-1 {
    background: linear-gradient(135deg, var(--gray-700), var(--gray-800));
    color: var(--white);
}

.btn-tier-1:hover {
    background: linear-gradient(135deg, var(--gray-600), var(--gray-700));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.btn-tier-2 {
    background: linear-gradient(135deg, #1a3a5c, #0d2137);
    color: var(--white);
    border: 1px solid rgba(100, 180, 255, 0.2);
}

.btn-tier-2:hover {
    border-color: rgba(100, 180, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(100, 180, 255, 0.15);
}

.btn-tier-3 {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
}

.btn-tier-3:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}

.btn-tier-4 {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-weight: 700;
}

.btn-tier-4:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--gold-glow);
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    letter-spacing: 2px;
    color: var(--white);
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-400);
    max-width: 540px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* === CAREER STATS === */
.career-section {
    padding: var(--section-pad) 0;
    position: relative;
    background: linear-gradient(180deg, var(--black), var(--black-light) 30%, var(--black-light) 70%, var(--black));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    perspective: 800px;
}

.stat-card-inner {
    background: var(--black-card);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
    transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-card-inner {
    border-color: var(--gray-700);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.stat-card:hover .stat-card-inner::before {
    opacity: 1;
}

.stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 64px);
    line-height: 1;
    color: var(--white-pure);
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-detail {
    font-size: 13px;
    color: var(--gray-400);
    font-style: italic;
}

/* === ABOUT === */
.about-section {
    padding: var(--section-pad) 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.8);
    transition: transform 0.8s var(--ease-out-expo);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-img-accent {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    pointer-events: none;
}

.about-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 15px;
    color: var(--gray-300);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--black-card);
    border: 1px solid var(--gray-800);
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--gold);
}

.highlight-icon {
    font-size: 24px;
}

.highlight-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.highlight-item span {
    font-size: 12px;
    color: var(--gray-400);
}

/* === TIMELINE === */
.timeline-section {
    padding: var(--section-pad) 0;
    overflow: hidden;
    background: var(--black-light);
}

.timeline-track-wrapper {
    overflow: hidden;
    margin-top: 40px;
}

.timeline-track {
    display: flex;
    gap: 32px;
    padding: 20px 40px 40px;
    width: max-content;
}

.timeline-item {
    width: 340px;
    flex-shrink: 0;
    position: relative;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 60px;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.timeline-card {
    background: var(--black-card);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.timeline-card:hover {
    border-color: var(--gray-700);
    transform: translateY(-4px);
}

.timeline-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.timeline-card-content {
    padding: 24px;
}

.timeline-card-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.timeline-card-content p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* === QUOTE === */
.quote-section {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(220, 20, 60, 0.08), transparent 70%);
}

.quote-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    width: 48px;
    height: 48px;
    color: var(--red);
    opacity: 0.5;
    margin-bottom: 24px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 300;
    line-height: 1.6;
    color: var(--white);
    font-style: italic;
}

.quote-author {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-top: 24px;
    letter-spacing: 2px;
}

/* === AWARDS === */
.awards-section {
    padding: var(--section-pad) 0;
    background: var(--black-light);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.award-card {
    perspective: 1000px;
    height: 220px;
    cursor: pointer;
}

.award-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s var(--ease-out-expo);
    transform-style: preserve-3d;
}

.award-card:hover .award-card-inner {
    transform: rotateY(180deg);
}

.award-front,
.award-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.award-front {
    background: var(--black-card);
    border: 1px solid var(--gray-800);
}

.award-back {
    background: linear-gradient(135deg, var(--gray-900), var(--black-card));
    border: 1px solid var(--gold);
    transform: rotateY(180deg);
}

.award-back p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.7;
}

.award-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.award-front h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.award-front p {
    font-size: 13px;
    color: var(--gray-400);
}

/* === VIP SECTION === */
.vip-section {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.vip-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vip-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.vip-glow-1 {
    top: -200px;
    right: -200px;
    background: var(--red);
}

.vip-glow-2 {
    bottom: -200px;
    left: -200px;
    background: var(--gold);
}

.vip-header {
    margin-bottom: 80px;
}

.vip-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trust-badge {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 1px;
}

/* TIER BLOCKS */
.tier-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 100px;
    padding: 48px;
    background: var(--black-card);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.tier-block:hover {
    border-color: var(--gray-700);
}

.tier-block:last-child {
    margin-bottom: 0;
}

.tier-reverse {
    direction: rtl;
}

.tier-reverse>* {
    direction: ltr;
}

.tier-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.tier-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
    filter: brightness(0.7) contrast(1.1);
}

.tier-image-wrapper:hover img {
    transform: scale(1.05);
}

.tier-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.8));
}

.tier-4-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(201, 168, 76, 0.15) 60%, rgba(10, 10, 10, 0.9));
}

.tier-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gray-700);
    border-radius: 4px;
    color: var(--white);
}

.tier-badge-gold {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.tier-name-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.tier-name {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    letter-spacing: 2px;
    color: var(--white);
}

.tier-name-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-price {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--red);
}

.tier-price-gold {
    color: var(--gold);
}

.tier-focus {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.tier-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tier-benefits li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tier-benefits strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.tier-benefits p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

.tier-legendary {
    border-color: rgba(201, 168, 76, 0.3);
    background: linear-gradient(135deg, var(--black-card), rgba(201, 168, 76, 0.03));
}

.tier-legendary:hover {
    border-color: var(--gold);
}

.tier-legendary-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold), var(--red), var(--gold));
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(20px);
}

.tier-legendary:hover .tier-legendary-glow {
    opacity: 0.2;
}

.tier-limited {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-align: center;
}

/* === FOOTER === */
.footer-section {
    background: var(--black);
}

.footer-cta {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(220, 20, 60, 0.1), transparent 60%);
}

.footer-cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 16px;
    position: relative;
}

.footer-cta-text {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 32px;
    position: relative;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-divider {
    height: 1px;
    background: var(--gray-800);
    margin: 40px 0 24px;
}

.footer-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy p {
    font-size: 13px;
    color: var(--gray-600);
}

.footer-built {
    color: var(--gray-600);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr 1fr;
        padding: 0 clamp(20px, 3vw, 40px);
    }

    .hero-content {
        padding-right: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tier-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tier-reverse {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        position: relative;
        z-index: 3;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-first {
        font-size: clamp(48px, 14vw, 80px);
    }

    .hero-last {
        font-size: clamp(56px, 16vw, 100px);
    }

    .hero-portrait {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .hero-portrait-img {
        object-position: center 20%;
    }

    .hero-portrait-overlay {
        background: rgba(10, 10, 10, 0.6);
    }

    .hero-cta-group {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card-inner {
        padding: 28px 16px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .award-card {
        height: 180px;
    }

    .tier-block {
        padding: 24px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-copy {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .vip-trust-badges {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .tier-name-row {
        flex-direction: column;
        gap: 4px;
    }
}

/* === UTILITY ANIMATIONS === */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}