@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url("../fonts/Manrope-VariableFont_wght.ttf") format("truetype-variations");
}

:root {
    --teal-green: #02a284;
    --black: #080808;
    --black-2: #111111;
    --black-3: #1b1b1b;
    --graphite: #292929;
    --grey-900: #363636;
    --grey-700: #666666;
    --grey-600: #7d7d7d;
    --grey-500: #969696;
    --grey-400: #b8b8b8;
    --grey-300: #d0d0d0;
    --grey-200: #e4e4e4;
    --grey-150: #ececec;
    --grey-100: #f3f3f3;
    --grey-50: #f8f8f8;
    --white: #ffffff;
    --text: #151515;
    --muted: #6e6e6e;
    --line: rgba(8, 8, 8, .13);
    --line-light: rgba(255, 255, 255, .13);
    --container: 1200px;
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shadow: 0 24px 70px rgba(0, 0, 0, .10);
    --shadow-soft: 0 10px 32px rgba(0, 0, 0, .06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--grey-50);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
}

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

[hidden] {
    display: none !important;
}

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

.page-shell {
    overflow: clip;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: var(--black);
    background: rgba(248, 248, 248, .91);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    position: relative;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: white;
    background: var(--black);
}

.brand-symbol::before,
.brand-symbol::after {
    content: "";
    position: absolute;
    width: 23px;
    height: 23px;
    border: 1px solid rgba(255, 255, 255, .36);
    transform: rotate(45deg);
}

.brand-symbol::before {
    left: -12px;
    top: -12px;
}

.brand-symbol::after {
    right: -12px;
    bottom: -12px;
}

.brand-symbol>span {
    position: relative;
    z-index: 2;
    font-size: 17px;
    font-weight: 800;
}

.brand-text {
    display: grid;
    line-height: 1;
}

.brand-text strong {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.brand-text small {
    margin-top: 5px;
    color: var(--grey-700);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .24em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;
    padding: 27px 0 25px;
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 700;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 1px;
    background: var(--black);
    transition: right .22s ease;
}

.desktop-nav a.active::after {
    right: 0;
}

.desktop-nav a:hover {
    color: var(--black);
}

.desktop-nav a:hover::after {
    right: 0;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    background: white;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 17px;
    height: 1.5px;
    margin: 4px auto;
    background: var(--black);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-button.active span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 720px;
    color: white;
    background: var(--black);
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 72, 63, .92) 0%,
            rgba(1, 104, 93, .82) 36%,
            rgba(1, 123, 104, .58) 70%,
            rgba(2, 162, 132, .38) 100%),
        linear-gradient(180deg,
            rgba(0, 72, 63, .12),
            rgba(0, 58, 52, .48)),
        image-set(url("../images/drawbridge.jpg") type("image/jpg"),
            url("../images/drawbridge.jpg") type("image/jpeg")) center / cover no-repeat,
        #01685D;

    filter:
        saturate(1.05) contrast(1.02) brightness(1.06);

    opacity: .97;
}


.hero-noise {
    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .045;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}


.hero-pattern {
    position: absolute;

    top: 0;
    right: 0;

    width: min(50vw, 720px);
    height: 100%;

    opacity: .18;

    pointer-events: none;

    background-image:
        linear-gradient(45deg,
            transparent 46%,
            rgba(181, 248, 234, .45) 48%,
            rgba(181, 248, 234, .45) 52%,
            transparent 54%),
        linear-gradient(-45deg,
            transparent 46%,
            rgba(111, 226, 203, .28) 48%,
            rgba(111, 226, 203, .28) 52%,
            transparent 54%);

    background-size: 58px 58px;

    mask-image:
        linear-gradient(to left,
            rgba(0, 0, 0, .95),
            transparent 100%);

    -webkit-mask-image:
        linear-gradient(to left,
            rgba(0, 0, 0, .95),
            transparent 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 650px;
    padding: 96px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(340px, .68fr);
    gap: 82px;
    align-items: end;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .26em;
}

.hero-eyebrow i {
    width: 38px;
    height: 1px;
    background: rgba(255, 255, 255, .36);
}

.hero-overline {
    max-width: 660px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    line-height: 1.55;
}

.hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(44px, 6.7vw, 88px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.06em;
}

.hero blockquote {
    max-width: 720px;
    margin: 27px 0 0;
    padding-left: 17px;
    color: rgba(255, 255, 255, .66);
    border-left: 1px solid rgba(255, 255, 255, .28);
    font-size: clamp(14px, 1.7vw, 18px);
    font-weight: 500;
    line-height: 1.6;
}

.hero-meta-grid {
    max-width: 720px;
    margin-top: 36px;
    padding-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-meta-item {
    display: grid;
}

.meta-label,
.mono-label {
    color: rgba(255, 255, 255, .43);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.hero-meta-item strong {
    margin-top: 7px;
    font-size: 14px;
}

.hero-meta-item small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .52);
    font-size: 10px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}

.button {
    min-height: 47px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-light {
    color: black;
    background: white;
}

.button-outline {
    color: white;
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .04);
}

.terengganu-frame {
    position: relative;
}

.terengganu-frame::before,
.terengganu-frame::after {
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    pointer-events: none;
}

.terengganu-frame::before {
    left: -1px;
    top: -1px;
    border-left: 3px solid white;
    border-top: 3px solid white;
}

.terengganu-frame::after {
    right: -1px;
    bottom: -1px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
}

.hero-panel {
    padding: 28px;
    align-self: stretch;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(8, 8, 8, .64);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(16px);
}

.hero-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.event-chip {
    padding: 7px 9px;
    color: black;
    background: white;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
}

.countdown {
    margin: 32px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.countdown>div {
    min-width: 0;
}

.countdown strong {
    display: block;
    font-size: clamp(29px, 3.5vw, 45px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.06em;
}

.countdown span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .38);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.hero-panel-rule {
    height: 1px;
    background: rgba(255, 255, 255, .14);
}

.organiser-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.logo-placeholder {
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    text-align: center;
    color: black;
    background: white;
    font-size: 7px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .09em;
}

.organiser-block>div:last-child {
    display: grid;
}

.organiser-block strong {
    margin-top: 7px;
    font-size: 12px;
}

.organiser-block p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    line-height: 1.5;
}

.hero-footer-line {
    position: relative;
    z-index: 2;
    height: 70px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .44);
}

.hero-footer-line .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, .35);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .18em;
}

/* Shared */
.section {
    padding: 92px 0;
}

.section-kicker {
    color: var(--grey-700);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .22em;
}

.section-heading {
    margin-bottom: 42px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

.section-heading h2,
.about-main h2,
.awards-intro h2,
.collaboration-section h2 {
    margin: 10px 0 0;
    font-size: clamp(37px, 5.2vw, 65px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.section-heading>p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

/* About */
.section-about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 96px minmax(0, 1.45fr) minmax(260px, .6fr);
    gap: 42px;
}

.section-index {
    padding-top: 3px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
}

.section-index span {
    font-size: 10px;
    font-weight: 800;
}

.section-index i {
    width: 1px;
    height: 65px;
    background: var(--grey-300);
}

.section-index small {
    color: var(--grey-500);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .16em;
    writing-mode: vertical-rl;
}

.about-main h2 {
    margin-bottom: 32px;
}

.intro-copy {
    max-width: 750px;
    columns: 2;
    column-gap: 36px;
}

.intro-copy p {
    break-inside: avoid;
    margin: 0 0 18px;
    color: #595959;
    font-size: 12px;
    line-height: 1.78;
}

.about-aside {
    padding: 25px;
    align-self: end;
    color: white;
    background: #02a284;
}

.about-aside .mono-label {
    color: white;
    font-size: 14px;
}

.glance-list {
    margin-top: 25px;
}

.glance-list>div {
    padding: 14px 0;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.glance-list span {
    color: rgba(255, 255, 255, .32);
    font-size: 14px;
}

.glance-list p {
    margin: 0;
    font-size: 14px;
}

/* Objectives */
.section-dark {
    color: white;
    background: linear-gradient(90deg,
            rgba(0, 72, 63, .92) 0%,
            rgba(1, 104, 93, .82) 36%,
            rgba(1, 123, 104, .58) 70%,
            rgba(2, 162, 132, .38) 100%),
        linear-gradient(180deg,
            rgba(0, 72, 63, .12),
            rgba(0, 58, 52, .48)),
        #01685D;
}

.heading-on-dark .section-kicker {
    color: rgba(255, 255, 255, .48);
}

.heading-on-dark>p {
    color: rgba(255, 255, 255, .48);
}

.objective-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.objective-card {
    min-height: 300px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transition: background .2s ease;
}

.objective-card:hover {
    background: rgba(255, 255, 255, .04);
}

.objective-card>span {
    color: rgba(255, 255, 255, .32);
    font-size: 9px;
    font-weight: 800;
}

.objective-card p {
    margin: 0;
    color: rgba(255, 255, 255, .73);
    font-size: 12px;
    line-height: 1.75;
}

/* Activities */
.activity-grid {
    border-top: 1px solid var(--line);
}

.activity-card {
    position: relative;
    min-height: 154px;
    padding: 25px 10px;
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 26px;
    align-items: start;
    border-bottom: 1px solid var(--line);
    transition: padding .2s ease, background .2s ease;
}

.activity-card:hover {
    padding-inline: 20px;
    background: white;
}

.activity-number {
    color: var(--grey-500);
    font-size: 9px;
    font-weight: 800;
}

.activity-card h3 {
    margin: 0 0 8px;
    font-size: clamp(17px, 2.2vw, 23px);
    font-weight: 700;
    letter-spacing: -.03em;
}

.activity-card p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.activity-arrow {
    font-size: 20px;
}

/* Programme */
.programme-section {
    background: var(--grey-100);
}

.programme-heading {
    align-items: center;
}

.programme-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
}

.programme-tab {
    min-width: 135px;
    padding: 13px 15px;
    border: 0;
    border-right: 1px solid var(--line);
    color: var(--grey-700);
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.programme-tab:last-child {
    border-right: 0;
}

.programme-tab strong,
.programme-tab span {
    display: block;
}

.programme-tab strong {
    font-size: 14px;
}

.programme-tab span {
    margin-top: 2px;
    font-size: 8px;
}

.programme-tab.active {
    color: white;
    background: var(--teal-green);
}

.programme-tools {
    margin-bottom: 28px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
}

.programme-search {
    flex: 1;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--grey-400);
}

.programme-search>span {
    flex: 0 0 auto;
    color: var(--grey-600);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
}

.programme-search input {
    width: 100%;
    min-height: 47px;
    padding: 0 16px;
    border: 0;
    outline: 0;
    color: var(--black);
    background: transparent;
    font-size: 14px;
}

.saved-filter {
    min-width: 145px;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: white;
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
}

.saved-filter.active {
    color: white;
    background: var(--teal-green);
}

.saved-filter span {
    margin-left: 5px;
    color: var(--grey-500);
}

.programme-day-head {
    margin-bottom: 26px;
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(250px, .68fr) 1fr;
    gap: 40px;
    color: white;
    background: linear-gradient(90deg,
            rgba(0, 72, 63, .92) 0%,
            rgba(1, 104, 93, .82) 36%,
            rgba(1, 123, 104, .58) 70%,
            rgba(2, 162, 132, .38) 100%),
        linear-gradient(180deg,
            rgba(0, 72, 63, .12),
            rgba(0, 58, 52, .48)),
        #01685D;
    ;
}

.programme-day-head>div>span {
    color: rgba(255, 255, 255, .36);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.programme-day-head h3 {
    margin: 7px 0 0;
    font-size: 20px;
    letter-spacing: -.03em;
}

.programme-day-head h3 small {
    color: rgba(255, 255, 255, .46);
    font-size: 10px;
    font-weight: 500;
}

.programme-day-head>p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    line-height: 1.65;
}

.schedule-list {
    border-top: 1px solid var(--line);
}

.schedule-row {
    padding: 21px 6px;
    display: grid;
    grid-template-columns: 150px 82px 1fr 38px;
    gap: 18px;
    align-items: start;
    border-bottom: 1px solid var(--line);
    transition: background .18s ease, padding .18s ease, opacity .18s ease;
}

.schedule-row:hover {
    padding-inline: 14px;
    background: rgba(255, 255, 255, .76);
}

.schedule-row.is-saved {
    background: white;
}

.schedule-time {
    color: #494949;
    font-size: 10px;
    font-weight: 800;
}

.schedule-type {
    color: var(--grey-600);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.schedule-content h4 {
    margin: -2px 0 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -.02em;
}

.schedule-content p {
    margin: 0;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.65;
}

.save-button {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
}

.save-button.active {
    color: white;
    background: var(--teal-green);
}

.programme-feature {
    margin-top: 38px;
    padding: 30px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 34px;
    color: white;
    background: linear-gradient(90deg,
            rgba(0, 72, 63, .92) 0%,
            rgba(1, 104, 93, .82) 36%,
            rgba(1, 123, 104, .58) 70%,
            rgba(2, 162, 132, .38) 100%),
        linear-gradient(180deg,
            rgba(0, 72, 63, .12),
            rgba(0, 58, 52, .48)),
        #01685D;
    ;
}

.feature-label {
    min-height: 150px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .15);
}

.feature-label span {
    color: rgba(255, 255, 255, .37);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .17em;
}

.feature-label strong {
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.feature-content>h3 {
    margin: 0 0 16px;
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.feature-content .schedule-row {
    grid-template-columns: 135px 1fr 38px;
    border-color: rgba(255, 255, 255, .13);
}

.feature-content .schedule-row:hover,
.feature-content .schedule-row.is-saved {
    background: rgba(255, 255, 255, .05);
}

.feature-content .schedule-time {
    color: rgba(255, 255, 255, .62);
}

.feature-content .schedule-content p {
    color: rgba(255, 255, 255, .46);
}

.feature-content .save-button {
    color: white;
    border-color: rgba(255, 255, 255, .16);
}

.feature-content .save-button.active {
    color: black;
    background: white;
}

.light-feature {
    background: #242424;
}

.programme-empty {
    margin-top: 30px;
    padding: 34px;
    display: grid;
    gap: 6px;
    text-align: center;
    border: 1px dashed var(--grey-400);
}

.programme-empty strong {
    font-size: 13px;
}

.programme-empty span {
    color: var(--muted);
    font-size: 10px;
}

/* Speakers */
.speakers-section {
    background: white;
}

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.speaker-card {
    grid-column: span 4;
    min-width: 0;
    background: var(--grey-50);
    border: 1px solid var(--line);
}

.speaker-card:nth-child(4),
.speaker-card:nth-child(5) {
    grid-column: span 6;
}

.speaker-photo-wrap {
    position: relative;
    aspect-ratio: 4 / 4.2;
    overflow: hidden;
    background: var(--grey-200);
}

.speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.speaker-avatar {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    color: white;
    background:
        radial-gradient(circle at 50% 38%, #8d8d8d 0 17%, transparent 17.5%),
        radial-gradient(ellipse at 50% 82%, #747474 0 29%, transparent 29.5%),
        linear-gradient(135deg, #d5d5d5, #a9a9a9);
}

.speaker-avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(45deg, transparent 47%, rgba(255, 255, 255, .7) 49%, transparent 52%),
        linear-gradient(-45deg, transparent 47%, rgba(255, 255, 255, .45) 49%, transparent 52%);
    background-size: 32px 32px;
}

.speaker-avatar>span {
    position: relative;
    z-index: 2;
    margin-top: -12px;
    font-size: clamp(31px, 5vw, 55px);
    font-weight: 500;
    letter-spacing: -.05em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .20);
}

.speaker-avatar small {
    position: absolute;
    left: 18px;
    bottom: 17px;
    z-index: 2;
    color: rgba(255, 255, 255, .7);
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.5;
}

.speaker-number {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 3;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(0, 0, 0, .74);
    border: 1px solid rgba(255, 255, 255, .24);
    font-size: 8px;
    font-weight: 800;
}

.speaker-copy {
    min-height: 265px;
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.speaker-copy h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.27;
    letter-spacing: -.035em;
}

.speaker-role {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.55;
}

.speaker-rule {
    height: 1px;
    margin: 20px 0;
    background: var(--grey-300);
}

.speaker-topic-label {
    color: var(--grey-600);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .14em;
}

.speaker-topic {
    margin: 7px 0 0;
    color: #434343;
    font-size: 10px;
    line-height: 1.65;
}

/* Awards */
.awards-section {
    color: white;
    background: var(--black);
}

.awards-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) 1.28fr;
    gap: 82px;
}

.awards-intro {
    position: sticky;
    top: 112px;
    align-self: start;
}

.awards-intro .section-kicker {
    color: rgba(255, 255, 255, .45);
}

.awards-intro p {
    max-width: 430px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .48);
    font-size: 14px;
    line-height: 1.75;
}

.award-mark {
    width: 130px;
    height: 130px;
    margin-top: 46px;
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, .22);
    transform: rotate(45deg);
}

.award-mark span,
.award-mark i {
    transform: rotate(-45deg);
}

.award-mark span {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.award-mark i {
    margin-top: 4px;
    color: rgba(255, 255, 255, .38);
    font-size: 7px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .13em;
}

.award-list {
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.award-row {
    min-height: 74px;
    padding: 18px 5px;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.award-row>span {
    color: rgba(255, 255, 255, .30);
    font-size: 8px;
}

.award-row p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
}

/* Secretariat */
.secretariat-section {
    background: var(--grey-100);
}

.secretariat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.secretariat-card {
    min-height: 156px;
    padding: 18px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 19px;
    align-items: center;
    background: white;
    border: 1px solid var(--line);
}

.secretariat-card:last-child {
    grid-column: 1 / -1;
}

.secretariat-avatar {
    width: 96px;
    height: 112px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 50% 36%, #8b8b8b 0 17%, transparent 17.5%),
        radial-gradient(ellipse at 50% 82%, #707070 0 31%, transparent 31.5%),
        linear-gradient(135deg, #d0d0d0, #a0a0a0);
}

.secretariat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.secretariat-avatar span {
    font-size: 22px;
    font-weight: 600;
}

.secretariat-role {
    color: var(--grey-600);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.secretariat-card h3 {
    margin: 7px 0 5px;
    font-size: 15px;
    letter-spacing: -.025em;
}

.secretariat-card p,
.secretariat-card small {
    margin: 0;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.55;
}

.secretariat-card small {
    display: block;
    margin-top: 2px;
}

.pending-note {
    margin-top: 22px;
    padding: 19px 21px;
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    color: white;
    background: var(--graphite);
}

.pending-note span {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .16em;
}

.pending-note p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    line-height: 1.6;
}

/* Collaboration */
.collaboration-section {
    padding: 88px 0;
    color: white;
    background: var(--black-3);
}

.collaboration-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: end;
}

.light-kicker {
    color: rgba(255, 255, 255, .43);
}

.collaboration-section p {
    max-width: 450px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .45);
    font-size: 14px;
    line-height: 1.6;
}

.partner-placeholders {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.partner-placeholders div {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    text-align: center;
    color: rgba(255, 255, 255, .35);
    border: 1px solid rgba(255, 255, 255, .14);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.5;
}

/* Footer */
.site-footer {
    padding: 62px 0 98px;
    color: white;
    background: #050505;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr .8fr;
    gap: 50px;
}

.footer-brand .brand-text small {
    color: rgba(255, 255, 255, .38);
}

.footer-main>div:first-child>p {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
}

.footer-event,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 7px;
}

.footer-event span,
.footer-contact>span {
    color: rgba(255, 255, 255, .34);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
}

.footer-event strong {
    max-width: 250px;
    font-size: 12px;
}

.footer-contact p {
    max-width: 220px;
    margin: 0;
    color: rgba(255, 255, 255, .50);
    font-size: 9px;
    line-height: 1.55;
}

.footer-bottom {
    margin-top: 55px;
    padding-top: 19px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .28);
    border-top: 1px solid rgba(255, 255, 255, .10);
    font-size: 8px;
}

/* Mobile bottom nav */
.mobile-bottom-nav {
    display: none;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 25px;
    z-index: 100;
    transform: translate(-50%, 16px);
    opacity: 0;
    visibility: hidden;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    background: rgba(0, 0, 0, .92);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .20);
    font-size: 9px;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1050px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: start;
    }

    .hero-panel {
        min-height: 330px;
        max-width: 690px;
    }

    .about-grid {
        grid-template-columns: 70px 1fr;
    }

    .about-aside {
        grid-column: 2;
        max-width: 510px;
    }

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

    .speaker-card,
    .speaker-card:nth-child(4),
    .speaker-card:nth-child(5) {
        grid-column: span 6;
    }

    .speaker-card:last-child {
        grid-column: 4 / span 6;
    }

    .awards-layout {
        gap: 50px;
    }
}

@media (max-width: 850px) {
    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-menu {
        display: grid;
        max-height: 0;
        overflow: hidden;
        padding-inline: 20px;
        background: rgba(248, 248, 248, .98);
        transition: max-height .24s ease, padding .24s ease;
    }

    .mobile-menu.open {
        max-height: 360px;
        padding-block: 8px 18px;
        border-top: 1px solid var(--line);
    }

    .mobile-menu a {
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
        font-weight: 700;
    }

    .intro-copy {
        columns: 1;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 18px;
    }

    .programme-heading {
        align-items: stretch;
    }

    .programme-tabs {
        width: max-content;
    }

    .programme-day-head {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .programme-feature {
        grid-template-columns: 1fr;
    }

    .feature-label {
        min-height: 110px;
    }

    .awards-layout {
        grid-template-columns: 1fr;
    }

    .awards-intro {
        position: static;
    }

    .award-mark {
        width: 100px;
        height: 100px;
    }

    .collaboration-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .header-inner {
        height: 66px;
    }

    .brand-symbol {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .hero {
        min-height: auto;
    }

    .hero-media {
        background-position: 63% center;
    }

    .hero-inner {
        min-height: auto;
        padding: 78px 0 52px;
    }

    .hero-overline {
        font-size: 12px;
    }

    .hero h1 {
        font-size: clamp(43px, 13.5vw, 64px);
    }

    .hero blockquote {
        font-size: 13px;
    }

    .hero-meta-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-panel {
        min-height: 340px;
        padding: 22px;
    }

    .countdown {
        gap: 5px;
    }

    .countdown strong {
        font-size: 30px;
    }

    .hero-footer-line .container span:last-child {
        display: none;
    }

    .section {
        padding: 68px 0;
    }

    .section-heading h2,
    .about-main h2,
    .awards-intro h2,
    .collaboration-section h2 {
        font-size: clamp(35px, 10.5vw, 48px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-index {
        display: none;
    }

    .about-aside {
        grid-column: auto;
    }

    .objective-grid {
        grid-template-columns: 1fr;
    }

    .objective-card {
        min-height: 210px;
    }

    .activity-card {
        grid-template-columns: 45px 1fr;
        gap: 12px;
    }

    .activity-arrow {
        display: none;
    }

    .programme-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .saved-filter {
        min-height: 43px;
    }

    .schedule-row {
        padding: 17px 2px;
        grid-template-columns: 86px 1fr 32px;
        gap: 11px;
    }

    .schedule-type {
        display: none;
    }

    .schedule-content h4 {
        font-size: 12px;
    }

    .programme-feature {
        margin-inline: -14px;
        padding: 22px 14px;
    }

    .feature-content .schedule-row {
        grid-template-columns: 85px 1fr 32px;
    }

    .speaker-grid {
        grid-template-columns: 1fr;
    }

    .speaker-card,
    .speaker-card:nth-child(4),
    .speaker-card:nth-child(5),
    .speaker-card:last-child {
        grid-column: auto;
    }

    .speaker-photo-wrap {
        aspect-ratio: 4 / 3.5;
    }

    .speaker-copy {
        min-height: auto;
    }

    .secretariat-grid {
        grid-template-columns: 1fr;
    }

    .secretariat-card:last-child {
        grid-column: auto;
    }

    .pending-note {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .partner-placeholders {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        padding-bottom: 20px;
    }

    .site-footer {
        padding-bottom: 120px;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 75;
        height: 65px;
        padding: 6px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: rgba(8, 8, 8, .94);
        border: 1px solid rgba(255, 255, 255, .13);
        box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
        backdrop-filter: blur(16px);
    }

    .mobile-bottom-nav a {
        display: grid;
        place-items: center;
        align-content: center;
        gap: 2px;
        color: rgba(255, 255, 255, .48);
    }

    .mobile-bottom-nav a.active {
        color: white;
        background: rgba(255, 255, 255, .07);
    }

    .mobile-bottom-nav span {
        font-size: 17px;
        line-height: 1;
    }

    .mobile-bottom-nav small {
        font-size: 7px;
        font-weight: 800;
    }

    .toast {
        bottom: 90px;
    }
}

@media (max-width: 440px) {
    .hero-actions {
        grid-template-columns: 1fr;
    }

    .programme-tabs {
        width: 100%;
    }

    .programme-tab {
        min-width: 0;
    }

    .schedule-row {
        grid-template-columns: 74px 1fr 30px;
    }

    .feature-content .schedule-row {
        grid-template-columns: 74px 1fr 30px;
    }

    .secretariat-card {
        grid-template-columns: 78px 1fr;
    }

    .secretariat-avatar {
        width: 78px;
        height: 96px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ==========================================================================
   READABILITY / ACCESSIBILITY TYPOGRAPHY PASS
   --------------------------------------------------------------------------
   Designed for public-event visitors, including older users and mobile users.
   The original visual hierarchy is retained, but micro text is no longer
   allowed to become 6px–10px in important interface/content areas.
   ========================================================================== */

html {
    font-size: 16px;
}

body {
    font-size: 1rem;
    line-height: 1.6;
    font-synthesis: none;
}

/* Higher-contrast secondary text on light backgrounds. */
:root {
    --muted: #555555;
    --grey-700: #575757;
    --grey-600: #626262;
}

/* ---- Micro labels: minimum ~12px instead of 6px–10px ---- */
.brand-text small,
.hero-eyebrow,
.meta-label,
.mono-label,
.event-chip,
.countdown span,
.hero-footer-line .container,
.section-kicker,
.section-index span,
.section-index small,
.objective-card>span,
.activity-number,
.programme-tab span,
.programme-search>span,
.programme-day-head>div>span,
.schedule-type,
.feature-label span,
.speaker-avatar small,
.speaker-number,
.speaker-topic-label,
.award-mark i,
.award-row>span,
.secretariat-role,
.pending-note span,
.partner-placeholders div,
.footer-event span,
.footer-contact>span {
    font-size: 0.75rem;
    /* 12px */
    line-height: 1.45;
}

/* Slightly more important compact controls / status text. */
.saved-filter,
.footer-bottom,
.toast {
    font-size: 0.8125rem;
    /* 13px */
    line-height: 1.45;
}

/* ---- Hero readability ---- */
.hero-eyebrow {
    color: rgba(255, 255, 255, .82);
}

.hero-overline {
    font-size: clamp(1rem, .95rem + .22vw, 1.125rem);
    /* 16–18px */
    line-height: 1.6;
}

.hero blockquote {
    font-size: clamp(1.0625rem, 1rem + .32vw, 1.25rem);
    /* 17–20px */
    line-height: 1.65;
    color: rgba(255, 255, 255, .86);
}

.meta-label,
.mono-label {
    color: rgba(255, 255, 255, .78);
}

.hero-meta-item strong {
    font-size: 1.0625rem;
    /* 17px */
    line-height: 1.45;
}

.hero-meta-item small {
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.5;
    color: rgba(255, 255, 255, .78);
}

.button {
    min-height: 50px;
    padding-inline: 20px;
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.2;
}

.event-chip {
    padding: 8px 10px;
}

.countdown span {
    color: rgba(255, 255, 255, .76);
}

.logo-placeholder {
    font-size: 0.6875rem;
    /* 11px */
}

.organiser-block strong {
    font-size: 1rem;
    /* 16px */
    line-height: 1.4;
}

.organiser-block p {
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.6;
    color: rgba(255, 255, 255, .78);
}

.hero-footer-line .container {
    color: rgba(255, 255, 255, .70);
}

/* ---- Shared section typography ---- */
.section-kicker {
    font-size: 0.75rem;
    line-height: 1.4;
}

.section-heading>p {
    font-size: 1rem;
    /* 16px */
    line-height: 1.75;
}

.intro-copy p {
    font-size: 1rem;
    /* 16px */
    line-height: 1.8;
}

.about-aside .mono-label {
    font-size: 0.875rem;
    /* 14px */
}

.glance-list p,
.glance-list span {
    font-size: 1rem;
}

.heading-on-dark .section-kicker,
.heading-on-dark>p,
.awards-intro .section-kicker,
.light-kicker {
    color: rgba(255, 255, 255, .82);
}

.objective-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .90);
}

.activity-card h3 {
    font-size: clamp(1.25rem, 1.05rem + .7vw, 1.625rem);
    line-height: 1.35;
}

.activity-card p {
    font-size: 1rem;
    line-height: 1.75;
}

/* ---- Programme: this is the highest-priority reading area ---- */
.programme-tab strong {
    font-size: 1rem;
}

.programme-tab span {
    margin-top: 4px;
}

.programme-search>span {
    min-width: max-content;
}

.programme-search input {
    min-height: 52px;
    font-size: 1rem;
    /* prevents tiny text and iOS zoom oddities */
}

.saved-filter {
    min-height: 52px;
    padding-inline: 16px;
}

.programme-day-head>div>span {
    color: rgba(255, 255, 255, .78);
}

.programme-day-head h3 {
    font-size: 1.375rem;
    /* 22px */
    line-height: 1.35;
}

.programme-day-head h3 small {
    font-size: 0.875rem;
    /* 14px */
    color: rgba(255, 255, 255, .82);
}

.programme-day-head>p {
    font-size: 0.9375rem;
    /* 15px */
    line-height: 1.7;
    color: rgba(255, 255, 255, .86);
}

.schedule-time {
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.5;
}

.schedule-type {
    font-size: 0.75rem;
    line-height: 1.45;
}

.schedule-content h4 {
    font-size: 1.0625rem;
    /* 17px */
    line-height: 1.5;
}

.schedule-content p {
    font-size: 0.9375rem;
    /* 15px */
    line-height: 1.7;
}

.save-button {
    width: 38px;
    height: 38px;
    font-size: 1.125rem;
}

.feature-label span {
    color: rgba(255, 255, 255, .78);
}

.feature-label strong {
    font-size: 1.25rem;
    /* 20px */
    line-height: 1.3;
}

.feature-content>h3 {
    font-size: clamp(1.375rem, 1.2rem + .5vw, 1.625rem);
    line-height: 1.35;
}

.feature-content .schedule-time {
    color: rgba(255, 255, 255, .82);
}

.feature-content .schedule-content p {
    color: rgba(255, 255, 255, .82);
}

.programme-empty strong {
    font-size: 1rem;
}

.programme-empty span {
    font-size: 0.875rem;
}

/* ---- Speakers ---- */
.speaker-avatar small {
    font-size: 0.6875rem;
    /* 11px */
}

.speaker-number {
    font-size: 0.75rem;
}

.speaker-copy h3 {
    font-size: 1.25rem;
    /* 20px */
    line-height: 1.35;
}

.speaker-role {
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.6;
}

.speaker-topic-label {
    font-size: 0.75rem;
}

.speaker-topic {
    font-size: 0.9375rem;
    /* 15px */
    line-height: 1.7;
}

/* ---- Awards ---- */
.awards-intro p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .82);
}

.award-row>span {
    color: rgba(255, 255, 255, .65);
}

.award-row p {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .90);
}

/* ---- Secretariat ---- */
.secretariat-role {
    font-size: 0.75rem;
}

.secretariat-card h3 {
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.4;
}

.secretariat-card p,
.secretariat-card small {
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.65;
}

.pending-note p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
}

/* ---- Collaboration + footer ---- */
.collaboration-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .80);
}

.partner-placeholders div {
    font-size: 0.75rem;
}

.footer-main>div:first-child>p,
.footer-contact p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .76);
}

.footer-event strong {
    font-size: 1rem;
    line-height: 1.5;
}

.footer-event span,
.footer-contact>span {
    color: rgba(255, 255, 255, .70);
}

.footer-bottom {
    color: rgba(255, 255, 255, .65);
}

/* ==========================================================================
   MOBILE READABILITY
   Do not shrink text just because the screen is smaller. Reflow the layout.
   ========================================================================== */
@media (max-width: 850px) {
    .mobile-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        font-size: 1rem;
        /* 16px */
        line-height: 1.4;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(var(--container), calc(100% - 32px));
    }

    .hero-inner {
        padding-top: 64px;
    }

    .hero-overline {
        font-size: 1rem;
        /* don't reduce to 12px */
    }

    .hero h1 {
        font-size: clamp(2.5rem, 11.5vw, 3.75rem);
        line-height: 1.02;
        letter-spacing: -.045em;
    }

    .hero blockquote {
        font-size: 1.0625rem;
        /* 17px */
        line-height: 1.65;
    }

    .hero-meta-item strong {
        font-size: 1.0625rem;
    }

    .hero-meta-item small {
        font-size: 0.9375rem;
        /* 15px */
    }

    .button {
        min-height: 52px;
        font-size: 0.9375rem;
        /* 15px */
    }

    .hero-panel {
        padding: 24px 20px;
    }

    .countdown strong {
        font-size: clamp(2rem, 9.5vw, 2.75rem);
    }

    .countdown span {
        font-size: 0.75rem;
    }

    .section {
        padding: 64px 0;
    }

    .section-heading h2,
    .about-main h2,
    .awards-intro h2,
    .collaboration-section h2 {
        font-size: clamp(2.125rem, 9vw, 2.875rem);
        line-height: 1.08;
    }

    .section-heading>p,
    .intro-copy p,
    .objective-card p,
    .activity-card p,
    .collaboration-section p,
    .awards-intro p {
        font-size: 1rem;
        /* 16px */
    }

    .objective-card {
        min-height: 190px;
        padding: 24px 20px;
    }

    .programme-tabs {
        width: 100%;
    }

    .programme-tab {
        min-height: 60px;
        padding: 12px 14px;
    }

    .programme-tab strong {
        font-size: 1rem;
    }

    .programme-tab span {
        font-size: 0.75rem;
    }

    .programme-day-head {
        padding: 24px 20px;
    }

    .programme-day-head h3 {
        font-size: 1.375rem;
    }

    .programme-day-head>p {
        font-size: 0.9375rem;
    }

    .schedule-row {
        grid-template-columns: 94px minmax(0, 1fr) 40px;
        gap: 12px;
        padding: 20px 2px;
    }

    .schedule-time {
        font-size: 0.875rem;
    }

    .schedule-content h4 {
        font-size: 1.0625rem;
        /* do not reduce to 12px */
        line-height: 1.45;
    }

    .schedule-content p {
        font-size: 0.9375rem;
        line-height: 1.65;
    }

    .programme-feature {
        padding: 24px 16px;
    }

    .feature-content .schedule-row {
        grid-template-columns: 94px minmax(0, 1fr) 40px;
    }

    .feature-content>h3 {
        font-size: 1.375rem;
    }

    .speaker-copy {
        padding: 24px 20px;
    }

    .speaker-copy h3 {
        font-size: 1.25rem;
    }

    .speaker-role {
        font-size: 0.9375rem;
    }

    .speaker-topic {
        font-size: 1rem;
    }

    .secretariat-card {
        gap: 16px;
    }

    .secretariat-card h3 {
        font-size: 1.125rem;
    }

    .secretariat-card p,
    .secretariat-card small {
        font-size: 0.875rem;
    }

    .mobile-bottom-nav {
        height: 74px;
        padding: 7px;
    }

    .mobile-bottom-nav span {
        font-size: 1.25rem;
    }

    .mobile-bottom-nav small {
        font-size: 0.75rem;
        /* 12px instead of 7px */
        font-weight: 700;
        line-height: 1.2;
    }

    .toast {
        bottom: 100px;
        max-width: calc(100% - 32px);
        padding: 12px 16px;
        font-size: 0.875rem;
    }
}

@media (max-width: 440px) {

    /* Slightly more room for enlarged programme text on narrow phones. */
    .schedule-row,
    .feature-content .schedule-row {
        grid-template-columns: 88px minmax(0, 1fr) 38px;
        gap: 10px;
    }

    .schedule-time {
        font-size: 0.8125rem;
        /* 13px, still comfortably readable */
    }

    .hero-actions {
        gap: 10px;
    }
}