:root {
    --orange: #fa7013;
    --orange-dark: #d85d07;
    --navy: #4d72d3;
    --black: #111111;
    --text: #444;
    --light-bg: #f8f9fc;
    --white: #ffffff;
    --border: #9c9494;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.75;
}


html {
    scroll-behavior: smooth;
}
/* ── UTILITIES ─────────────────────────────────── */
.orange {
    color: var(--orange);
}

.bebas {
    font-family: 'Bebas Neue', sans-serif;
}

.section-pad {
    padding: 5rem 0;
}

.sec-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.sec-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
    flex-shrink: 0;
}

.sec-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

.card-dark {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
}

/* ── HERO ──────────────────────────────────────── */
.hero-header{
    
    top: 0;
    z-index: 0;
    padding: 20px 0;
}

.hero-header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.hero-brand{
    font-family:'Bebas Neue', sans-serif;
    color:#111;
    font-size:24px;
    line-height:1;
    letter-spacing:0.03em;
}

.hero-brand strong{
    color:var(--orange);
    font-weight:normal;
}

.hero-menu{
    display:flex;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
    flex-wrap:wrap;
}

.hero-menu a{
    text-decoration:none;
    color:#111;
    font-size:13px;
    font-weight:600;
    letter-spacing:0.08em;
    text-transform:uppercase;
    transition:0.3s;
}

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

@media(max-width:768px){
    .hero-header-inner{
        flex-direction:column;
        text-align:center;
    }

    .hero-menu{
        justify-content:center;
        gap:16px;
    }
}
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #b26e39 100%);
    padding: 0;
    
    overflow: visible;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    
    background-size: 64px 64px;
    opacity: 0.4;
}

.hero-orange-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0 4rem;
}

.hero-presented {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.hero-presented span {
    color: var(--orange);
    font-weight: 500;
}

.hero-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--black);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 10vw, 110px);
    line-height: 0.9;
    letter-spacing: 0.01em;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.hero-title .accent {
    color: var(--orange);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid var(--black);
    width: fit-content;
    margin-bottom: 2.5rem;
}

.hero-meta-item {
    padding: 0.75rem 1.5rem;
    border-right: 1px solid var(--border);
    font-size: 13px;
}

.hero-meta-item:last-child {
    border-right: none;
}

.hero-meta-item strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 2px;
    font-weight: bold;
}

.hero-meta-item span {
    color: var(--black);
    font-weight: bold;
}

.hero-cta {
    display: inline-block;
    background: var(--orange);
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-cta:hover {
    background: var(--orange-d);
    color: var(--black);
}

.hero-cta-ghost {
    display: inline-block;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    margin-left: 1rem;
}

.hero-cta-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.hero-partner-strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-partner-strip span {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-top-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-logo {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

@media(max-width:768px) {
    .hero-logo {
        max-height: 80px;
    }
}

.partner-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--light);
    padding: 4px 14px;
    border: 1px solid var(--border);
}

/* ── ABOUT SPORTZPOWER ─────────────────────────── */
.about-sp {
    background: var(--charcoal);
}

.sp-stat-box {
    border: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
}

.sp-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--orange);
    line-height: 1;
}

.sp-stat-label {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.offer-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.offer-item:last-child {
    border-bottom: none;
}

.offer-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--orange);
    min-width: 28px;
    line-height: 1.3;
}

.offer-text {
    font-size: 14px;
    color: var(--light);
    line-height: 1.6;
}

.offer-text strong {
    font-weight: 500;
    color: var(--black);
}

/* ── ABOUT YTCR ─────────────────────────────────── */
.about-ytcr {
    background: var(--black);
}

.serve-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    padding: 1.25rem 1.5rem;
    border-radius: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    height: 100%;
}

/* ── ZANDU ──────────────────────────────────────── */
.zandu-section {
    background: var(--charcoal);
}

.zandu-box {
    border: 1px solid var(--border);
    border-top: 3px solid var(--orange);
    padding: 2.5rem;
}

/* ── EVENT DETAILS ──────────────────────────────── */
.event-details {
    background: var(--black);
}

.detail-row {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.detail-row:first-child {
    border-top: 1px solid var(--border);
}

.detail-key {
    width: 180px;
    flex-shrink: 0;
    padding: 1rem 1.25rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    border-right: 1px solid var(--border);
}

.detail-val {
    padding: 1rem 1.5rem;
    font-size: 14px;
    color: var(--light);
}

.venue-highlight {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ── AGENDA ─────────────────────────────────────── */
.agenda-section {
    background: var(--charcoal);
}

.agenda-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.agenda-row:first-child {
    border-top: 1px solid var(--border);
}

.agenda-row:hover {
    background: rgba(250, 112, 19, 0.05);
}

.agenda-time {
    padding: 1.25rem 1rem;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--orange);
    border-right: 1px solid var(--border);
    line-height: 1.4;
}

.agenda-body {
    padding: 1.25rem 1.5rem;
}

.agenda-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.agenda-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.5rem;
}

.agenda-points li {
    font-size: 13px;
    color: var(--muted);
    padding: 3px 10px;
    border: 1px solid var(--border);
}

.agenda-break {
    background: rgba(250, 112, 19, 0.08);
}

/* ── WHO SHOULD ATTEND ──────────────────────────── */
.attend-section {
    background: var(--black);
}

.attend-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 1.75rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
}

.attend-card:hover {
    border-color: var(--orange);
}

.attend-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.attend-card:hover::after {
    transform: scaleX(1);
}

.attend-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--border);
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.attend-card:hover .attend-icon {
    color: var(--orange);
}

.attend-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.attend-card-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── WHY ATTEND ─────────────────────────────────── */
.why-section {
    background: var(--charcoal);
}

.why-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    height: 100%;
    transition: border-top-color 0.25s;
}

.why-card:hover {
    border-top: 2px solid var(--orange);
}

.why-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--border);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.why-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.why-card-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── REGISTRATION ───────────────────────────────── */
.reg-section {
    background: var(--black);
}

.reg-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 3rem;
}

.reg-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--orange);
    line-height: 1;
}

.reg-price-label {
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.reg-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.reg-detail-row:last-child {
    border-bottom: none;
}

.reg-detail-key {
    color: var(--muted);
}

.reg-detail-val {
    color: var(--light);
    font-weight: 500;
    text-align: right;
}

.reg-cta {
    display: block;
    width: 100%;
    background: var(--orange);
    color: var(--black);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    border: none;
    margin-top: 2rem;
    transition: background 0.2s;
}

.reg-cta:hover {
    background: var(--orange-d);
    color: var(--black);
}

.reg-map-btn {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--border);
    margin-top: 0.75rem;
    transition: color 0.2s, border-color 0.2s;
}

.reg-map-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.reg-note {
    font-size: 14px;
    color: var(--muted);
    margin-top: 1rem;
    line-height: 1.6;
}

.reg-note strong {
    color: var(--orange);
    font-weight: 500;
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--black);
}

.footer-brand span {
    color: var(--orange);
}

.footer-text {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
}

.footer-assoc {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.1em;
}

.footer-assoc strong {
    color: var(--light);
    font-weight: 500;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 767px) {
    .hero-meta {
        width: 100%;
    }

    .hero-meta-item {
        flex: 1 1 40%;
        border-bottom: 1px solid var(--border);
    }

    .hero-cta-ghost {
        margin-left: 0;
        margin-top: 0.75rem;
    }

    .detail-key {
        width: 120px;
    }

    .agenda-row {
        grid-template-columns: 110px 1fr;
    }

    .reg-box {
        padding: 2rem 1.5rem;
    }
}



.about-sp,
.zandu-section,
.why-section {
    background: var(--light-bg);
}

.about-ytcr,
.event-details,
.attend-section,
.reg-section {
    background: var(--white);
}

.sec-title,
.hero-title {
    color: var(--black);
}

.hero-title .accent,
.orange {
    color: var(--orange);
}

.card-dark,
.serve-card,
.attend-card,
.why-card,
.reg-box,
.zandu-box {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-cta,
.reg-cta {
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
}

.hero-cta:hover,
.reg-cta:hover {
    background: var(--orange-dark);
}

.hero-cta-ghost,
.reg-map-btn {
    border: 1px solid var(--orange);
    color: var(--orange);
    background: transparent;
    border-radius: 8px;
}

p,
.offer-text,
.attend-card-desc,
.why-card-desc {
    color: #0c0c0c;
}

.footer {
    background: var(--navy);
    color: #fff;
}


strong {
    font-weight: bold;
}