/* ================================================================
   NETCORE CLOUD C-SUITE ROUNDTABLE
   Brand-matched: Netcore Orange #FC5E02 | Dark Navy #0A0E1A
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Design Tokens ── */
:root {
    /* === Netcore Brand Palette === */
    --nc-orange: #FC5E02;
    --nc-orange-light: #FF7A2E;
    --nc-orange-dark: #D94E00;
    --nc-amber: #FFA133;

    /* Dark navy backgrounds — matches netcorecloud.com */
    --bg-hero: #06091A;
    --bg-dark: #0A0E1A;
    --bg-dark-2: #0D1225;
    --bg-card-dark: rgba(255, 255, 255, 0.04);
    --bg-white: #FFFFFF;
    --bg-light: #F7F8FC;

    /* Accent — Netcore uses a teal/sky alongside orange */
    --nc-teal: #00C6B8;
    --nc-teal-dim: rgba(0, 198, 184, 0.65);

    /* Gradients */
    --grad-brand: linear-gradient(135deg, #FC5E02 0%, #FFA133 100%);
    --grad-brand-v: linear-gradient(180deg, #FC5E02 0%, #D94E00 100%);
    --grad-hero-bg: linear-gradient(135deg, #06091A 0%, #0D1225 55%, #0A1530 100%);
    --grad-card: linear-gradient(145deg, rgba(252, 94, 2, 0.10) 0%, rgba(255, 161, 51, 0.06) 100%);
    --grad-text: linear-gradient(90deg, #FC5E02 0%, #FFA133 100%);

    /* Text */
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.58);
    --text-muted-2: rgba(255, 255, 255, 0.36);
    --text-dark: #0F1523;
    --text-gray: #4B5568;

    /* Borders */
    --border-orange: rgba(252, 94, 2, 0.35);
    --border-subtle: rgba(255, 255, 255, 0.08);

    /* Shadows */
    --shadow-btn: 0 8px 28px rgba(252, 94, 2, 0.45);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.30);
    --shadow-glow: 0 0 0 1px rgba(252, 94, 2, 0.25), 0 20px 60px rgba(0, 0, 0, 0.55);

    /* Spatial */
    --section-py: 100px;
    --container-max: 1280px;
    --container-px: clamp(20px, 5vw, 80px);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;

    --font: 'Inter', 'Poppins', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    scroll-margin-top: 72px;
}

/* ── Container ── */
.nc-container {
    width: 100%;
    /* max-width: var(--container-max); */
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ── Section Helpers ── */
.nc-section {
    /*padding: var(--section-py) 0;*/
}

.nc-section--slim {
    padding: 60px 0;
}

.nc-section--light {
    background: var(--bg-white);
    color: var(--text-dark);
}

/* .nc-section--dark {
    background: var(--bg-dark-2);
} */

/* .nc-section--form {
    background: var(--bg-hero);
} */

/* ── Gradient Text ── */
.nc-gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   ANIMATIONS (CSS-native, no JS needed for entry)
   ================================================================ */

/* Hero content enters on page load */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Blob ambient drift */
@keyframes blob-drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.06);
    }

    50% {
        transform: translate(-20px, 25px) scale(0.95);
    }

    75% {
        transform: translate(15px, 10px) scale(1.03);
    }
}

/* Floating cards bob */
@keyframes float-bob {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pulsing live dot */
@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.65);
    }
}

/* Scroll-reveal (JS adds .visible) */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(.22, .68, 0, 1.2), transform 0.65s cubic-bezier(.22, .68, 0, 1.2);
}

.reveal--right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.65s cubic-bezier(.22, .68, 0, 1.2) 0.15s,
        transform 0.65s cubic-bezier(.22, .68, 0, 1.2) 0.15s;
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ================================================================
   HEADER
   ================================================================ */
.nc-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 9, 26, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.nc-header__logos {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nc-header__logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nc-header__logo--invert {
    filter: brightness(0) invert(1);
}

.nc-header__divider {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.18);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.nc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    border: none;
    background: var(--grad-brand);
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Sheen sweep on hover */
.nc-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.nc-btn:hover::after {
    left: 125%;
}

.nc-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
}

.nc-btn svg {
    width: 17px;
    height: 17px;
    transition: transform 0.22s ease;
    flex-shrink: 0;
}

.nc-btn:hover svg {
    transform: translateX(4px);
}

.nc-btn--sm {
    padding: 10px 22px;
    font-size: 14px;
}

.nc-btn--glow {
    padding: 16px 38px;
    font-size: 16px;
    box-shadow: var(--shadow-btn);
}

.nc-btn--glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(252, 94, 2, 0.60);
}

.nc-btn--full {
    width: 100%;
    justify-content: center;
    font-size: 17px;
    padding: 18px 36px;
}

.nc-btn--outline {
    background: transparent;
    border: 2px solid var(--nc-orange);
    color: var(--nc-orange);
    box-shadow: none;
}

.nc-btn--outline:hover {
    background: rgba(252, 94, 2, 0.1);
    transform: translateY(-2px);
}

/* ================================================================
   EYEBROW / BADGE
   ================================================================ */
.nc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--nc-orange);
    margin-bottom: 14px;
}

.nc-eyebrow--light {
    color: var(--nc-amber);
}

.nc-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(252, 94, 2, 0.12);
    border: 1px solid rgba(252, 94, 2, 0.38);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--nc-amber);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.nc-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--nc-orange);
    box-shadow: 0 0 8px rgba(252, 94, 2, 0.8);
    animation: pulse-dot 2s ease-in-out infinite;
}

/* ================================================================
   HEADINGS & TEXT
   ================================================================ */
.nc-heading {
    font-size: clamp(1.9rem, 3.8vw, 3.1rem);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -0.022em;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.nc-heading--white {
    color: var(--text-white);
}

.nc-subtext {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.nc-subtext--dark {
    color: var(--text-gray);
}

.nc-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.nc-section__header .nc-subtext {
    margin: 0 auto;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.nc-hero {
    position: relative;
    background: var(--grad-hero-bg);
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0 90px;
}

/* --- Ambient blobs --- */
.nc-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    will-change: transform;
    animation: blob-drift 14s ease-in-out infinite;
}

.nc-hero__blob--1 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(252, 94, 2, 0.28) 0%, rgba(252, 94, 2, 0.06) 70%);
    top: -140px;
    left: -120px;
    animation-duration: 16s;
    animation-delay: 0s;
}

.nc-hero__blob--2 {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(0, 198, 184, 0.18) 0%, transparent 70%);
    top: 30%;
    right: -80px;
    animation-duration: 20s;
    animation-delay: -6s;
}

.nc-hero__blob--3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 161, 51, 0.15) 0%, transparent 70%);
    bottom: -80px;
    left: 38%;
    animation-duration: 18s;
    animation-delay: -11s;
}

/* --- Grid dot overlay — like netcorecloud.com --- */
.nc-hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    opacity: 0.6;
}

/* --- Hero inner layout --- */
.nc-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 56px;
    align-items: center;
}

/* Hero content animates in via CSS on load */
.nc-hero__content {
    animation: fadeUp 0.8s cubic-bezier(.22, .68, 0, 1.2) 0.1s both;
}

.nc-hero__visual {
    animation: fadeRight 0.9s cubic-bezier(.22, .68, 0, 1.2) 0.25s both;
}

/* --- Hero text --- */
.nc-hero__heading {
    font-size: clamp(2.1rem, 4.2vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 18px;
}

.nc-hero__sub {
    font-size: 18px;
    font-weight: 500;
    color: var(--nc-teal-dim);
    margin-bottom: 18px;
    letter-spacing: 0.1px;
}

.nc-hero__body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.nc-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 40px;
}

.nc-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.80);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.nc-hero__meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--nc-orange);
    flex-shrink: 0;
}

.nc-hero__cta-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nc-hero__urgency {
    font-size: 13px;
    color: var(--text-muted-2);
    font-weight: 500;
    letter-spacing: 0.4px;
}

/* --- Hero visual panel --- */
.nc-hero__visual {
    position: relative;
}

.nc-hero__img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(252, 94, 2, 0.22);
    overflow: hidden;
    /* keeps cards clipped at edges */
}

.nc-hero__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

/* Orange glow ring underneath image */
.nc-hero__img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(252, 94, 2, 0.14) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* --- Floating metric cards --- */
.nc-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(10, 14, 26, 0.90);
    border: 1px solid rgba(252, 94, 2, 0.38);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 11px 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(252, 94, 2, 0.12);
    z-index: 3;
    /* Individual float animation — staggered delays */
    animation: float-bob 4s ease-in-out infinite;
}

.nc-float-card svg {
    width: 20px;
    height: 20px;
    color: var(--nc-orange);
    flex-shrink: 0;
}

.nc-float-card__val {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.nc-float-card__label {
    font-size: 10.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.nc-float-card--1 {
    bottom: 24px;
    left: 20px;
    animation-delay: 0s;
}

.nc-float-card--2 {
    top: 20px;
    right: 20px;
    animation-delay: -1.4s;
}

.nc-float-card--3 {
    bottom: 90px;
    right: 20px;
    animation-delay: -2.8s;
}

/* ================================================================
   PROBLEM / CONTEXT SECTION
   ================================================================ */
.nc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.nc-two-col__text .nc-eyebrow {
    color: var(--nc-orange);
}

.nc-two-col__text .nc-heading {
    color: var(--text-dark);
}

.nc-body-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.nc-problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.nc-problem-list__item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.nc-problem-list__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(252, 94, 2, 0.14), rgba(255, 161, 51, 0.08));
    border: 1px solid rgba(252, 94, 2, 0.22);
    color: var(--nc-orange);
}

.nc-problem-list__icon svg {
    width: 20px;
    height: 20px;
}

.nc-problem-list__item strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.nc-problem-list__item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.nc-journey-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.nc-journey-img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(252, 94, 2, 0.18);
    box-shadow: 0 20px 60px rgba(252, 94, 2, 0.10), 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nc-journey-glow {
    position: absolute;
    inset: -24px;
    background: radial-gradient(ellipse at 50% 50%, rgba(252, 94, 2, 0.10), transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    z-index: -1;
}

/* ================================================================
   ROUNDTABLE OVERVIEW CARDS
   ================================================================ */
.nc-overview-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.nc-overview-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 5px 5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(-6px);
    border-color: var(--border-orange);
    box-shadow: 0 20px 50px rgba(252, 94, 2, 0.18);
}

/*.nc-overview-card::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    height: 2px;*/
/*    background: var(--grad-brand);*/
/*    opacity: 0;*/
/*    transition: opacity 0.3s ease;*/
/*}*/

.nc-overview-card:hover {
    
}

.nc-overview-card:hover::before {
    opacity: 1;
}

.nc-overview-card__icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--grad-card);
    border: 1px solid rgba(252, 94, 2, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 20px;*/
    color: var(--nc-orange);
}

.nc-overview-card__icon svg {
    width: 24px;
    height: 24px;
}

.nc-overview-card h3 {
    font-size: 17px;
    font-weight: 700;
    /* color: #fff; */
    margin-bottom: 10px;
}

.nc-overview-card p {
    font-size: 14px;
    line-height: 1.75;
    /* color: var(--text-muted); */
}

/* ================================================================
   DISCUSSION POINTS GRID
   ================================================================ */
.nc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.nc-disc-card {
    background: var(--bg-white);
    border: 1px solid #EAE8F0;
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nc-disc-card--wide {
    grid-column: span 3;
}

.nc-disc-card:hover {
    transform: translateY(-5px);
    border-color: var(--nc-orange);
    box-shadow: 0 12px 36px rgba(252, 94, 2, 0.12);
}

.nc-disc-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(252, 94, 2, 0.12), rgba(255, 161, 51, 0.07));
    border: 1px solid rgba(252, 94, 2, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--nc-orange);
}

.nc-disc-card__icon svg {
    width: 22px;
    height: 22px;
}

.nc-disc-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.nc-disc-card__text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ================================================================
   WHY ATTEND
   ================================================================ */
.nc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.nc-why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px 22px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nc-why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nc-why-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-orange);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.nc-why-card:hover::after {
    opacity: 1;
}

.nc-why-card__num {
    font-size: 38px;
    font-weight: 900;
    color: rgba(252, 94, 2, 0.13);
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -2px;
}

.nc-why-card__icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: var(--grad-card);
    border: 1px solid rgba(252, 94, 2, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nc-orange);
    margin-bottom: 16px;
}

.nc-why-card__icon svg {
    width: 21px;
    height: 21px;
}

.nc-why-card h3 {
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 9px;
}

.nc-why-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ================================================================
   TRUST / SOCIAL PROOF
   ================================================================ */
.nc-trust {
    text-align: center;
}

.nc-trust__tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 36px;
}

.nc-trust__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.nc-trust__logo-item {
    opacity: 0.5;
    filter: grayscale(1);
    transition: opacity 0.3s, filter 0.3s;
}

.nc-trust__logo-item:hover {
    opacity: 1;
    filter: grayscale(0);
}

.nc-trust__logo {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.nc-trust__logo-item--placeholder {
    height: 34px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border: 1px dashed #bbb;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

/* ================================================================
   AGENDA (light section)
   ================================================================ */
.nc-agenda-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.nc-agenda-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.nc-agenda-table thead tr {
    background: rgba(255, 106, 0, 0.04);
    border-bottom: 2px solid var(--border-orange);
}

.nc-agenda-table th {
    padding: 24px;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
}

.nc-agenda-table td {
    /*padding: 24px;*/
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-card);
    vertical-align: top;
}

.nc-agenda-table tr:last-child td {
    border-bottom: none;
}

.nc-agenda-highlight td {
    background: rgba(255, 106, 0, 0.02);
}

.nc-agenda-time-span { 
    font-size: 13px;
    color: #000;
}

.nc-agenda-focus-title {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

/* ================================================================
   REGISTRATION FORM
   ================================================================ */
.nc-cta-header {
    text-align: center;
    margin-bottom: 52px;
}

.nc-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(252, 94, 2, 0.38);
    background: rgba(252, 94, 2, 0.08);
    font-size: 13px;
    font-weight: 600;
    color: var(--nc-orange);
    letter-spacing: 0.4px;
}

.nc-form-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    padding: 48px;
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.nc-form {
    width: 100%;
}

.nc-form__loader {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.nc-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.nc-form__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.nc-form__field--full {
    grid-column: span 2;
}

.nc-form__field label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.68);
    letter-spacing: 0.2px;
}

.nc-form__field label span {
    color: var(--nc-orange);
    margin-left: 2px;
}

.nc-form__field input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 15px;
    font-family: var(--font);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
}

.nc-form__field input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.nc-form__field input:focus {
    border-color: rgba(252, 94, 2, 0.65);
    background: rgba(252, 94, 2, 0.06);
    box-shadow: 0 0 0 3px rgba(252, 94, 2, 0.14);
}

.nc-form__consent {
    margin-top: 4px;
}

.nc-form__consent-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.nc-form__consent-label a {
    color: var(--nc-orange);
    text-decoration: underline;
}

.nc-form__consent-label a:hover {
    color: var(--nc-amber);
}

.nc-form__submit {
    margin-top: 8px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.nc-footer {
    background: #040609;
    padding: 52px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nc-footer__inner {
    text-align: center;
}

.nc-footer__logos {
    margin-bottom: 26px;
    display: flex;
    justify-content: center;
}

.nc-footer__logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nc-footer__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.nc-footer__hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 22px;
}

.nc-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.nc-footer__links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
}

.nc-footer__links a:hover {
    color: var(--nc-orange);
}

.nc-footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
}

.nc-footer__copy a {
    color: rgba(255, 255, 255, 0.42);
}

.nc-footer__copy a:hover {
    color: var(--nc-orange);
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .nc-hero__content,
    .nc-hero__visual {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (max-width: 1100px) {
    .nc-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    :root {
        --section-py: 72px;
    }

    .nc-hero {
        min-height: auto;
        padding: 80px 0 64px;
    }

    .nc-hero__inner {
        grid-template-columns: 1fr;
    }

    .nc-hero__visual {
        display: none;
    }

    .nc-two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nc-two-col__visual {
        order: -1;
    }

    .nc-overview-cards {
        grid-template-columns: 1fr;
    }

    .nc-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .nc-disc-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    :root {
        --section-py: 56px;
    }

    .nc-why-grid {
        grid-template-columns: 1fr;
    }

    .nc-grid-3 {
        grid-template-columns: 1fr;
    }

    .nc-disc-card--wide {
        grid-column: span 1;
    }

    .nc-form-wrap {
        padding: 28px 20px;
    }

    .nc-form__grid {
        grid-template-columns: 1fr;
    }

    .nc-form__field--full {
        grid-column: span 1;
    }

    .nc-hero__meta {
        gap: 10px;
    }

    .nc-hero__cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .nc-trust__logos {
        gap: 20px;
    }

    .nc-footer__bottom {
        flex-direction: column;
        gap: 10px;
    }

    /* Agenda Mobile Reflow -> 2 column */
    .nc-agenda-table thead {
        display: none;
    }

    .nc-agenda-table tbody tr {
        display: grid;
        grid-template-columns: 85px 1fr;
        gap: 12px;
        padding: 20px;
        border-bottom: 1px solid var(--border-card);
    }

    .nc-agenda-table tbody tr:last-child {
        border-bottom: none;
    }

    .nc-agenda-table td {
        padding: 0;
        border: none;
    }

    /* Speaker stacks directly under Focus in column 2 */
    .nc-agenda-table td:nth-child(3) {
        grid-column: 2;
        padding-top: 12px;
        margin-top: 8px;
        border-top: 1px dashed rgba(0, 0, 0, 0.1);
        font-size: 14px;
        color: var(--nc-orange);
        font-weight: 500;
    }
}

@media (max-width: 480px) {
    .nc-heading {
        font-size: 1.75rem;
    }

    .nc-hero__heading {
        font-size: 1.95rem;
    }

    .nc-btn--glow {
        padding: 14px 28px;
        font-size: 15px;
    }

    .nc-overview-card {
        padding: 22px 18px;
    }

    .nc-hero__meta-item {
        font-size: 13px;
        padding: 6px 12px;
    }
}