html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

:root {
    --bg: #060d18;
    --bg2: #091321;
    --panel: #0c1826;
    --panel2: #0f1f32;
    --border: rgba(255, 255, 255, 0.07);
    --cyan: #008BE0;
    --cyan2: #0098cc;
    --blue: #0060ff;
    --text: #e8f0fb;
    --muted: #aaaaaa;
    --white: #ffffff;
}

body {

    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}



/* ─── SCROLL PROGRESS BAR ─────────────────────────── */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ─── HEADER ──────────────────────────────────────── */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px !important;
    z-index: 9999;
    background: rgba(6, 13, 24, 0.94) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border) !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-section .navbar {
    padding: 0px 0;
}

/* Offset page content so it starts below the fixed header */
.wrapper-section {
    padding-top: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
    contain: paint;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 65% 50%,
            rgba(0, 139, 224, 0.15) 0%,
            transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 30%,
            rgba(0, 139, 224, 0.10) 0%,
            transparent 60%),
        #060d18;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    contain: strict;
    transform: translateZ(0);
    background-image:
        linear-gradient(rgba(0, 139, 224, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 139, 224, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 25s linear infinite;
}

@keyframes gridDrift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 60px 60px;
    }
}

.hero-inner {
    display: flex;
    justify-content: flex-start;
    gap: 64px;
    position: relative;
    z-index: 1;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid rgba(0, 209, 255, 0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.5);
    }
}

/* 
.hero h1 {
   
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
} */

.hero h1 .accent {
    color: var(--cyan);
}

.hero-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

/* Meta pills */
.meta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.meta-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    min-width: 200px;
    transition: border-color .3s;
}

.meta-pill:hover {
    border-color: rgba(0, 209, 255, 0.35);
}

.meta-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(0, 209, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.meta-text label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
    margin-left: 0;
}

.meta-text span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);

}

.meta-speakers-row {
    display: flex;
    gap: 16px;
    width: 100%;
    flex: 1 1 100%;
}

.meta-speakers-row .meta-pill-speaker {
    flex: 1;
    min-width: calc(50% - 8px);
}

@media (max-width: 560px) {
    .meta-pill {
        width: 100%;
    }

    .header-section {
        height: 60px !important;
    }

    .wrapper-section {
        padding-top: 60px;
    }

    .meta-speakers-row {
        flex-direction: column;
    }

    .meta-speakers-row .meta-pill-speaker {
        min-width: 100%;
    }
}

/* Countdown */
.countdown-wrap {
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.countdown {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.cd-unit {
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    min-width: 66px;
}

.cd-num {

    font-size: 30px;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    display: block;
}

.cd-lbl {
    font-size: 10px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* ─── FORM ────────────────────────────────────────── */
.form-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.seats-bar {
    margin-bottom: 10px;
}

.seats-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.seats-info span {
    font-size: 12px;
    color: #6b7e94;
    font-weight: 600;
}

.seats-info strong {
    font-size: 12px;
    color: #0a3d5a;
    font-weight: 800;
}

.seats-track {
    background: #e8f0f8;
    border-radius: 50px;
    height: 6px;
    overflow: hidden;
}

.seats-fill {
    height: 100%;
    width: 68%;
    border-radius: 50px;
    background: linear-gradient(90deg, #008BE0, #0060ff);
    animation: fillSlide 1.8s cubic-bezier(.23, 1, .32, 1) forwards;
    transform-origin: left;
}

@keyframes fillSlide {
    from {
        width: 0;
    }

    to {
        width: 68%;
    }
}

.form-card h3 {

    color: #04101d;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.form-card>p {
    color: #7a8ea6;
    font-size: 14px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2d3e52;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 9px;
    border: 1.5px solid #d8e3ef;
    font-size: 14px;
    color: #04101d;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    background: #fafcff;
}

.form-group input:focus {
    border-color: #008BE0;
    box-shadow: 0 0 0 3px rgba(0, 209, 255, 0.15);
    background: #fff;
}

.form-group input.valid {
    border-color: #008BE0;
}

.form-group input.invalid {
    border-color: #ef4444;
}

.form-checkbox-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.45;
    color: #2d3e52;
    font-weight: 500;
    margin: 0;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #008BE0;
    cursor: pointer;
}

.form-checkbox span a {
    color: #008BE0;
    text-decoration: underline;
}

.form-checkbox.invalid span {
    color: #ef4444;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: #008BE0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;

    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background .25s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 111, 255, 0.45);
}

.submit-btn:hover::after {
    background: rgba(255, 255, 255, 0.08);
}

.privacy-note {
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    color: #96a8bc;
    margin-bottom: 0;
}

.privacy-note a {
    color: #008BE0;
    text-decoration: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px 0;
}

.success-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.form-success h3 {

    font-size: 24px;
    color: #04101d;
    margin-bottom: 8px;
}

.form-success p {
    color: #aaaaaa;
    font-size: 14px;
}

/* ─── TRUST BAR ───────────────────────────────────── */
.trust-bar {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

.trust-badges {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    transition: all .25s;
}

.trust-badge:hover {
    border-color: rgba(0, 209, 255, 0.3);
    color: var(--white);
}

.trust-badge span {
    color: var(--cyan);
    font-size: 15px;
}

/* ─── STATS ───────────────────────────────────────── */
.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 18px;
    overflow: hidden;
}

.stat-box {
    background: var(--panel);
    padding: 36px 28px;
    text-align: center;
    transition: background .3s;
}

.stat-box:hover {
    background: var(--panel2);
}

.stat-num {

    font-size: 46px;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

/* ─── SECTIONS COMMON ─────────────────────────────── */
section.section {
    padding: 50px 0;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 14px;
}

.section-title {

    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--muted);
    font-size: 16px;
}

.section-head {
    margin-bottom: 56px;
}

.section-head.center {
    text-align: center;
}

.section-head.center .section-desc {
    margin: 0 auto;
}

/* ─── AGENDA TABS ─────────────────────────────────── */
.agenda-section {
    background: #0C0C0C;
}

.learn-agenda-row {
    margin-top: 8px;
}

.learn-agenda-box {
    height: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, box-shadow .3s;
}

.learn-agenda-box:hover {
    border-color: rgba(0, 209, 255, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.learn-agenda-box-head {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 209, 255, 0.06);
}

.learn-agenda-box-head h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

.learn-agenda-box-body {
    padding: 20px;
    flex: 1;
}

.learn-agenda-box .agenda-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}

.learn-agenda-box .agenda-item {
    padding: 18px;
}

@media (max-width: 768px) {
    .learn-agenda-row>.col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.agenda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.agenda-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--bg);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all .3s;
    cursor: default;
}

.agenda-item:hover {
    border-color: rgba(0, 209, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.agenda-num {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid rgba(0, 209, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 800;
    color: var(--cyan);
    flex-shrink: 0;
}

.agenda-body h4 {

    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.agenda-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

/* ─── WHO ATTENDS ─────────────────────────────────── */
.attend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.attend-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 12px 12px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all .3s;
}

.attend-card:hover {
    border-color: rgba(0, 209, 255, 0.35);
    transform: translateY(-4px);
}

.attend-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid rgba(0, 209, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.attend-body h4 {

    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.attend-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ─── TAKEAWAY ────────────────────────────────────── */
.takeaway-section {
    padding: 90px 0;
}

.takeaway-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px 50px;
    background-color: #1E3D62;
    /* background: linear-gradient(135deg, #003a7a 0%, #004d8c 40%, #006080 100%); */
}

.takeaway-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0, 209, 255, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0, 60, 255, 0.15) 0%, transparent 60%);
}

.takeaway-bg-text {
    position: absolute;
    right: -20px;
    top: -30px;

    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    user-select: none;
}

.takeaway-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.takeaway-content h2 {

    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.takeaway-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 32px;
}

.takeaway-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;

    text-decoration: none;
    transition: all .3s;
    backdrop-filter: blur(10px);
}

.takeaway-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ─── SPEAKERS ────────────────────────────────────── */
.speakers-section {
    background: #0C0C0C;
    padding: 90px 0;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.speaker-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    /* background: var(--bg);
    border: 1px solid var(--border); */
    border-radius: 22px;
    padding: 20px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.speaker-card::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 209, 255, 0.08) 0%, transparent 70%);
}

.speaker-card:hover {
    border-color: rgba(0, 209, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.speaker-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.speaker-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #008BE0;
    display: block;
}

.speaker-info h3 {

    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.speaker-role {
    font-size: 13px;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.speaker-bio {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.speaker-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 12px;
    background: rgba(0, 209, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    color: var(--cyan);
    font-weight: 600;
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq-section {
    padding: 90px 0;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .25s;
}

.faq-item:hover {
    border-color: rgba(0, 209, 255, 0.3);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    cursor: pointer;
    user-select: none;
    background: var(--panel);
    transition: background .25s;
}

.faq-q:hover {
    background: var(--panel2);
}

.faq-q span {

    font-size: 16px;
    font-weight: 700;
    padding-right: 20px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 209, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--cyan);
    flex-shrink: 0;
    transition: transform .3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.23, 1, .32, 1), padding .3s;
    background: var(--panel);
    padding: 0 24px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 22px;
}

.faq-a p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

/* ─── BOTTOM CTA ──────────────────────────────────── */
.bottom-cta {
    /* background: var(--panel); */
    padding: 80px 0;
    text-align: center;
}

.bottom-cta h2 {

    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
}

.bottom-cta p {
    color: var(--muted);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 34px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cyan);
    color: #04101d;
    padding: 16px 34px;
    border-radius: 10px;

    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 0 30px rgba(0, 209, 255, 0.3);
}

.cta-btn:hover {
    background: #00e5ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(0, 209, 255, 0.5);
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
    background: #03080f;
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {

    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.footer-logo span {
    color: var(--cyan);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0;
}

.footer-links a {
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
    transition: color .25s;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-copy {
    color: var(--muted);
    font-size: 13px;
}

/* ─── SCROLL REVEAL ───────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.23, 1, .32, 1), transform .7s cubic-bezier(.23, 1, .32, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1020px) {


    .hero h1 {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agenda-grid {
        grid-template-columns: 1fr;
    }

    .attend-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .footer-links {
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .section-title {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .attend-grid {
        grid-template-columns: 1fr;
    }

    .takeaway-inner {
        padding: 44px 32px;
    }

    .takeaway-content h2 {
        font-size: 28px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .speaker-card {
        flex-direction: column;
    }

    /* Prevent animated decorative layers from causing scroll overflow */
    .healthtech-bg::before {
        animation: none;
        transform: none;
    }

    .hero h1,
    .meta-pill,
    .form-card,
    .countdown .cd-unit,
    .speaker-avatar {
        animation: none;
    }

    .grid-runner {
        display: none;
    }

    .countdown {
        gap: 10px;
    }

    .cd-unit {
        min-width: 0;
        flex: 1 1 calc(25% - 8px);
        padding: 10px 8px;
    }

    .cd-num {
        font-size: 24px;
    }
}

/* ─── FUTURISTIC HEALTHTECH BACKGROUND ELEMENTS ───────────────── */
.healthtech-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    contain: strict;
    transform: translateZ(0);
}

.dna-strand {
    position: absolute;
    width: 160px;
    height: 520px;
    opacity: 0.22;
    filter: drop-shadow(0 0 12px rgba(0, 209, 255, 0.65));
    animation: dnaFloat 18s ease-in-out infinite alternate;
}

.dna-strand::before,
.dna-strand::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 209, 255, 0.9), transparent);
    border-radius: 20px;
}

.dna-strand::before {
    left: 42px;
    transform: skewY(18deg);
}

.dna-strand::after {
    right: 42px;
    transform: skewY(-18deg);
}

.dna-rung {
    position: absolute;
    left: 36px;
    width: 88px;
    height: 2px;
    background: rgba(0, 139, 224, 0.1);
    box-shadow: 0 0 10px rgba(0, 139, 224, 0.1);
    transform-origin: center;
}

.molecule {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 139, 224, 0.1) 0%, rgba(0, 160, 255, 0.25) 50%, transparent 72%);
    box-shadow: 0 0 25px rgba(0, 139, 224, 0.6);
    animation: moleculePulse 7s ease-in-out infinite;
}

.molecule::before,
.molecule::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 139, 224, 0.4), transparent);
    height: 1px;
    transform-origin: left center;
}

.molecule::before {
    width: 80px;
    top: 50%;
    left: 100%;
    transform: rotate(25deg);
}

.molecule::after {
    width: 60px;
    top: 50%;
    right: 100%;
    transform: rotate(-35deg);
}

.tech-orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 209, 255, 0.18);
    box-shadow: inset 0 0 30px rgba(0, 209, 255, 0.06), 0 0 40px rgba(0, 209, 255, 0.12);
    animation: orbFloat 22s ease-in-out infinite;
}

@keyframes dnaFloat {
    0% {
        transform: translateY(0px) rotate(-2deg);
    }

    100% {
        transform: translateY(-35px) rotate(2deg);
    }
}

@keyframes moleculePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.16;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.3;
    }
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-28px) translateX(16px);
    }
}

body>* {
    position: relative;
    z-index: 1;
}


/* ─── ADVANCED FLOATING HEALTHTECH FX ───────────────── */
.healthtech-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 209, 255, 0.06), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(0, 120, 255, 0.05), transparent 30%),
        radial-gradient(circle at 40% 80%, rgba(0, 209, 255, 0.04), transparent 24%);
    animation: bgPulse 12s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    from {
        opacity: 0.55;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.03);
    }
}

.dna-strand {
    position: absolute;
    width: 170px;
    height: 560px;
    opacity: 0.24;
    filter: drop-shadow(0 0 18px rgba(0, 209, 255, 0.8));
    animation: dnaFloat 20s ease-in-out infinite alternate;
}

.dna-strand::before,
.dna-strand::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(to bottom, transparent, rgba(0, 209, 255, 0.9), transparent);
}

.dna-strand::before {
    left: 42px;
    transform: skewY(20deg);
}

.dna-strand::after {
    right: 42px;
    transform: skewY(-20deg);
}

.dna-rung {
    position: absolute;
    left: 36px;
    width: 94px;
    height: 2px;
    background: rgba(0, 209, 255, 0.9);
    box-shadow: 0 0 14px rgba(0, 209, 255, 0.9);
    border-radius: 50px;
}

.molecule {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.95) 0%, rgba(0, 160, 255, 0.35) 45%, transparent 72%);
    box-shadow:
        0 0 18px rgba(0, 209, 255, 0.8),
        0 0 40px rgba(0, 209, 255, 0.45);
    animation: moleculePulse 6s ease-in-out infinite;
}

.molecule::before,
.molecule::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 209, 255, 0.5), transparent);
}

.molecule::before {
    width: 100px;
    left: 100%;
    transform: rotate(28deg);
}

.molecule::after {
    width: 80px;
    right: 100%;
    transform: rotate(-34deg);
}

.molecule-small {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #7ef9ff;
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.95);
    animation: particleMove linear infinite;
}

.tech-orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 209, 255, 0.16);
    box-shadow:
        inset 0 0 40px rgba(0, 209, 255, 0.08),
        0 0 50px rgba(0, 209, 255, 0.12);
    backdrop-filter: blur(2px);
    animation: orbFloat 24s ease-in-out infinite;
}

.hex-grid {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(0, 209, 255, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 209, 255, 0.35) 1px, transparent 1px);
    background-size: 24px 24px;
    transform: rotate(18deg);
    filter: blur(0.2px);
    animation: gridFloat 18s ease-in-out infinite alternate;
}

@keyframes dnaFloat {
    0% {
        transform: translate3d(0, 0, 0) rotate(-2deg);
    }

    100% {
        transform: translate3d(8px, -28px, 0) rotate(2deg);
    }
}

@keyframes moleculePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.16;
    }

    50% {
        transform: scale(1.22);
        opacity: 0.34;
    }
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-36px) translateX(18px);
    }
}

@keyframes particleMove {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 0.15;
    }

    to {
        transform: translate3d(20px, -80px, 0);
        opacity: 0.5;
    }
}

@keyframes gridFloat {
    from {
        transform: rotate(18deg) translateY(0px);
    }

    to {
        transform: rotate(22deg) translateY(-18px);
    }
}


/* ─── LIVE GRID RUNNING DOTS ───────────────────── */
.grid-runner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #008BE0;
    box-shadow:
        0 0 10px rgba(0, 139, 224, 1),
        0 0 25px rgba(0, 139, 224, 0.9),
        0 0 45px rgba(0, 139, 224, 0.7);
    z-index: 2;
}

.runner-horizontal-1 {
    top: 22%;
    animation: moveHorizontal 12s linear infinite;
}

.runner-horizontal-2 {
    top: 58%;
    animation: moveHorizontal 18s linear infinite;
    animation-delay: 3s;
}

.runner-vertical-1 {
    left: 68%;
    animation: moveVertical 15s linear infinite;
}

.runner-vertical-2 {
    left: 36%;
    animation: moveVertical 20s linear infinite;
    animation-delay: 4s;
}

@keyframes moveHorizontal {
    0% {
        left: -10px;
    }

    100% {
        left: calc(100% + 10px);
    }
}

@keyframes moveVertical {
    0% {
        top: -10px;
    }

    100% {
        top: calc(100% + 10px);
    }
}

/* ─── IMPROVED DNA STRUCTURE ───────────────────── */
.dna-strand {
    width: 180px;
    height: 620px;
    opacity: 0.34;
    filter:
        drop-shadow(0 0 18px rgba(0, 209, 255, 0.9)) drop-shadow(0 0 40px rgba(0, 209, 255, 0.6));
}

.dna-strand::before,
.dna-strand::after {
    width: 4px;
    border-radius: 50px;
    background:
        linear-gradient(to bottom,
            rgba(0, 209, 255, 0.1),
            rgba(0, 240, 255, 1),
            rgba(0, 209, 255, 0.1));
}

.dna-strand::before {
    left: 48px;
    animation: dnaWaveLeft 6s ease-in-out infinite alternate;
}

.dna-strand::after {
    right: 48px;
    animation: dnaWaveRight 6s ease-in-out infinite alternate;
}

@keyframes dnaWaveLeft {
    0% {
        transform: skewY(18deg) translateX(0px);
    }

    100% {
        transform: skewY(-18deg) translateX(16px);
    }
}

@keyframes dnaWaveRight {
    0% {
        transform: skewY(-18deg) translateX(0px);
    }

    100% {
        transform: skewY(18deg) translateX(-16px);
    }
}

.dna-rung {
    width: 96px;
    left: 42px;
    height: 2px;
    border-radius: 100px;
    background: rgba(115, 247, 255, 0.95);
    box-shadow:
        0 0 12px rgba(0, 209, 255, 1),
        0 0 24px rgba(0, 209, 255, 0.85);
}

/* ─── QUICK PREMIUM MICRO-INTERACTIONS ───────────────── */

/* Hero content subtle float */
.hero h1 {
    animation: heroFloat 5s ease-in-out infinite alternate;
}

.hero-desc {
    animation: fadeSoft 2s ease-out forwards;
}

.meta-pill {
    animation: pillFloat 4s ease-in-out infinite alternate;
}

.meta-pill:nth-child(2) {
    animation-delay: 0.6s;
}

.meta-pill:nth-child(3) {
    animation-delay: 1.2s;
}

.form-card {
    animation:
        cardGlow 6s ease-in-out infinite alternate,
        fadeScale 1s ease-out forwards;
}

.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 90px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(0, 139, 224, 0.2), transparent);
    animation: lineGlow 4s ease-in-out infinite;
}

.section-head.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.agenda-item,
.attend-card,
.speaker-card,
.faq-item,
.stat-box,
.trust-badge {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.agenda-item:hover,
.attend-card:hover,
.speaker-card:hover,
.faq-item:hover,
.stat-box:hover,
.trust-badge:hover {
    box-shadow:
        0 0 24px rgba(0, 139, 224, 0.2),
        0 12px 35px rgba(0, 139, 224, 0.2);
}

.submit-btn,
.cta-btn,
.takeaway-cta {
    position: relative;
    overflow: hidden;
}

.submit-btn::before,
.cta-btn::before,
.takeaway-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transform: skewX(-22deg);
}

.submit-btn:hover::before,
.cta-btn:hover::before,
.takeaway-cta:hover::before {
    animation: shineSweep 0.9s ease forwards;
}

.speaker-avatar {
    animation: avatarPulse 5s ease-in-out infinite;
}

.countdown .cd-unit {
    animation: countdownGlow 3s ease-in-out infinite alternate;
}

.countdown .cd-unit:nth-child(2) {
    animation-delay: 0.5s;
}

.countdown .cd-unit:nth-child(3) {
    animation-delay: 1s;
}

.countdown .cd-unit:nth-child(4) {
    animation-delay: 1.5s;
}

.meta-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes heroFloat {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-6px);
    }
}

@keyframes fadeSoft {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pillFloat {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-5px);
    }
}

@keyframes cardGlow {
    from {
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.45),
            0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    to {
        box-shadow:
            0 30px 90px rgba(0, 0, 0, 0.55),
            0 0 25px rgba(0, 209, 255, 0.18);
    }
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: 0.55;
        width: 90px;
    }

    50% {
        opacity: 1;
        width: 130px;
    }
}

@keyframes shineSweep {
    from {
        left: -120%;
    }

    to {
        left: 140%;
    }
}

@keyframes avatarPulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(0, 209, 255, 0);
    }

    50% {
        box-shadow:
            0 0 22px rgba(0, 209, 255, 0.45),
            0 0 45px rgba(0, 209, 255, 0.18);
    }
}

@keyframes countdownGlow {
    from {
        box-shadow: 0 0 0 rgba(0, 209, 255, 0);
    }

    to {
        box-shadow:
            0 0 18px rgba(0, 209, 255, 0.18),
            inset 0 0 12px rgba(0, 209, 255, 0.08);
    }
}