/* ============================================================
   TikTok Creator Summit 2026 — Main Stylesheet (GSAP)
   Design: Exact match from mockup — bg black
   ============================================================ */

/* --- TikTok Sans Font --- */
@font-face {
    font-family: 'TikTok Sans';
    src: url('../fonts/TikTok-Sans-Display-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TikTok Sans';
    src: url('../fonts/TikTok-Sans-Display-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TikTok Sans';
    src: url('../fonts/TikTok-Sans-Display-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TikTok Sans';
    src: url('../fonts/TikTok-Sans-Display-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TikTok Sans';
    src: url('../fonts/TikTok-Sans-Display-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* --- Variables --- */
:root {
    --red: #fe2c55;
    --red-dark: #d91a3e;
    --black: #000000;
    --black-2: #0a0a0a;
    --black-3: #121212;
    --white: #ffffff;
    --gray: #8a8b91;
    --gray-light: #c0c1c5;
    --gray-dark: #2a2a2a;
    --purple: #b07cd8;
    --pink: #ff6b9d;
    --blue: #6bc5ff;
    --font: 'TikTok Sans', 'Poppins', sans-serif;

    --section-padding: 100px 0;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ===== SECTION HEADERS ===== */
.section-label {
    font-size: 11px; font-weight: 700;
    color: var(--red); letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 12px;
}
.section-heading {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900; text-transform: uppercase;
    line-height: 1.1; margin-bottom: 10px;
}
.section-desc {
    font-size: 14px; color: var(--gray);
    max-width: 520px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 16px 0;
    transition: background 0.4s, padding 0.4s;
}
.navbar.scrolled {
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    padding: 10px 0;
}
.navbar .container {
    display: flex; align-items: center;
    justify-content: space-between;
    width: 98%;
    max-width: 100%;
    margin: 0;
    padding: 0 0 0 24px;
}
.navbar-logo img { height: 26px; width: auto; }
.nav-links {
    display: flex; align-items: center;
}
.nav-links a { display: block; line-height: 0; }
.nav-links a img { display: block; }
.nav-links { gap: 12px; }
.nav-btn-agenda,
.nav-btn-konfirmasi {
    display: inline-block;
    padding: 8px 22px;
    background: #FF2C55;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 1.4 !important;
    letter-spacing: 0.3px;
}
.nav-btn-agenda:hover,
.nav-btn-konfirmasi:hover {
    background: #e62248;
}
/* Hamburger & Mobile menu */
.nav-hamburger {
    display: none;
    background: none; border: none; color: #fff;
    font-size: 28px; cursor: pointer; padding: 4px 8px;
    line-height: 1;
    position: relative; z-index: 9999;
}
.nav-mobile {
    display: none;
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9998;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
    color: #fff; font-size: 20px; font-weight: 600;
    text-decoration: none; font-family: inherit;
    padding: 12px 32px; background: #FF2C55;
    border-radius: 50px; transition: all 0.3s;
}
.nav-mobile-link:hover { background: #e62248; }
@media (max-width: 768px) {
    .nav-hamburger { display: none; }
    .nav-links { display: flex; }
    .navbar.scrolled .nav-links { display: none; }
    .navbar.scrolled .nav-hamburger,
    .nav-hamburger.open { display: block; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    width: 100%; height: 100vh;
    background: #000000;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    align-items: center; justify-content: space-between;
    padding: 40px 60px 40px;
}
/* --- SVG Background --- */
.hero-svg-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}
/* --- Pulse Animation Container --- */
.hero-pulse-container {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; z-index: 0;
    overflow: hidden;
}
.hero-pulse-img {
    position: absolute;
    max-width: 100vw; max-height: 100vh;
    width: auto; height: auto;
    opacity: 0;
    will-change: transform, opacity;
}
@media (max-width: 768px) {
    .hero-pulse-img {
        max-width: 100vw; max-height: 100vh;
        width: 100vw; height: auto;
    }
    .hero-pulse-container {
        align-items: center;
        justify-content: center;
    }
}
/* Landscape mobile: bikin pulse lebih besar */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-pulse-img {
        width: 100vw; height: 100vh;
        object-fit: cover;
    }
}
/* --- Title Top --- */
.hero-content-top {
    position: relative; z-index: 2;
    width: 100%; text-align: center;
    padding-top: 120px;
}
.hero-main-title {
    position: relative;
    display: inline-block;
    font-size: clamp(48px,8vw,96px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -1px;
}
.title-text {
    position: relative; z-index: 2;
    color: var(--white);
}
.title-glitch {
    position: absolute;
    top: 0; left: 0; z-index: 1;
    color: var(--red);
    clip-path: inset(0 0 30% 0);
    transform: translateX(4px);
    opacity: 0.6;
    pointer-events: none;
}
/* --- Center Cards --- */
.hero-cards-center {
    position: relative; z-index: 2;
    width: 100%;
    overflow: hidden;
    flex: 1;
    display: flex; align-items: center;
}
.hero-cards-track {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 10px;
    width: max-content;
    will-change: transform;
}
.hero-card-img {
    height: clamp(120px,18vh,220px);
    width: auto;
    border-radius: clamp(12px,1.5vw,24px);
    flex-shrink: 0;
}
.hero-card-plus {
    height: clamp(100px,16vh,200px);
    width: auto; min-width: 130px;
    border-radius: clamp(12px,1.5vw,24px);
    background: #F3DFC5;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}
.hero-card-plus span {
    font-size: clamp(36px,5vw,72px); font-weight: 300;
    color: #1a1a1a;
    line-height: 1;
}
.hero-card-plus span {
    font-size: clamp(40px,6vw,80px); font-weight: 300;
    color: #1a1a1a;
    line-height: 1;
}
/* --- Bottom --- */
.hero-bottom {
    position: relative; z-index: 2;
    width: 100%;
    display: flex; justify-content: space-between;
    align-items: flex-end;
}
.hero-bottom-left {
    height: auto; width: clamp(200px,28vw,360px);
    opacity: 0.85;
}
.hero-bottom-right {
    height: auto; width: clamp(240px,34vw,420px);
    opacity: 0.85;
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-section {
    background: var(--red); padding: 28px 0;
}
.cd-inner {
    display: flex; align-items: center;
    justify-content: space-between;
}
.cd-label {
    font-size: clamp(22px,3vw,34px); font-weight: 900;
    letter-spacing: 3px; text-transform: uppercase;
    white-space: nowrap;
}
.cd-grid {
    display: flex; align-items: center; gap: 6px;
}
.cd-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 4px;
}
.cd-num {
    display: flex; align-items: center; gap: 6px;
}
.cd-num span {
    display: flex; align-items: center; justify-content: center;
    width: clamp(36px,5vw,56px); height: clamp(44px,6vw,64px);
    background: rgba(255,255,255,0.9);
    color: #1a1a1a;
    font-size: clamp(22px,3.5vw,40px);
    font-weight: 900;
    border-radius: 8px;
    line-height: 1;
}
.cd-colon {
    font-size: clamp(20px,3vw,36px);
    font-weight: 900; color: var(--white);
    margin: 0 2px;
}
.cd-unit {
    font-size: 16px; font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
}

/* ============================================================
   MAPS
   ============================================================ */
.section-maps { padding: 100px 0; background: var(--black); overflow: hidden; }
/* --- Maps --- */
.map-wrap {
    position: relative; margin: 40px auto 0;
    width: 100%;
    display: flex; justify-content: center;
}
.map-card {
    width: 100%; height: 420px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
    background: var(--black-3);
}
.map-card iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
}
.map-deco {
    position: absolute; height: 56px; width: auto;
    z-index: 3;
}
.map-deco-left {
    height: 84px; bottom: -6px; left: -24px;
}
.map-deco-right {
    height: 64px; top: 4px; right: -24px;
}

/* ============================================================
   HASHTAG
   ============================================================ */
.section-hashtag {
    padding: 60px 0 !important; background: #252525;
    min-height: 650px; display: flex; align-items: center;
    overflow: hidden;
}
.section-hashtag .container {
    width: 100%; padding: 60px 24px;
}
.h-inner {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 80px;
}
/* --- Left --- */
.h-left { max-width: 520px; }
.h-heading {
    font-size: 78px; font-weight: 600;
    line-height: 0.95; text-transform: uppercase;
    color: #F4DFC5; margin-bottom: 28px;
    letter-spacing: -1.5px;
}
.h-sub {
    font-size: 44px; font-weight: 400;
    color: var(--white); line-height: 1.15;
    margin-bottom: 20px;
}
.h-sub strong { color: inherit; }
.h-desc {
    font-size: 18px; color: rgba(255,255,255,0.8);
    line-height: 1.6;
}
.h-btn {
    display: inline-block; margin-top: 28px;
    padding: 14px 44px; background: #FF2C55; color: #fff;
    font-size: 16px; font-weight: 700; text-decoration: none;
    border-radius: 999px; transition: all 0.3s;
    font-family: inherit;
}
.h-btn:hover { transform: scale(1.04); filter: brightness(1.1); }
/* --- Right --- */
.h-right {
    display: flex; justify-content: center;
    align-items: center;
}
.h-cards {
    position: relative;
    width: 500px; height: 600px;
}
.h-card {
    position: absolute;
    border-radius: 28px;
    background: #f5cce8;
    border: 2px solid rgba(255,255,255,0.25);
}
.h-card:nth-child(1) {
    width: 320px; height: 460px;
    bottom: -20px; left: -20px;
    z-index: 1;
}
.h-card:nth-child(2) {
    width: 320px; height: 460px;
    top: -20px; right: -20px;
    z-index: 2;
}
.h-card:nth-child(3) {
    width: 340px; height: 480px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

/* ============================================================
   AGENDA
   ============================================================ */
.section-agenda {
    padding: 100px 0;
    background: #000000;
}
.agenda-title {
    text-align: center;
    font-size: 65px; font-weight: 600;
    color: #F3DFC5;
    margin-bottom: 60px;
    letter-spacing: -1px;
}
.agenda-list {
    max-width: 800px;
    margin: 0 auto;
}
.agenda-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
    padding: 28px 0;
    border-bottom: 1px solid #2A2A2A;
}
.agenda-item:last-child { border-bottom: none; }
.agenda-time {
    font-size: 16px; font-weight: 500;
    color: #31D9E7;
    padding-top: 4px;
}
.agenda-info h3 {
    font-size: 36px; font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 4px;
}
.agenda-info p {
    font-size: 16px;
    color: #FF4F5A;
}

/* ============================================================
   SPEAKERS
   ============================================================ */
.section-speakers {
    padding: 100px 0;
    background: #000000;
}
.sp-container {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.sp-header { text-align: center; margin-bottom: 56px; }
.sp-title {
    font-size: 65px; font-weight: 600;
    color: #F4DFC5; margin-bottom: 12px;
    letter-spacing: -1px;
}
.sp-subtitle {
    font-size: 24px; font-weight: 600;
    color: #F4DFC5; opacity: 0.8;
}
/* --- Carousel --- */
.sp-carousel {
    background: #2A2A2A;
    border-radius: 32px;
    padding: 64px 64px 80px;
    position: relative;
}
.sp-slides {
    width: 100%; overflow: hidden;
    display: flex; scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.sp-slide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.857fr);
    gap: 50px;
    align-items: center;
    flex: 0 0 100%; scroll-snap-align: start;
    min-width: 0;
    overflow: hidden;
}
.sp-slide > * { min-width: 0; }
/* --- Left: Portrait --- */
.sp-left { display: flex; justify-content: center; }
.sp-portrait { display: flex; justify-content: center; }
.sp-avatar {
    width: 340px; height: 404px;
    border-radius: 0;
    background: #2a2a2a;
    background-size: cover !important;
    background-position: center !important;
}
/* --- Right: Info --- */
.sp-right { max-width: 650px; min-width: 0; width: 100%; }
.sp-name {
    font-size: 48px; font-weight: 500;
    color: #F4DFC5; margin-bottom: 6px;
    line-height: 1.1;
}
.sp-role {
    font-size: 22px; font-weight: 300;
    color: #F4DFC5; margin-bottom: 20px;
}
.sp-divider {
    width: 100%; height: 2px;
    background: rgba(255,255,255,0.35);
    border-radius: 2px;
    margin-bottom: 20px;
}
.sp-followers {
    font-size: 20px; font-weight: 700;
    color: #F4DFC5; margin-bottom: 16px;
}
.sp-bio {
    font-size: 20px; font-weight: 300;
    color: #F4DFC5;
    line-height: 1.7;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}
/* --- Nav --- */
.sp-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    padding: 0; margin: 0; line-height: 0;
    z-index: 5;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.sp-nav:hover { opacity: 1; }
.sp-prev { left: 16px; }
.sp-next { right: 16px; }
/* --- Pagination --- */
.sp-pagination {
    display: flex; justify-content: center; align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 32px;
    left: 0; right: 0;
    z-index: 10;
}
.sp-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.25);
    flex-shrink: 0;
    display: block;
}
.sp-dot.active {
    background: #FF3366;
    border-color: #FF3366;
    box-shadow: 0 0 8px rgba(255,51,102,0.6);
}

/* ============================================================
   INFO + DRESSCODE
   ============================================================ */
.section-info { padding: 100px 0; background: #000000; }
.info-outer {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    background: #2A2A2A;
    border-radius: 32px;
    padding: 64px;
    display: flex; flex-direction: column;
    gap: 28px;
}
.info-header { text-align: center; }
.info-title {
    font-size: 65px; font-weight: 600;
    color: #F4DFC5; letter-spacing: -1px;
}
/* --- Cards --- */
.info-cards { display: flex; flex-direction: column; gap: 20px; }
.info-card-item {
    display: flex; align-items: center;
    gap: 28px;
    background: #232323;
    border-radius: 24px;
    min-height: 110px;
    padding: 28px 36px;
}
.info-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(244,223,197,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.info-text h3 {
    font-size: 24px; font-weight: 700;
    color: var(--white); margin-bottom: 4px;
}
.info-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    max-width: 650px;
}
/* --- Dress Code --- */
.dresscode-box { text-align: center; }
.dc-heading {
    font-size: 28px; font-weight: 700;
    color: #F4DFC5; margin-bottom: 28px;
    letter-spacing: 2px;
}
.dc-row { display: flex; justify-content: center; gap: 40px; }
.dc-item { display: flex; flex-direction: column; align-items: center; }
.dc-circle {
    width: 60px; height: 60px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.12);
    transition: transform 0.3s;
}
.dc-circle:hover { transform: scale(1.12); }

/* ============================================================
   REGISTRATION
   ============================================================ */
.section-reg {
    padding: 120px 0;
    background: #000000;
}
.reg-panel {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    background: #2A2A2A;
    border-radius: 32px;
    padding: 64px;
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 72px;
    align-items: start;
}
/* --- Left --- */
.reg-left { max-width: 320px; }
.reg-heading {
    font-size: 65px; font-weight: 600;
    color: #F4DFC5; line-height: 1.05;
    margin-bottom: 24px; letter-spacing: -1px;
}
.reg-desc {
    font-size: 15px; color: rgba(255,255,255,0.7);
    line-height: 1.7; margin-bottom: 16px;
}
.reg-note {
    font-size: 13px; color: rgba(255,255,255,0.4);
    font-style: italic;
}
/* --- Right Form --- */
.reg-form { max-width: 560px; }
/* --- Underline Field --- */
.rf-field {
    margin-bottom: 32px;
    position: relative;
}
.rf-field label {
    display: block;
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.rf-field input,
.rf-field select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    padding: 4px 0;
    -webkit-appearance: none;
    appearance: none;
}
.rf-field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='rgba(255,255,255,0.35)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}
.rf-field select option {
    background: #2A2A2A;
    color: var(--white);
}
.rf-field input::placeholder {
    color: rgba(255,255,255,0.2);
}
/* Underline */
.rf-line {
    display: block;
    width: 100%; height: 1px;
    background: rgba(255,255,255,0.35);
    transition: background 0.3s;
}
.rf-field input:focus ~ .rf-line,
.rf-field select:focus ~ .rf-line {
    background: #37E3F5;
}
.rf-field.focused .rf-line {
    background: #37E3F5;
}
/* --- Phone --- */
.rf-phone {
    display: flex; align-items: center;
    gap: 8px;
}
.rf-phone-code {
    font-size: 16px; font-weight: 600;
    color: var(--gray);
    white-space: nowrap;
    flex-shrink: 0;
}
.rf-phone input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    padding: 4px 0;
}
/* --- Bottom + Button --- */
.rf-bottom {
    display: flex; justify-content: flex-end;
    margin-top: 12px;
}
.rf-btn {
    height: 52px; width: 140px;
    background: #FF3366;
    color: var(--white);
    font-family: var(--font);
    font-size: 15px; font-weight: 700;
    border: none; border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s;
}
.rf-btn:hover {
    transform: scale(1.04);
    filter: brightness(1.1);
}
.rf-btn:disabled {
    opacity: 0.5; cursor: not-allowed;
    transform: none; filter: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-logo:hover { opacity: 0.8; }

/* ============================================================
   CATATAN PESERTA
   ============================================================ */
.section-catatan {
    background: #000000;
    padding: 0 0 100px;
}
.cat-card {
    background: #2A2A2A;
    border-radius: 32px;
    overflow: hidden;
}
.cat-banner {
    width: 100%;
    height: auto;
    display: block;
}
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    width: 100%; height: 220px;
    background: #000000;
    display: flex; align-items: center; justify-content: center;
}
.footer-inner {
    display: flex; align-items: center; justify-content: center;
}
.footer-logo {
    width: 320px; height: auto;
    opacity: 0.55;
    transition: opacity 0.4s;
    cursor: default;
}
.footer-logo:hover { opacity: 0.8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero { padding: 30px 30px 30px; }
    .reg-panel { grid-template-columns: 1fr; gap: 40px; }
    .reg-left { max-width: 100%; }
}
@media (max-width: 768px) {
    .hero { padding: 20px 20px 24px; height: 85vh; }
    .hero-content-top { padding-top: 120px; }
    .hero-main-title { font-size: clamp(28px,10vw,48px); }
    .hero-card-img { height: clamp(100px,16vh,170px); }
    .hero-cards-center { margin-top: -20px; }
    .hero-bottom { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 0; }
    .hero-bottom-left { width: clamp(150px,35vw,220px); }
    .hero-bottom-right { width: clamp(170px,40vw,240px); align-self: flex-end; }
    .cd-inner { flex-direction: column; gap: 16px; }
    .cd-grid { gap: 4px; }
    .section-hashtag { padding: 20px 0 !important; }
    .section-hashtag .container { padding: 50px 24px; }    .section-agenda { padding: 40px 0; }
    .section-info { padding: 40px 0; }
    .section-reg { padding: 40px 0; }    .h-frame { padding: 36px; }
    .h-inner { grid-template-columns: 1fr; gap: 50px; }
    .h-left { text-align: left; }
    .h-btn { display: table; margin-left: auto; margin-right: auto; }
    .h-heading { font-size: 48px; }
    .h-sub { font-size: 28px; }
    .h-desc { font-size: 15px; }
    .h-right { justify-content: center; }
    .h-cards { width: 360px; height: 440px; }
    .h-card:nth-child(1),
    .h-card:nth-child(2) { width: 240px; height: 340px; }
    .h-card:nth-child(3) { width: 260px; height: 360px; }
    .agenda-title { font-size: 40px; margin-bottom: 24px; }
    .agenda-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
    .agenda-info h3 { font-size: 22px; }
    .sp-carousel { padding: 32px 32px 70px; }
    .sp-slide { grid-template-columns: 1fr; gap: 30px; }
    .sp-title { font-size: 40px; }
    .sp-subtitle { font-size: 18px; }
    .sp-name { font-size: 32px; }
    .sp-portrait { width: 100%; }
    .sp-avatar { width: 100%; max-width: 320px; height: auto; aspect-ratio: 2195 / 2610; }
    .sp-prev { left: 8px; }
    .sp-next { right: 8px; }
    .sp-pagination { display: none; }
    .info-title { font-size: 36px; }
    .info-sub { font-size: 18px; }
    .info-card-item { flex-direction: column; text-align: center; border-radius: 24px; padding: 24px; height: auto; }
    .dc-row { gap: 24px; }
    .reg-panel { padding: 36px; }
    .reg-heading { font-size: 40px; }
    .section-maps { padding: 40px 0; padding-bottom: 100px; }

}
@media (max-width: 480px) {
    .hero { padding: 16px 14px 20px; }
    .info-grid { grid-template-columns: 1fr; }
    .reg-form { padding: 22px; }
    .dc-row { gap: 18px; }

}
