:root {
    --red: #EB5C5A;
    --red-soft: #fdeceb;
    --ink: #1c1c1e;
    --charcoal: #333334;
    --muted: #6d6d75;
    --line: #ececee;
    --band: #f6f7f9;
    --radius: 18px;
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--charcoal);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

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

img {
    max-width: 100%;
    display: block;
}

.wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 14px;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 600;
    margin: 0;
    letter-spacing: -.01em;
}

.serif-em {
    font-style: italic;
    color: var(--red);
    font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 40px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 20px rgba(235, 92, 90, .28);
}

.btn-red:hover {
    box-shadow: 0 12px 26px rgba(235, 92, 90, .38);
}

.btn-outline {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
}

.btn-outline:hover {
    border-color: #d6d6da;
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-ghost-light {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .16);
}

/* ---------- Hero ---------- */
.hero {
    padding: 78px 0 96px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 40px;
    padding: 7px 15px;
    font-size: 13px;
    color: #55555c;
    margin-bottom: 26px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .03);
}

.badge b {
    color: var(--red);
}

.hero h1 {
    font-size: 62px;
    line-height: 1.02;
    letter-spacing: -.02em;
}

.hero-lead {
    font-size: 17px;
    color: var(--muted);
    max-width: 430px;
    margin: 26px 0 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.avatars span:first-child {
    margin-left: 0;
}

.social-proof p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.social-proof p b {
    color: var(--ink);
}

/* hero media card */
.hero-media {
    position: relative;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: -8% -6% -6% -6%;
    background: radial-gradient(60% 55% at 55% 40%, rgba(235, 92, 90, .55), rgba(235, 92, 90, 0) 70%);
    filter: blur(30px);
    z-index: 0;
}

.media-card {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 5 / 5.4;
    box-shadow: 0 30px 60px rgba(20, 20, 30, .18);
    background: #201a22;
}

.media-card video,
.media-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-chip {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.live-chip .live {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--red);
}

.live-chip h4 {
    margin: 4px 0 2px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    font-family: var(--sans);
}

.live-chip small {
    color: var(--muted);
    font-size: 12.5px;
}

.price-pill {
    background: var(--red-soft);
    color: var(--red);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 30px;
    white-space: nowrap;
}

/* ---------- Stats band ---------- */
.band {
    background: var(--band);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 46px 0;
}

.stat .num {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.stat .lbl {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted);
}

/* ---------- Sections ---------- */
section {
    padding: 96px 0;
}

.section-head h2 {
    font-size: 40px;
    line-height: 1.08;
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s;
}

.card:hover {
    box-shadow: 0 16px 40px rgba(20, 20, 30, .07);
    transform: translateY(-3px);
    border-color: #e2e2e6;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red-soft);
    color: var(--red);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.card h3 {
    font-family: var(--sans);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.card p {
    margin: 0;
    font-size: 14.5px;
    color: var(--muted);
}

/* ---------- Happening / events ---------- */
.head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.view-all {
    color: var(--red);
    font-weight: 600;
    font-size: 14.5px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.events {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}

.event-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease;
}

.event-card:hover {
    box-shadow: 0 18px 44px rgba(20, 20, 30, .1);
    transform: translateY(-3px);
}

.event-media {
    position: relative;
    aspect-ratio: 16 / 11;
}

.event-media .ph {
    width: 100%;
    height: 100%;
}

.ph-1 {
    background: linear-gradient(150deg, #f7b267, #c1568a 60%, #4b2e57);
}

.ph-2 {
    background: linear-gradient(150deg, #7b2ff7, #d5289e 60%, #241023);
}

.ph-3 {
    background: linear-gradient(150deg, #2b5876, #d97b4f 65%, #1a2733);
}

.tag {
    position: absolute;
    top: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
}

.tag-left {
    left: 12px;
}

.tag-right {
    right: 12px;
}

.event-body {
    padding: 18px 18px 22px;
}

.event-date {
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 6px;
}

.event-body h3 {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
}

.event-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
}

/* ---------- Dashboard section ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 60px;
    align-items: center;
}

.split h2 {
    font-size: 40px;
    line-height: 1.08;
    margin-bottom: 20px;
}

.split .lead {
    color: var(--muted);
    font-size: 16px;
    max-width: 440px;
    margin: 0 0 24px;
}

.check-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: grid;
    gap: 14px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--charcoal);
}

.check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--red-soft);
    color: var(--red);
    display: grid;
    place-items: center;
    flex: none;
}

/* browser mockup */
.browser {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(20, 20, 30, .12);
    background: #fff;
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot.r {
    background: #ff5f57;
}

.dot.y {
    background: #febc2e;
}

.dot.g {
    background: #28c840;
}

.browser-url {
    margin-left: 10px;
    font-size: 12.5px;
    color: #9a9aa2;
}

.browser-body {
    display: grid;
    grid-template-columns: 150px 1fr;
}

.db-side {
    border-right: 1px solid var(--line);
    padding: 18px 14px;
    background: #fafbfc;
    display: grid;
    gap: 6px;
    align-content: start;
}

.db-side a {
    font-size: 13px;
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 8px;
}

.db-side a.active {
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    border: 1px solid var(--line);
}

.db-main {
    padding: 18px;
}

.db-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.db-tile {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
}

.db-tile .t-lbl {
    font-size: 11px;
    color: var(--muted);
}

.db-tile .t-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-top: 4px;
}

.db-chart {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 92px;
}

.bars span {
    flex: 1;
    background: var(--red);
    opacity: .85;
    border-radius: 4px 4px 0 0;
}

.db-chart small {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    color: var(--muted);
}

/* ---------- CTA ---------- */
.cta-wrap {
    padding: 20px 0 100px;
}

.cta {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #17171b;
    color: #fff;
    padding: 66px 60px;
}

.cta::after {
    content: "";
    position: absolute;
    right: -10%;
    top: -30%;
    width: 55%;
    height: 160%;
    background: radial-gradient(closest-side, rgba(235, 92, 90, .5), transparent 70%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.cta h2 {
    color: #fff;
    font-size: 40px;
}

.cta p {
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    margin: 16px 0 30px;
    max-width: 430px;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {

    .hero-grid,
    .split {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .cards-3,
    .events {
        grid-template-columns: minmax(0, 1fr);
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .cta {
        padding: 46px 26px;
    }

    section {
        padding: 64px 0;
    }
}

@media (max-width: 560px) {
    .wrap {
        padding: 0 20px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    /* dashboard mockup: drop the sidebar and let the tiles shrink */
    .browser-body {
        grid-template-columns: minmax(0, 1fr);
    }

    .db-side {
        display: none;
    }

    .db-tiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .db-tile .t-num {
        font-size: 17px;
    }
}