:root {
    --bg: #080b10;
    --bg-soft: #111827;
    --card: #161f2e;
    --primary: #ff6b00;
    --primary-soft: #ff8f3d;
    --text: #f8fafc;
    --muted: #a7b0c0;
    --line: rgba(255,255,255,.12);
    --success: #38d996;
}

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

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top right, rgba(255,107,0,.18), transparent 32%), var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

.container {
    width: min(1120px, 92%);
    margin: auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(8, 11, 16, .74);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.brand-logo {
    /* width: 46px; */
    /* height: 46px; */
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 8px 22px rgba(0,0,0,.28);
    width: 95px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
}

.menu {
    display: flex;
    gap: 26px;
    color: var(--muted);
    font-size: 14px;
}

.menu a:hover { color: var(--text); }

.hero {
    padding: 86px 0 70px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-soft);
    background: rgba(255,107,0,.12);
    border: 1px solid rgba(255,107,0,.28);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

h1 {
    font-size: clamp(42px, 7vw, 76px);
    line-height: .96;
    letter-spacing: -0.06em;
    margin-bottom: 24px;
}

h1 span { color: var(--primary); }

.hero p {
    color: var(--muted);
    font-size: 19px;
    max-width: 610px;
    margin-bottom: 30px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: .2s ease;
}

.btn-primary {
    background: var(--primary);
    color: #111;
}

.btn-primary:hover { transform: translateY(-2px); background: #ff8a2b; }

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

.btn-secondary:hover { border-color: var(--primary); }

.hero-card {
    position: relative;
    min-height: 500px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255,107,0,.26), rgba(22,31,46,.88)), url('https://images.unsplash.com/photo-1552674605-db6ffd4facb5?auto=format&fit=crop&w=1200&q=80') center/cover;
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.floating-box {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(8,11,16,.72);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.stat {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
}

.stat strong {
    display: block;
    font-size: 24px;
    color: var(--primary-soft);
}

.section { padding: 76px 0; }

.section-title {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-title h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.section-title p { color: var(--muted); font-size: 18px; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    border: 1px solid var(--line);
}

.card .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255,107,0,.15);
    color: var(--primary-soft);
    font-size: 24px;
    margin-bottom: 18px;
}

.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); }

.event {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255,107,0,.17), rgba(255,255,255,.04));
    border: 1px solid rgba(255,107,0,.26);
}

.event-date {
    display: grid;
    place-items: center;
    min-height: 280px;
    border-radius: 26px;
    background: var(--card);
    text-align: center;
    border: 1px solid var(--line);
}

.event-date strong {
    font-size: 86px;
    line-height: 1;
    color: var(--primary);
}

.event-date span {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.event-info h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.event-info p { color: var(--muted); margin-bottom: 18px; }

.event-list {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.event-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.event-list strong { color: var(--text); }

.pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.price {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--line);
}

.price small { color: var(--muted); }
.price strong { display: block; color: var(--success); font-size: 22px; margin-top: 6px; }

.cta {
    text-align: center;
    padding: 70px 28px;
    border-radius: 36px;
    background: linear-gradient(135deg, var(--primary), #ffbd59);
    color: #111;
}

.cta h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
}

.cta p {
    max-width: 680px;
    margin: 0 auto 26px;
    font-size: 18px;
    color: rgba(17,17,17,.78);
}

.cta .btn { background: #111; color: #fff; }

footer {
    padding: 36px 0;
    color: var(--muted);
    border-top: 1px solid var(--line);
    margin-top: 70px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hero, .event { grid-template-columns: 1fr; }
    .grid-3, .pricing { grid-template-columns: 1fr 1fr; }
    .menu { display: none; }
}

@media (max-width: 580px) {
    .grid-3, .pricing, .stats { grid-template-columns: 1fr; }
    .hero { padding-top: 54px; }
    .hero-card { min-height: 420px; }
}