:root {
    --gold: #f5a623;
    --gold-light: #ffd080;
    --navy: #0d1b4b;
    --bg: #f7f6f2;
    --surface: #ffffff;
    --surface2: #efeee9;
    --text: #0d1b4b;
    --muted: #6b7a9e;
    --border: rgba(13, 27, 75, 0.1);
    --shadow: 0 2px 20px rgba(13, 27, 75, 0.07);
    --r: 20px;
    --rs: 12px;
}
[data-theme="dark"] {
    --bg: #000000;
    --surface: #0f0f0f;
    --surface2: #1a1a1a;
    --navy: #111111;
    --text: #f5f5f5;
    --muted: #888888;
    --border: rgba(245, 166, 35, 0.18);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
    transition:
        background 0.35s,
        color 0.35s;
    overflow-x: hidden;
    line-height: 1;
}

#bgc {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}
[data-theme="dark"] #bgc {
    opacity: 0.5;
}
.page-wrap {
    position: relative;
    z-index: 1;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(247, 246, 242, 0.85);
    border-bottom: 1px solid var(--border);
    transition:
        background 0.35s,
        border-color 0.35s;
}
[data-theme="dark"] nav {
    background: rgba(0, 0, 0, 0.92);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}
.nav-logo img {
    width: 34px;
    height: 34px;
}
.nav-logo span {
    font-family: "sora", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-cta {
    background: var(--gold);
    color: var(--navy);
    font-family: "sora", sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 18px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    letter-spacing: -0.1px;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(245, 166, 35, 0.4);
}
.theme-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text);
    transition: background 0.3s;
}
.theme-btn:hover {
    background: var(--surface2);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.4px;
    margin-bottom: 28px;
    animation: fu 0.8s ease both;
}
h1 {
    font-family: "sora";
    font-size: clamp(38px, 8vw, 70px);
    font-weight: 800;
    line-height: 1;
    max-width: 800px;
    animation: fu 0.8s 0.1s ease both;
}
h1 .ac {
    color: var(--gold);
}
.hero-sub {
    margin-top: 18px;
    font-size: clamp(15px, 2.5vw, 17px);
    color: var(--muted);
    max-width: 480px;
    line-height: 1.65;
    font-weight: 300;
    animation: fu 0.8s 0.2s ease both;
}
.hero-act {
    margin-top: 36px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fu 0.8s 0.3s ease both;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-family: "sora", sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245, 166, 35, 0.38);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    font-family: "sora", sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.btn-ghost:hover {
    border-color: var(--gold);
    background: var(--surface);
}
.hero-stats {
    margin-top: 56px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fu 0.8s 0.4s ease both;
}
.stat-pill {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 9px 18px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    transition: border-color 0.2s;
}
.stat-pill:hover {
    border-color: var(--gold);
}
.stat-pill strong {
    font-family: "sora", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--gold);
}

/* SECTIONS */
.sec {
    padding: 80px 18px;
    max-width: 960px;
    margin: 0 auto;
}
.sec-title {
    font-family: "sora", sans-serif;
    font-size: clamp(10px, 4vw, 20px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 14px;
}
.sec-label {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 11px;
}
.sec-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 500px;
    font-weight: 300;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 36px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 26px 20px;
    transition:
        border-color 0.3s,
        transform 0.3s,
        box-shadow 0.3s;
    cursor: default;
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.service-icon {
    width: 42px;
    height: 42px;
    background: rgba(245, 166, 35, 0.12);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 14px;
    color: var(--gold);
}
.service-card h3 {
    font-family: "sora", sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 7px;
}
.service-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 300;
}

/* AUDIENCE */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
    margin-top: 36px;
}
.audience-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 26px 20px;
    transition:
        border-color 0.3s,
        transform 0.3s;
    position: relative;
    overflow: hidden;
}
.audience-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s;
}
.audience-card:hover::before {
    transform: scaleY(1);
}
.audience-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.audience-num {
    font-family: "sora", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: rgba(245, 166, 35, 0.18);
    line-height: 1;
    margin-bottom: 10px;
}
.audience-card h3 {
    font-family: "sora", sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
}
.audience-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 12px;
    font-weight: 300;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.tag {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold);
    border: 1px solid rgba(245, 166, 35, 0.2);
}

/* WHY */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 36px;
}
.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 22px;
    transition:
        border-color 0.3s,
        transform 0.3s;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.why-num {
    font-family: "sora", sans-serif;
    font-weight: 800;
    font-size: 12px;
    color: var(--gold);
    min-width: 26px;
    padding-top: 2px;
}
.why-card h3 {
    font-family: "sora", sans-serif;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 4px;
}
.why-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 300;
}

/* PROOF */
.proof-box {
    margin-top: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}
.proof-head {
    background: var(--navy);
    padding: 28px;
    color: #fff;
}
[data-theme="dark"] .proof-head {
    background: #111111;
    border-bottom: 1px solid rgba(245, 166, 35, 0.25);
}
.proof-head h3 {
    font-family: "sora", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 5px;
}
.proof-head p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}
.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}
@media (max-width: 560px) {
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
.proof-stat {
    background: var(--surface);
    padding: 22px 16px;
    text-align: center;
    transition: background 0.2s;
}
.proof-stat:hover {
    background: var(--surface2);
}
.proof-stat .num {
    font-family: "sora", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    display: block;
}
.proof-stat .lbl {
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px;
}
.proof-body {
    padding: 24px 28px;
}
.proof-body > p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 18px;
}
.proof-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}
.quote-card {
    background: var(--surface2);
    border-radius: var(--rs);
    padding: 18px;
    border-left: 3px solid var(--gold);
}
.quote-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 9px;
    font-weight: 300;
}
.quote-author {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
}

/* PHOTO CAROUSEL */
.photos-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}
.photos-swiper {
    border-radius: var(--rs);
    overflow: hidden;
}
.photos-swiper .swiper-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.photos-swiper .swiper-pagination-bullet {
    background: var(--muted);
    opacity: 0.5;
}
.photos-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}
.photos-swiper .swiper-button-next,
.photos-swiper .swiper-button-prev {
    color: var(--gold);
    width: 32px;
    height: 32px;
    background: var(--surface);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.photos-swiper .swiper-button-next::after,
.photos-swiper .swiper-button-prev::after {
    font-size: 11px;
    font-weight: 800;
}

/* EVENT */
.event-card {
    background: var(--navy);
    border-radius: var(--r);
    padding: 40px 28px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
[data-theme="dark"] .event-card {
    background: #0f0f0f;
    border: 1px solid rgba(245, 166, 35, 0.25);
}
.event-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.05);
    pointer-events: none;
}
.event-card .sec-label {
    margin-bottom: 10px;
}
.event-title {
    font-family: "sora", sans-serif;
    font-size: clamp(17px, 4vw, 26px);
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}
.event-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
    font-weight: 300;
}
.countdown {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.cd-block {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 13px;
    padding: 14px 12px;
    min-width: 66px;
    text-align: center;
}
.cd-num {
    font-family: "sora", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--gold-light);
    display: block;
    line-height: 1;
}
.cd-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px;
    display: block;
}
.event-details {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 22px;
    font-weight: 300;
}
.event-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.event-details i {
    color: var(--gold);
    font-size: 13px;
}

/* CTA */
.cta-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 96px;
}
.cta-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 52px 36px;
    text-align: center;
}
.cta-inner h2 {
    font-family: "sora", sans-serif;
    font-size: clamp(24px, 5vw, 38px);
    font-weight: 800;
    margin-bottom: 10px;
}
.cta-inner p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 28px;
    font-weight: 300;
}
.cta-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 36px 24px;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-logo {
    font-family: "sora", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}
.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-links i {
    color: var(--gold);
    font-size: 13px;
}
.footer-copy {
    font-size: 12px;
    color: var(--muted);
    width: 100%;
    text-align: center;
    font-weight: 300;
    opacity: 0.7;
}

/* ANIMATIONS */
@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.rev {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.rev.vis {
    opacity: 1;
    transform: translateY(0);
}

::-webkit-scrollbar {
    width: 3px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
        }
    
