:root {
    --bg: #0d0d0d;
    --panel: #151515;
    --panel-2: #1e1e1e;
    --text: #f7efe2;
    --muted: #c7bca8;
    --orange: #d45518;
    --orange-2: #f59a23;
    --cream: #f7efe2;
    --line: rgba(247, 239, 226, .18);
    --shadow: 0 24px 80px rgba(0,0,0,.35);
    --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #0a0a0a;
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 16px; background: var(--orange); padding: 10px 14px; z-index: 100; border-radius: 10px; }
.skip-link:focus { left: 16px; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10,10,10,.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
nav { display: flex; gap: 18px; font-size: 14px; color: var(--muted); }
nav a:hover { color: var(--cream); }
.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 72% 42%, rgba(212,85,24,.2), transparent 38%), linear-gradient(105deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 42%, rgba(0,0,0,.88) 100%); }
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    grid-template-areas:
        "copy visual"
        "info visual"
        "actions visual";
    gap: 22px 48px;
    align-items: start;
    padding: 56px 0 48px;
    min-height: 640px;
}
.hero-copy { grid-area: copy; align-self: end; }
.hero-visual {
    grid-area: visual;
    position: relative;
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: 520px;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.event-info-mini { grid-area: info; margin: 0; max-width: 520px; }
.hero-actions { grid-area: actions; }
.eyebrow { color: var(--orange-2); text-transform: uppercase; letter-spacing: .16em; font-weight: 900; font-size: 13px; margin: 0 0 10px; }
.eyebrow.dark { color: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(36px, 4.8vw, 68px); line-height: .92; letter-spacing: -.04em; text-transform: uppercase; margin-bottom: 14px; text-shadow: 0 10px 40px rgba(0,0,0,.6); }
h1 span { color: var(--orange-2); font-size: .56em; letter-spacing: -.02em; display: block; margin-top: 10px; }
.lead { color: var(--cream); font-size: clamp(17px, 1.8vw, 22px); max-width: 520px; margin-bottom: 0; }
.event-info-mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.event-info-mini div { border: 1px solid var(--line); background: rgba(15,15,15,.7); padding: 14px; border-radius: 16px; }
.event-info-mini strong { display: block; color: var(--orange-2); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.event-info-mini span { color: var(--muted); font-size: 14px; line-height: 1.35; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 20px; border-radius: 999px; font-weight: 900; cursor: pointer; transition: transform .18s ease, opacity .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #180904; box-shadow: 0 14px 30px rgba(212,85,24,.28); }
.btn-ghost { border: 1px solid var(--line); color: var(--cream); background: rgba(255,255,255,.06); }
.btn-full { width: 100%; border-radius: 18px; font-size: 17px; }
.motor {
    position: relative;
    width: min(480px, 100%);
    max-height: 360px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,.7));
    z-index: 1;
}
.badge-peace {
    position: absolute;
    width: min(200px, 42%);
    top: 8px;
    right: 0;
    transform: rotate(3deg);
    filter: drop-shadow(0 12px 18px rgba(0,0,0,.5));
    z-index: 2;
}
.intro-section { padding: 68px 0 28px; }
.section-heading { text-align: center; max-width: 800px; margin-inline: auto; }
.section-heading.left { text-align: left; margin-left: 0; }
.section-heading h2 { font-size: clamp(28px, 4vw, 48px); line-height: 1.02; letter-spacing: -.035em; margin-bottom: 14px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.packages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; padding: 28px 0 76px; }
.price-card, .merch-card, .payment-box, .order-form, .summary-box { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)); box-shadow: var(--shadow); }
.price-card { padding: 28px; border-radius: var(--radius); overflow: hidden; position: relative; min-height: 360px; }
.featured-card { background: radial-gradient(circle at 80% 15%, rgba(212,85,24,.24), transparent 42%), #111; }
.card-label { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: rgba(212,85,24,.16); color: var(--orange-2); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; margin-bottom: 14px; }
.price-card h3 { font-size: 38px; line-height: 1; letter-spacing: -.04em; margin-bottom: 12px; }
.price { color: var(--cream); font-size: 42px; font-weight: 950; letter-spacing: -.05em; margin-bottom: 18px; }
.icon-list { list-style: none; padding: 0; margin: 0; color: var(--muted); }
.icon-list li { padding: 10px 0; border-bottom: 1px solid rgba(247,239,226,.1); }
.icon-list li:before { content: "✓"; color: var(--orange-2); margin-right: 10px; font-weight: 900; }
.image-card img { width: 100%; height: 190px; object-fit: contain; margin-bottom: 18px; background: rgba(255,255,255,.06); border-radius: 16px; padding: 12px; }
.muted { color: var(--muted); }
.merch-section { padding: 18px 0 78px; }
.merch-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.merch-card { padding: 18px; border-radius: var(--radius); background-color: #131313; }
.merch-card img { width: 100%; height: 210px; object-fit: contain; background: #f8f6f1; border-radius: 16px; padding: 10px; }
.merch-card h3 { margin: 16px 0 2px; font-size: 26px; }
.merch-card p { color: var(--orange-2); font-weight: 950; font-size: 28px; margin: 0; }
.merch-card.highlight { border-color: rgba(245,154,35,.45); }
.form-section { padding: 86px 0; background: linear-gradient(180deg, #101010, #080808); border-top: 1px solid var(--line); }
.form-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: start; }
.form-copy { position: sticky; top: 104px; }
.form-copy h2 { font-size: clamp(34px, 5vw, 62px); line-height: .94; letter-spacing: -.05em; }
.form-copy > p { color: var(--muted); }
.payment-box { border-radius: var(--radius); padding: 22px; margin-top: 22px; }
.payment-box h3 { margin-bottom: 14px; }
dl { margin: 0; }
dl div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
dt { color: var(--muted); }
dd { margin: 0; text-align: right; font-weight: 800; }
.copy-chip { border: 1px solid rgba(245,154,35,.35); background: rgba(245,154,35,.12); color: var(--cream); border-radius: 999px; padding: 6px 10px; cursor: pointer; }
.order-form { padding: 24px; border-radius: var(--radius); }
fieldset { border: 1px solid var(--line); border-radius: 18px; padding: 20px; margin: 0 0 18px; }
legend { padding: 0 8px; color: var(--orange-2); font-weight: 950; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
label { display: grid; gap: 8px; color: var(--cream); font-weight: 800; margin-bottom: 14px; }
input, textarea, select { width: 100%; border: 1px solid rgba(247,239,226,.2); background: rgba(0,0,0,.24); color: var(--cream); border-radius: 14px; padding: 13px 13px; outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--orange-2); box-shadow: 0 0 0 4px rgba(245,154,35,.12); }
select option { color: #111; }
.field-grid { display: grid; gap: 14px; }
.field-grid.two { grid-template-columns: repeat(2, 1fr); }
.field-grid.three { grid-template-columns: repeat(3, 1fr); }
.option-row { display: grid; grid-template-columns: 1.2fr .6fr 120px; gap: 14px; align-items: center; padding: 14px; border: 1px solid rgba(247,239,226,.12); border-radius: 16px; margin-bottom: 12px; background: rgba(255,255,255,.035); }
.check-title { display: flex; align-items: center; gap: 10px; margin: 0; }
.check-title input { width: auto; accent-color: var(--orange); }
.option-row > span { font-weight: 950; color: var(--orange-2); }
.inline-fields { display: grid; grid-template-columns: 1fr 100px; gap: 10px; }
.bundle-fields { grid-template-columns: 1fr 1fr 90px; }
.merch-option { grid-template-columns: 1fr .45fr 1.2fr; }
.summary-box { border-radius: 18px; padding: 18px; background: #111; }
.summary-items { color: var(--muted); display: grid; gap: 6px; }
.summary-items .line { display: flex; justify-content: space-between; border-bottom: 1px dashed rgba(247,239,226,.14); padding: 8px 0; }
.summary-total { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.summary-total span { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.summary-total strong { font-size: 32px; color: var(--orange-2); }
.payment-note { margin-top: 14px; padding: 14px; border-radius: 14px; background: rgba(245,154,35,.1); color: var(--cream); }
.floating-wa { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.38); transition: transform .18s ease; }
.floating-wa:hover { transform: translateY(-2px); }
.floating-wa-icon { width: 32px; height: 32px; max-width: none; flex-shrink: 0; pointer-events: none; }
.notice { padding: 14px 16px; border-radius: 14px; margin: 0 0 18px; border: 1px solid var(--line); background: rgba(255,255,255,.05); }
.notice.error { border-color: rgba(255,85,85,.55); background: rgba(255,85,85,.1); color: #ffd6d6; }
.notice.success { border-color: rgba(40,209,70,.45); background: rgba(40,209,70,.1); }
@media (max-width: 900px) {
    nav { display: none; }
    .brand img { width: 56px; height: 56px; }
    .hero { min-height: auto; }
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "visual"
            "info"
            "actions";
        gap: 18px;
        padding: 32px 0 36px;
        min-height: auto;
        text-align: center;
    }
    .hero-copy,
    .event-info-mini,
    .hero-actions {
        justify-self: center;
        width: 100%;
        max-width: 400px;
    }
    .hero-copy { align-self: auto; }
    .hero-copy .lead { margin-inline: auto; }
    .hero-visual {
        justify-self: center;
        width: 100%;
        min-height: 0;
        max-width: min(100%, 480px);
        margin-top: 4px;
        padding-top: 80px;
    }
    .motor {
        width: 100%;
        max-height: 320px;
    }
    .badge-peace {
        width: 148px;
        top: 0;
        right: 6%;
    }
    .hero-actions {
        justify-content: center;
        gap: 10px;
    }
    .hero-actions .btn {
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
        padding: 13px 14px;
        font-size: 14px;
    }
    .packages-grid, .merch-grid, .form-layout { grid-template-columns: 1fr; }
    .form-copy { position: static; }
    .field-grid.two, .field-grid.three { grid-template-columns: 1fr; }
    .option-row, .merch-option { grid-template-columns: 1fr; }
    .inline-fields, .bundle-fields { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .container { width: min(100% - 22px, 1160px); }
    .order-form, fieldset, .price-card { padding: 16px; }
    .brand img { width: 64px; height: 64px; }
    h1 { font-size: 32px; }
    h1 span { font-size: .54em; margin-top: 6px; }
    .hero-visual { max-width: 100%; padding-top: 72px; }
    .motor { max-height: 300px; }
    .badge-peace { width: 132px; }
    .price { font-size: 34px; }
}
