/* =====================================================================
   site.css — 2nd Elets National Railway & Transport Innovation Summit

   Written from scratch. The "save page as" capture this page was rebuilt
   from lost every stylesheet the site actually used (bootstrap.min.css,
   header.css, banner-bg.css, index-9/11/13.css, responsive.css,
   flaticon.css, swiper.min.css, lightcase.css, flexslider.css,
   font-awesome.min.css) along with all nine scripts. The single style.css
   that did survive belongs to an unrelated template and defines none of
   this page's classes, so there was nothing to restore — only rebuild.

   Bootstrap's grid and Font Awesome come from a CDN; everything below is
   this site's own layer.
   ===================================================================== */

:root {
    --ink: #0a1628;
    --ink-2: #12263f;
    --body: #4a5a6a;
    --line: #e3e9f0;
    --smoke: #f5f8fb;

    --accent: #0ea5e9;
    --accent-deep: #0369a1;
    --amber: #f59e0b;

    --radius: 16px;
    --shadow-sm: 0 4px 14px rgba(10, 22, 40, .07);
    --shadow: 0 16px 40px rgba(10, 22, 40, .12);
    --shadow-lg: 0 28px 70px rgba(10, 22, 40, .20);

    --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
    --section-y: clamp(64px, 8vw, 112px);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.7;
    color: var(--body);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .6em;
    font-family: var(--font);
    color: var(--ink);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 2000;
    padding: 12px 22px; background: var(--accent); color: #fff;
    font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container { width: min(1200px, 100% - 40px); margin-inline: auto; }

.section { padding: var(--section-y) 0; }
.section--smoke { background: var(--smoke); }
.section--ink { background: var(--ink); color: #c7d5e4; }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

/* ---------------------------------------------------- section headers -- */
.section-header { margin-bottom: clamp(34px, 4vw, 56px); }
.section-header.text-center { text-align: center; }

.section-header .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 15px;
    border-radius: 999px;
    background: rgba(14, 165, 233, .12);
    color: var(--accent-deep);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section--ink .section-header .eyebrow {
    background: rgba(255, 255, 255, .10);
    color: #7dd3fc;
}

.section-header h2 {
    font-size: clamp(30px, 3.6vw, 50px);
    margin-bottom: 18px;
}

.section-header p { max-width: 68ch; margin: 0; }
.section-header.text-center p { margin-inline: auto; }

.section-header h2::after {
    content: "";
    display: block;
    width: 92px; height: 5px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--amber));
}
.section-header.text-center h2::after { margin-inline: auto; }

/* ------------------------------------------------------------ buttons -- */
.btn-primary-cta,
.btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 700; font-size: 15.5px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn-primary-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    box-shadow: 0 12px 28px rgba(14, 165, 233, .38);
}
.btn-primary-cta:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 18px 38px rgba(14, 165, 233, .48); }

.btn-ghost { border: 2px solid rgba(255, 255, 255, .55); color: #fff; }
.btn-ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }

/* ------------------------------------------------------------- header -- */
.site-header {
    position: sticky; top: 0; z-index: 900;
    background: rgba(10, 22, 40, .92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header .bar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; padding: 12px 0;
}

.brand img { height: 52px; width: auto; }

.nav-toggle {
    display: none;
    background: none; border: 1px solid rgba(255, 255, 255, .3);
    color: #fff; border-radius: 8px; padding: 9px 13px; font-size: 17px; cursor: pointer;
}

.nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }

.nav a {
    display: block; padding: 10px 14px; border-radius: 8px;
    color: #d5e3f1; font-weight: 600; font-size: 15px;
}
.nav a:hover { background: rgba(255, 255, 255, .08); color: #fff; }

.nav .has-sub { position: relative; }
.nav .has-sub > a::after {
    content: "\f107"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    margin-left: 7px; font-size: 12px;
}

.nav .sub {
    position: absolute; top: calc(100% + 8px); left: 0; z-index: 20;
    display: block; min-width: 320px; padding: 8px;
    background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: .22s ease;
}
.nav .has-sub:hover .sub,
.nav .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }

.nav .sub li { width: 100%; }
.nav .sub a { color: var(--ink-2); font-weight: 600; font-size: 14.5px; white-space: normal; }
.nav .sub a:hover { background: var(--smoke); color: var(--accent-deep); }

.nav .cta a {
    margin-left: 8px; padding: 11px 22px; border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff; box-shadow: 0 8px 20px rgba(14, 165, 233, .35);
}
.nav .cta a:hover { transform: translateY(-1px); }

/* --------------------------------------------------------------- hero -- */
.hero {
    position: relative;
    padding: clamp(70px, 9vw, 130px) 0 clamp(80px, 10vw, 140px);
    background:
        radial-gradient(1100px 520px at 12% 6%, rgba(14, 165, 233, .30), transparent 62%),
        radial-gradient(900px 600px at 88% 92%, rgba(245, 158, 11, .20), transparent 60%),
        linear-gradient(140deg, #071120 0%, #0a1628 45%, #103356 100%);
    overflow: hidden;
    color: #fff;
}

/* rail-track motif */
.hero::after {
    content: "";
    position: absolute; inset: auto 0 0 0; height: 120px;
    background-image:
        linear-gradient(rgba(255, 255, 255, .13) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 2px, transparent 2px);
    background-size: 100% 46px, 34px 100%;
    -webkit-mask-image: linear-gradient(transparent, #000);
    mask-image: linear-gradient(transparent, #000);
    pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(32px, 5vw, 66px);
    align-items: center;
}

.hero-eyebrow {
    display: inline-block; margin-bottom: 20px;
    padding: 8px 17px; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .07);
    font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

.hero h1 {
    color: #fff;
    font-size: clamp(33px, 4.6vw, 62px);
    line-height: 1.06;
    margin-bottom: 20px;
}
.hero h1 .accent {
    background: linear-gradient(100deg, #38bdf8, var(--amber));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

.hero-theme {
    margin: 0 0 26px;
    font-size: clamp(16px, 1.7vw, 20px);
    color: #b9cfe4;
    max-width: 54ch;
}

.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 30px; padding: 0; }
.hero-chips li {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 9px 16px; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    font-size: 14.5px; font-weight: 600; color: #eaf4ff;
}
.hero-chips i { color: var(--amber); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* The banner artwork was one of the images the capture lost. Rather than park a
   placeholder here, the column carries the summit's own headline numbers. */
.hero-visual { position: relative; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.hero-stat {
    padding: 26px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .07);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .30);
    text-align: center;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.hero-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, .6);
    background: rgba(255, 255, 255, .11);
}

.hero-stat strong {
    display: block;
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(120deg, #7dd3fc, var(--amber));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.hero-stat strong span { -webkit-text-fill-color: var(--amber); color: var(--amber); }

.hero-stat .lbl {
    display: block; margin-top: 10px;
    font-size: 13.5px; font-weight: 600; line-height: 1.4; color: #cfe2f3;
}

.hero-stat--wide {
    grid-column: 1 / -1;
    display: flex; align-items: center; gap: 14px; text-align: left;
    padding: 20px 22px;
}
.hero-stat--wide i { font-size: 24px; color: var(--amber); flex-shrink: 0; }
.hero-stat--wide .lbl { margin: 0; font-size: 14.5px; }

/* ----------------------------------------------------------- about -- */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 64px); align-items: center;
}

.about-copy p { margin: 0 0 18px; }
.about-copy strong, .about-copy b { color: var(--ink); font-weight: 700; }

.about-collage { display: grid; grid-template-columns: 1.25fr 1fr; gap: 16px; align-items: stretch; }
.about-collage > img { border-radius: 14px; box-shadow: var(--shadow); width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.about-collage .stack { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.about-collage .stack img { border-radius: 14px; box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------- card grids -- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* highlight + participant cards */
.icon-card {
    display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    height: 100%;
}
.icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(14, 165, 233, .45); }

.icon-card .ico {
    display: grid; place-items: center;
    width: 62px; height: 62px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(14, 165, 233, .14), rgba(245, 158, 11, .14));
}
.icon-card .ico img { width: 34px; height: 34px; }

.icon-card p, .icon-card h3 {
    margin: 0; font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.4;
}

.icon-card.center { align-items: center; text-align: center; }

/* ------------------------------------------------------- focus cards -- */
.focus-card {
    position: relative; overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
    isolation: isolate;
}
.focus-card img { width: 100%; height: 260px; object-fit: cover; transition: transform .5s ease; }
.focus-card:hover img { transform: scale(1.06); }

.focus-card figcaption {
    position: absolute; inset: auto 0 0 0; z-index: 2;
    padding: 46px 22px 20px;
    background: linear-gradient(transparent, rgba(7, 17, 32, .92));
    color: #fff; font-size: 18px; font-weight: 700; line-height: 1.3;
}

/* --------------------------------------------------- discussion list -- */
.discussion-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.discussion-list li {
    display: flex; gap: 15px; align-items: flex-start;
    padding: 18px 22px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    color: #dce9f6; font-weight: 600;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.discussion-list li:hover { background: rgba(255, 255, 255, .09); border-left-color: var(--amber); transform: translateX(4px); }
.discussion-list i { color: var(--amber); margin-top: 5px; }

/* --------------------------------------------------------- partners -- */
.partner-tile {
    display: grid; place-items: center;
    height: 112px; padding: 16px;
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.partner-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.partner-tile img { max-height: 100%; width: auto; object-fit: contain; }

/* ---------------------------------------------------------- gallery -- */
.gallery-item {
    position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* -------------------------------------------------------- magazines -- */
/* flex column, not a fixed grid: only one card carries the extra note line, and
   a rigid row template stretched the others' Subscribe button into an oval */
.mag-card {
    display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
    padding: 22px 18px 24px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}
.mag-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* covers are portrait; a fixed 1:1.34 well keeps all four on the same baseline */
.mag-cover {
    display: block; width: 100%; max-width: 210px; margin-bottom: 6px;
    aspect-ratio: 1 / 1.34;
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 10px 26px rgba(10, 22, 40, .20);
    border: 1px solid var(--line);
}
.mag-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.mag-card:hover .mag-cover img { transform: scale(1.04); }

.mag-card h3 { margin: 0; font-size: 18px; }

.mag-issue {
    margin: 0; font-size: 13.5px; font-weight: 700;
    color: var(--accent-deep); letter-spacing: .01em;
}

.mag-card .sub-link { margin-top: auto; align-self: center; }

.mag-note {
    margin: 0; font-size: 12.5px; line-height: 1.45; color: var(--body);
}

@media (max-width: 575px) {
    .mag-cover { max-width: 190px; }
}
.mag-card .sub-link {
    display: inline-block; padding: 9px 20px; border-radius: 999px;
    border: 2px solid var(--accent); color: var(--accent-deep); font-weight: 700; font-size: 14px;
}
.mag-card .sub-link:hover { background: var(--accent); color: #fff; }

/* ------------------------------------------------------------ footer -- */
.site-footer { background: var(--ink); color: #a9bed3; padding: clamp(54px, 6vw, 84px) 0 0; }
.site-footer h4 { color: #fff; font-size: 18px; margin-bottom: 18px; }
.site-footer a { color: #a9bed3; }
.site-footer a:hover { color: #fff; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid ul a { font-weight: 600; }

.footer-brand img { height: 58px; margin-bottom: 18px; }

.newsletter { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.newsletter input {
    flex: 1 1 170px; min-width: 0;
    padding: 12px 16px; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07); color: #fff; font: inherit; font-size: 15px;
}
.newsletter input::placeholder { color: #7d95ac; }
.newsletter input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

.social { display: flex; gap: 10px; margin-top: 22px; }
.social a {
    display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255, 255, 255, .08); color: #cfe0f0;
}
.social a:hover { background: var(--accent); color: #fff; }

.footer-bottom {
    margin-top: clamp(40px, 5vw, 64px);
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding: 22px 0;
    text-align: center; font-size: 14.5px;
}

.to-top {
    position: fixed; right: 26px; bottom: 26px; z-index: 800;
    display: grid; place-items: center; width: 48px; height: 48px;
    border-radius: 50%; color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 10px 26px rgba(14, 165, 233, .42);
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: .3s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { color: #fff; transform: translateY(-3px); }


/* -------------------------------------------------------- responsive -- */
@media (max-width: 1100px) {
    .grid-6 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
    .nav-toggle { display: block; }
    .nav {
        position: absolute; left: 0; right: 0; top: 100%;
        background: #0a1628; border-top: 1px solid rgba(255, 255, 255, .08);
        max-height: 0; overflow: hidden; transition: max-height .35s ease;
    }
    .nav.open { max-height: 80vh; overflow-y: auto; }
    .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 20px; }
    .nav .sub {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; background: rgba(255, 255, 255, .05); min-width: 0;
        max-height: 0; overflow: hidden; padding: 0 8px; transition: max-height .3s ease, padding .3s ease;
    }
    .nav .has-sub.open .sub { max-height: 460px; padding: 8px; }
    .nav .sub a { color: #cfe0f0; }
    .nav .sub a:hover { background: rgba(255, 255, 255, .08); color: #fff; }
    .nav .cta a { margin: 10px 0 0; text-align: center; justify-content: center; }

    .hero-grid, .about-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-6 { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    body { font-size: 16px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .grid-6 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .about-collage { grid-template-columns: 1fr; }
    .focus-card img, .gallery-item img { height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* =====================================================================
   OUR MAGAZINES — dark stage so the covers carry the section
   ===================================================================== */
.mag-section { position: relative; overflow: hidden; }

.mag-section .container { position: relative; z-index: 2; }

.mag-glow {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(760px 420px at 14% 6%, rgba(14, 165, 233, .26), transparent 62%),
        radial-gradient(680px 460px at 88% 92%, rgba(245, 158, 11, .20), transparent 60%);
    pointer-events: none;
}

.mag-section .section-header p { color: #a9c0d4; }

.mag-section .grid { align-items: stretch; }

.mag-section .mag-card {
    position: relative;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .13);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .34);
    padding: 26px 20px 28px;
}

.mag-section .mag-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, .55);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 28px 62px rgba(0, 0, 0, .46);
}

/* the cover sits on a plinth and lifts on hover */
.mag-section .mag-cover {
    max-width: 200px;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .55), 0 2px 0 rgba(255, 255, 255, .18);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease;
    transform-origin: bottom center;
}

.mag-section .mag-card:hover .mag-cover {
    transform: translateY(-6px) rotate(-1.5deg) scale(1.03);
    box-shadow: 0 30px 52px rgba(0, 0, 0, .6);
}

.mag-section .mag-cover::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, .22) 0 18%, transparent 42%);
    opacity: 0; transition: opacity .45s ease; pointer-events: none;
}

.mag-section .mag-card:hover .mag-cover::after { opacity: 1; }

.mag-year {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    padding: 4px 11px; border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .06em;
    box-shadow: 0 6px 16px rgba(14, 165, 233, .45);
}

.mag-section .mag-card h3 { color: #fff; font-size: 19px; }

.mag-section .mag-issue { color: #7dd3fc; font-size: 13.5px; }

.mag-section .mag-note {
    color: #0a1628;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 6px 12px; border-radius: 999px;
    font-size: 11.5px; font-weight: 800; line-height: 1.35;
    letter-spacing: .01em;
}

.mag-section .sub-link {
    border: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    padding: 11px 26px;
    box-shadow: 0 10px 24px rgba(14, 165, 233, .34);
}

.mag-section .sub-link:hover {
    background: linear-gradient(135deg, #38bdf8, var(--accent));
    color: #fff;
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    .mag-section .mag-card:hover .mag-cover { transform: none; }
}

/* =====================================================================
   1st-edition additions: counts band, leadership pair, speaker grid,
   key-focus chips, discussion list, agenda timeline, venue card.
   ===================================================================== */

.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ---------------------------------------------------- counts band -- */
.counts-band {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 30px 0;
}
.counts {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 64px;
}
.counts li { color: #cfe0f0; font-size: 15px; font-weight: 600; text-align: center; }
.counts strong {
    display: block; font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; line-height: 1;
    background: linear-gradient(120deg, #7dd3fc, var(--amber));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.counts strong span { -webkit-text-fill-color: var(--amber); color: var(--amber); }

/* ------------------------------------------------ leadership pair -- */
.lead-pair { display: grid; gap: 16px; margin-top: 30px; }
.lead-card {
    display: flex; gap: 16px; align-items: center;
    padding: 16px; border: 1px solid var(--line); border-radius: 14px;
    background: #fff; box-shadow: var(--shadow-sm);
}
.lead-card img { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; object-position: top center; flex-shrink: 0; }
.lead-tag {
    display: inline-block; margin-bottom: 4px; padding: 3px 10px; border-radius: 999px;
    background: rgba(14, 165, 233, .12); color: var(--accent-deep);
    font-size: 11px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase;
}
.lead-card h3 { margin: 0 0 2px; font-size: 17px; }
.lead-card p { margin: 0; font-size: 14px; line-height: 1.45; }

/* --------------------------------------------------- speaker grid -- */
.spk {
    position: relative; height: 100%;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 26px 18px 24px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.spk:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(14, 165, 233, .45); }

.spk-flag {
    position: absolute; top: 12px; right: 12px;
    padding: 4px 11px; border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), #ea9a06);
    color: #0a1628; font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
}

.spk-photo {
    width: 138px; aspect-ratio: 1; margin-bottom: 16px;
    border-radius: 50%; overflow: hidden; background: var(--smoke);
    box-shadow: 0 8px 22px rgba(10, 22, 40, .16);
}
.spk-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.spk h3 { margin: 0 0 6px; font-size: 17px; }
.spk-role { margin: 0 0 4px; font-size: 14px; font-weight: 700; color: var(--accent-deep); line-height: 1.4; }
.spk-org { margin: 0; font-size: 13.5px; line-height: 1.5; }

/* ------------------------------------------------- key-focus chips -- */
.focus-chip {
    display: flex; align-items: flex-start; gap: 16px; height: 100%;
    padding: 24px 22px; border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.focus-chip:hover { transform: translateY(-5px); border-color: rgba(14, 165, 233, .55); background: rgba(255, 255, 255, .10); }
.focus-num {
    font-size: 26px; font-weight: 800; line-height: 1; color: var(--amber); flex-shrink: 0;
}
.focus-chip h3 { margin: 0; font-size: 18px; color: #fff; line-height: 1.35; }

/* ------------------------------------------------- discussion list -- */
.points-list {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.points-list li {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px 22px; border-radius: 12px;
    background: #fff; border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    font-weight: 600; color: var(--ink);
    transition: transform .3s ease, border-left-color .3s ease, box-shadow .3s ease;
}
.points-list li:hover { transform: translateX(4px); border-left-color: var(--amber); box-shadow: var(--shadow-sm); }
.points-list i { color: var(--accent); margin-top: 5px; flex-shrink: 0; }

/* ----------------------------------------------------- agenda ------- */
.agenda { list-style: none; margin: 0; padding: 0; position: relative; }
.agenda::before {
    content: ""; position: absolute; left: 172px; top: 6px; bottom: 6px; width: 2px;
    background: linear-gradient(var(--accent), var(--amber)); opacity: .35;
}
.ag-row { display: grid; grid-template-columns: 150px 40px 1fr; gap: 0 18px; padding: 0 0 26px; }
.ag-row::before {
    content: ""; grid-column: 2; justify-self: center; margin-top: 8px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 0 4px rgba(14, 165, 233, .18);
}
.ag-row--break::before { background: var(--amber); box-shadow: 0 0 0 4px rgba(245, 158, 11, .18); }

.ag-time {
    grid-column: 1; text-align: right; padding-top: 4px;
    font-size: 13.5px; font-weight: 800; color: var(--accent-deep); letter-spacing: -.01em;
}
.ag-body {
    grid-column: 3;
    padding: 16px 22px; border-radius: 12px;
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.ag-row--break .ag-body { background: var(--smoke); border-style: dashed; box-shadow: none; }
.ag-body h3 { margin: 0; font-size: 17.5px; line-height: 1.35; }
.ag-people { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 7px; }
.ag-people li { position: relative; padding-left: 18px; font-size: 14.5px; line-height: 1.5; }
.ag-people li::before {
    content: ""; position: absolute; left: 0; top: 9px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
}

/* ---------------------------------------------------- partners ----- */
.partner-panel { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ----------------------------------------------------- contact ----- */
#contact .contact-box {
    height: 100%; padding: 24px 20px; text-align: center;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
#contact .contact-box h3 { margin: 0 0 10px; font-size: 16px; color: var(--accent-deep); }
#contact .cb-name { margin: 0 0 6px; font-weight: 700; color: var(--ink); }
#contact .contact-box p { margin: 0 0 4px; font-size: 14.5px; }
#contact .contact-box a { color: var(--ink); font-weight: 600; word-break: break-word; }
#contact .contact-box a:hover { color: var(--accent-deep); text-decoration: underline; }

.venue-card {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 26px; align-items: center;
    margin-top: 34px; padding: 26px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.venue-card h3 { margin: 8px 0 12px; font-size: 22px; }
.venue-card p { margin: 0 0 6px; }
.venue-card i { color: var(--accent); }
.venue-card .hash { color: var(--accent-deep); font-weight: 700; }
.venue-card iframe { border-radius: 12px; display: block; }

/* ------------------------------------------------- hero collage ---- */
.hero-collage { position: relative; padding-bottom: 54px; }
.hero-collage .hc-main {
    width: 100%; height: 360px; object-fit: cover; border-radius: 18px;
    border: 4px solid rgba(255, 255, 255, .12); box-shadow: var(--shadow-lg);
}
.hero-collage .hc-small {
    position: absolute; left: 0; bottom: 0; width: 50%; height: 180px; object-fit: cover;
    border-radius: 14px; border: 4px solid rgba(255, 255, 255, .18); box-shadow: var(--shadow-lg);
}
.hc-badge {
    position: absolute; top: -16px; right: -8px;
    width: 100px; height: 100px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(140deg, var(--accent), var(--amber));
    box-shadow: 0 14px 34px rgba(14, 165, 233, .45);
    color: #fff; font-size: 12.5px; font-weight: 600; line-height: 1.15; text-align: center;
}
.hc-badge strong { display: block; font-size: 30px; font-weight: 800; line-height: 1; }

/* -------------------------------------------------- responsive ----- */
@media (max-width: 1100px) {
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .agenda::before { left: 142px; }
    .ag-row { grid-template-columns: 120px 40px 1fr; }
}

@media (max-width: 991px) {
    .venue-card { grid-template-columns: 1fr; }
    .points-list { grid-template-columns: 1fr; }
    .hero-collage .hc-main { height: 290px; }
    .hero-collage .hc-small { height: 145px; }
}

@media (max-width: 767px) {
    .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .agenda::before { display: none; }
    .ag-row { grid-template-columns: 1fr; gap: 8px; }
    .ag-row::before { display: none; }
    .ag-time { grid-column: 1; text-align: left; }
    .ag-body { grid-column: 1; }
    .counts { gap: 18px 34px; }
}

@media (max-width: 575px) {
    .grid-5 { grid-template-columns: 1fr; }
    .lead-card { flex-direction: column; text-align: center; }
    .hero-collage .hc-small { display: none; }
    .hero-collage { padding-bottom: 0; }
}
