:root {
    --primary: #8C6A43;
    --primary-dark: #5B4B8A;
    --secondary: #B08968;
    --accent: #B784A7;
    --button: #D4A373;
    --button-hover: #BC8A5F;
    --background: #FFFCFA;
    --section: #FAF5F2;
    --card: #FFFFFF;
    --title: #5B4B8A;
    --text: #52525B;
    --template-bg: url("../img/submission-bg.svg");
    --template-bg-size: 100% 100%;
    --template-page-bg-size: 100% 620px;
    --non-home-bg: url("../img/submission-bg.svg");
    --ink: #52525B;
    --muted: #52525B;
    --line: #EFE6DD;
    --soft: #FAF5F2;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(140, 106, 67, 0.12);
    --ics-purple: #8C6A43;
    --ics-purple-2: #B08968;
    --ics-cyan: #B784A7;
    --ics-dark: #5B4B8A;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.65;
    background:
        linear-gradient(rgba(255, 252, 250, 0.54), rgba(255, 252, 250, 0.62)),
        var(--template-bg) center top / var(--template-page-bg-size) repeat-y;
    background-size: auto, 106% 700px;
    animation: pageBackgroundFlow 34s ease-in-out infinite alternate;
    overflow-x: hidden;
}

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

p {
    margin: 0 0 1rem;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--text);
    background: var(--card);
    font: inherit;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--button);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.18);
}

.ics-layout {
    color: var(--text);
    background: transparent;
}

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

.ics-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 248, 242, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(140, 106, 67, 0.12);
}

.ics-header::before {
    display: block;
    height: 5px;
    content: "";
    background: linear-gradient(90deg, var(--primary), var(--button), var(--secondary));
    background-size: 220% 100%;
    animation: headerGlow 6s ease-in-out infinite alternate;
}

.ics-navbar {
    width: min(1460px, calc(100% - 2rem));
    min-height: 96px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
}

.ics-logo {
    color: var(--title);
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 220ms ease, color 220ms ease;
}

.ics-logo:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.ics-logo-with-image {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.ics-logo-with-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    padding: 5px;
    border: 1px solid #EFE6DD;
    box-shadow: 0 10px 24px rgba(140, 106, 67, 0.14);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.ics-logo-with-image:hover img {
    transform: rotate(-3deg) scale(1.04);
    box-shadow: 0 14px 30px rgba(140, 106, 67, 0.18);
}

.ics-logo-with-image span {
    color: var(--title);
}

.ics-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
}

.ics-nav-links a {
    position: relative;
    padding: 0.78rem 0.9rem;
    border-radius: 6px;
    color: var(--title);
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ics-nav-links a::after {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.45rem;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
}

.ics-nav-links a:hover::after,
.ics-nav-links a.active::after {
    opacity: 0.55;
    transform: scaleX(1);
}

.ics-nav-links a:hover,
.ics-nav-links a.active {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 10px 22px rgba(140, 106, 67, 0.22);
}

.ics-nav-links a:hover {
    transform: translateY(-1px);
}

.ics-nav-check,
.ics-nav-button {
    display: none;
}

.ics-hero {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--title);
    text-align: center;
    background:
        linear-gradient(rgba(255, 248, 242, 0.14), rgba(255, 248, 242, 0.22)),
        var(--template-bg) center center / var(--template-bg-size) no-repeat,
        linear-gradient(135deg, #dff6f6, #fff8f2 46%, #e7d9f5);
    background-size: auto, 110% 110%, auto;
    animation: heroBackgroundFlow 22s ease-in-out infinite alternate;
}

.ics-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 248, 242, 0.08), rgba(253, 242, 236, 0.22), rgba(248, 237, 235, 0.14));
    transform: scale(1.03);
}

.ics-hero-content {
    position: relative;
    z-index: 1;
    width: min(820px, calc(100% - 2rem));
    margin-top: -34px;
    padding: 3.7rem 1.25rem 3.2rem;
    animation: heroEnter 700ms ease both;
}

.ics-hero-content::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    border: 1px solid rgba(239, 230, 221, 0.85);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48)),
        radial-gradient(circle at 12% 18%, rgba(141, 221, 222, 0.18), transparent 34%),
        radial-gradient(circle at 86% 86%, rgba(143, 106, 216, 0.14), transparent 32%);
    backdrop-filter: blur(5px);
    box-shadow: 0 24px 64px rgba(91, 75, 138, 0.12);
}

.ics-tag {
    display: inline-flex;
    margin: 0 0 1.2rem;
    padding: 0.55rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--primary);
    background: #FFFFFF;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0.12em;
    animation: softFloat 4s ease-in-out infinite;
}

.ics-hero h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: min(100%, 720px);
    margin: 0 0 1rem;
    padding: 0.58rem 1.15rem;
    border: 1px solid rgba(239, 230, 221, 0.95);
    border-radius: 999px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 26px rgba(140, 106, 67, 0.08);
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
    animation: fadeRise 700ms ease 120ms both;
}

.ics-hero h1 {
    margin: 0;
    color: var(--title);
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2.7rem, 5.6vw, 5rem);
    font-weight: 900;
    line-height: 0.98;
    text-shadow: 0 12px 28px rgba(91, 75, 138, 0.12);
    animation: fadeRise 760ms ease 240ms both;
}

.ics-date {
    display: inline-flex;
    margin: 1.2rem 0 1.7rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    color: var(--title);
    background: rgba(255, 255, 255, 0.56);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    animation: fadeRise 760ms ease 360ms both;
}

.ics-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    animation: fadeRise 760ms ease 480ms both;
}

.ics-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.85rem 1.35rem;
    border-radius: 6px;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ics-btn::before,
.btn::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transform: translateX(-120%);
    transition: transform 520ms ease;
}

.ics-btn:hover::before,
.btn:hover::before {
    transform: translateX(120%);
}

.ics-btn.primary {
    color: #ffffff;
    background: var(--button);
}

.ics-btn.secondary {
    color: #ffffff;
    background: var(--primary);
    border: 1px solid var(--primary);
}

.ics-btn:hover {
    color: #ffffff;
    background: var(--button-hover);
    box-shadow: 0 14px 28px rgba(188, 138, 95, 0.24);
    transform: translateY(-3px);
}

.ics-countdown {
    width: min(860px, calc(100% - 2rem));
    margin: -58px auto 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #EFE6DD;
    box-shadow: 0 24px 70px rgba(140, 106, 67, 0.12);
}

.ics-countdown div {
    padding: 1.7rem 1rem;
    text-align: center;
    border-right: 1px solid #EFE6DD;
}

.ics-countdown div:last-child {
    border-right: 0;
}

.ics-countdown strong {
    display: block;
    color: var(--ics-purple);
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    line-height: 1;
}

.ics-countdown span {
    color: #52525B;
    font-weight: 700;
}

.page-hero {
    min-height: 390px;
    display: grid;
    align-content: center;
    padding: 5.5rem max(1rem, calc((100vw - 1260px) / 2));
    color: #5B4B8A;
    background:
        linear-gradient(90deg, rgba(255, 250, 244, 0.9), rgba(255, 252, 248, 0.72)),
        var(--non-home-bg) center center / cover no-repeat;
    background-size: auto, 112% 112%;
    animation: pageHeroBackgroundFlow 22s ease-in-out infinite alternate;
    border-bottom: 1px solid #EFE6DD;
    overflow: hidden;
}

.page-hero span {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #8C6A43;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeRise 650ms ease both;
}

.page-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2.25rem, 4.6vw, 4rem);
    line-height: 1.08;
    animation: fadeRise 720ms ease 120ms both;
}

.page-hero p {
    max-width: 720px;
    margin: 1rem 0 0;
    color: #52525B;
    font-size: 1.16rem;
    animation: fadeRise 720ms ease 240ms both;
}

.page-content {
    padding: 5rem max(1rem, calc((100vw - 1180px) / 2));
    min-height: 44vh;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: stretch;
}

.page-card {
    padding: 1.5rem;
    border: 1px solid #EFE6DD;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(4px);
    box-shadow: 0 16px 40px rgba(140, 106, 67, 0.08);
    min-width: 0;
    overflow-wrap: anywhere;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.page-card:hover,
.ics-card-grid article:hover,
.committee-list article:hover,
.ics-panel:hover {
    border-color: rgba(212, 163, 115, 0.7);
    box-shadow: 0 20px 45px rgba(140, 106, 67, 0.12);
    transform: translateY(-6px);
}

.page-card h2,
.page-card h3 {
    margin: 0 0 0.9rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
}

.page-card h2 {
    font-size: 1.35rem;
}

.page-card p,
.page-card li {
    color: #52525B;
}

.page-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.wide-card {
    grid-column: span 2;
}

.full-card {
    grid-column: 1 / -1;
}

.simple-list {
    display: grid;
    gap: 1rem;
}

.simple-list div {
    padding: 1rem;
    border-left: 4px solid #D4A373;
    border-radius: 6px;
    background: #FAF5F2;
    overflow-wrap: anywhere;
}

.ics-section {
    padding: 4.5rem max(1rem, calc((100vw - 1180px) / 2));
}

.ics-soft {
    background: rgba(250, 245, 242, 0.62);
}

.ics-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: center;
}

.ics-split.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.ics-image-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 55px rgba(140, 106, 67, 0.14);
    transition: box-shadow 260ms ease, transform 260ms ease;
}

.ics-image-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 520ms ease;
}

.ics-image-card:hover {
    box-shadow: 0 26px 64px rgba(140, 106, 67, 0.18);
    transform: translateY(-4px);
}

.ics-image-card:hover img {
    transform: scale(1.04);
}

.conference-showcase {
    align-items: stretch;
}

.conference-image {
    position: relative;
    min-height: 430px;
}

.conference-image img {
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.compact-logo-card {
    display: grid;
    place-items: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(145deg, #ffffff, #FAF5F2);
}

.compact-logo-card img {
    width: min(360px, 100%);
    aspect-ratio: auto;
    object-fit: contain;
}

.ics-highlight-panel {
    min-height: 360px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 0.75rem;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 8px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 163, 115, 0.34), transparent 28%),
        linear-gradient(135deg, #5B4B8A, #8C6A43);
    box-shadow: 0 20px 55px rgba(140, 106, 67, 0.18);
}

.ics-highlight-panel i {
    color: #F4DDEA;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.ics-highlight-panel strong {
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1;
}

.ics-highlight-panel span,
.ics-highlight-panel small {
    display: block;
}

.ics-highlight-panel span {
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
}

.ics-highlight-panel small {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.ics-small-title,
.ics-section-title span {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #8C6A43;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
}

.ics-copy h2,
.ics-section-title h2,
.ics-action-band h2 {
    margin: 0 0 1rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    line-height: 1.08;
}

.ics-copy p,
.ics-center-text,
.ics-action-band p {
    color: #52525B;
    font-size: 1.02rem;
}

.ics-copy blockquote {
    margin: 1.6rem 0 0;
    padding-left: 1rem;
    border-left: 4px solid #D4A373;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.ics-section-title {
    max-width: 760px;
    margin: 0 auto 2.6rem;
    text-align: center;
}

.ics-card-grid,
.ics-date-grid,
.ics-people-grid {
    display: grid;
    gap: 1.2rem;
}

.ics-card-grid {
    grid-template-columns: repeat(4, 1fr);
}

.page-content .ics-card-grid {
    width: min(1060px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.ics-card-grid article,
.ics-people-grid article,
.ics-panel {
    padding: 1.5rem;
    border: 1px solid #EFE6DD;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(4px);
    box-shadow: 0 16px 40px rgba(140, 106, 67, 0.08);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.page-content .ics-card-grid article {
    position: relative;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1.6rem 1.75rem;
    overflow: hidden;
    text-align: center;
    border-color: rgba(212, 163, 115, 0.34);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(140, 106, 67, 0.09);
}

.page-content .ics-card-grid article::before {
    position: absolute;
    top: -52px;
    right: -42px;
    width: 118px;
    height: 118px;
    content: "";
    border-radius: 50%;
    background: rgba(91, 75, 138, 0.08);
}

.page-content .ics-card-grid article::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, #5B4B8A, #D4A373, #FF8A00);
}

.ics-card-grid i {
    color: #8C6A43;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    transition: color 220ms ease, transform 220ms ease;
}

.page-content .ics-card-grid i {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 0 1rem;
    border-radius: 14px;
    color: #8C6A43;
    background: #F8EBDD;
    font-size: 1.45rem;
}

.ics-card-grid article:hover i {
    color: var(--accent);
    transform: translateY(-3px) scale(1.08);
}

.ics-card-grid h3,
.ics-panel h3 {
    margin: 0 0 0.7rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
}

.page-content .ics-card-grid h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 0.85rem;
    color: #5B4B8A;
    font-size: 1.24rem;
    font-weight: 800;
    line-height: 1.35;
}

.ics-card-grid p,
.ics-panel p {
    color: #52525B;
}

.page-content .ics-card-grid p {
    position: relative;
    z-index: 1;
    max-width: 30ch;
    margin: 0;
    color: #52525B;
    font-size: 1rem;
    line-height: 1.62;
}

@media (max-width: 980px) {
    .page-content .ics-card-grid {
        width: min(720px, 100%);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-content .ics-card-grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .page-content .ics-card-grid article {
        min-height: 0;
        padding: 1.55rem 1.2rem 1.45rem;
    }

    .page-content .ics-card-grid p {
        max-width: 100%;
    }
}

.ics-dates {
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 15%, rgba(183, 132, 167, 0.3), transparent 28%),
        linear-gradient(135deg, #5B4B8A, #8C6A43);
}

.ics-dates .ics-section-title h2,
.ics-dates .ics-section-title span {
    color: #ffffff;
}

.ics-date-grid {
    grid-template-columns: repeat(4, 1fr);
}

.ics-date-grid div {
    padding: 1.6rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    transition: background 220ms ease, transform 220ms ease;
}

.ics-date-grid div:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.ics-date-grid strong,
.ics-date-grid span {
    display: block;
}

.ics-date-grid strong {
    margin-bottom: 0.5rem;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.08rem;
}

.ics-table-wrap {
    overflow-x: auto;
}

.ics-fee-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
}

.ics-fee-table th,
.ics-fee-table td {
    padding: 1rem;
    border: 1px solid #EFE6DD;
    text-align: left;
}

.ics-fee-table th {
    color: #ffffff;
    background: #8C6A43;
}

.ics-panel {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.committee-list {
    display: grid;
    width: min(1040px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: stretch;
}

.committee-list article {
    min-height: 150px;
    padding: 1.25rem 1.35rem;
    border: 1px solid #EFE6DD;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(4px);
    box-shadow: 0 16px 40px rgba(140, 106, 67, 0.08);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.committee-list h3 {
    margin: 0 0 0.85rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.05rem;
}

.committee-list p {
    color: #52525B;
    margin-bottom: 0.55rem;
}

.committee-list article:first-child {
    grid-column: 5 / span 4;
}

.committee-list article:nth-child(2) {
    grid-column: 3 / span 4;
}

.committee-list article:nth-child(3) {
    grid-column: 7 / span 4;
}

.committee-list article:nth-child(4) {
    grid-column: 2 / span 3;
}

.committee-list article:nth-child(5) {
    grid-column: 5 / span 3;
}

.committee-list article:nth-child(6) {
    grid-column: 8 / span 3;
}

.committee-page-body {
    background: #ffffff;
}

.committee-page-body .page-content {
    background: #ffffff;
}

.organized-committee {
    min-height: 70vh;
    padding: 3.25rem max(1rem, calc((100vw - 1180px) / 2)) 5rem;
    background: #ffffff;
}

.committee-hero {
    position: relative;
    min-height: 330px;
    display: grid;
    align-content: center;
    overflow: hidden;
    padding: 4.5rem max(1.25rem, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid #f0dfcc;
    background:
        linear-gradient(90deg, rgba(255, 250, 244, 0.9), rgba(255, 252, 248, 0.72)),
        url("../img/submission-bg.svg") center center / cover no-repeat,
        #fff8ef;
    background-size: auto, 112% 112%, auto;
    animation: heroBackgroundFlow 22s ease-in-out infinite alternate;
}

.committee-hero::before,
.committee-hero::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.committee-hero::before {
    right: -90px;
    bottom: -120px;
    width: 430px;
    height: 220px;
    border: 1px solid rgba(212, 163, 115, 0.45);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.committee-hero::after {
    right: 9%;
    top: 18%;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(212, 163, 115, 0.42);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.committee-hero span,
.committee-hero h1,
.committee-hero p {
    position: relative;
    z-index: 1;
}

.committee-hero span {
    margin-bottom: 0.55rem;
    color: #8C6A43;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.committee-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.15rem);
    font-weight: 800;
    line-height: 1.04;
}

.committee-hero p {
    max-width: 720px;
    margin: 1.1rem 0 0;
    color: #52525B;
    font-size: 1.16rem;
}

.organized-committee-title {
    margin: 0 auto 2.2rem;
    text-align: center;
}

.organized-committee-title span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.45rem;
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    color: #8C6A43;
    background: rgba(212, 163, 115, 0.14);
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.organized-committee-title h1 {
    position: relative;
    display: inline-block;
    margin: 0;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
}

.organized-committee-title h1::after,
.committee-group h2::after {
    position: absolute;
    left: 50%;
    bottom: -0.6rem;
    width: 72px;
    height: 3px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, #5B4B8A, #D4A373);
    transform: translateX(-50%);
}

.committee-group {
    width: min(900px, 100%);
    margin: 0 auto 2.1rem;
    text-align: center;
}

.committee-group h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 1.65rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.committee-card-grid {
    display: grid;
    gap: 1rem;
}

.two-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.committee-card {
    position: relative;
    min-height: 138px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.35rem;
    overflow: hidden;
    padding: 1.35rem 1.1rem;
    border: 1px solid rgba(212, 163, 115, 0.32);
    border-bottom: 3px solid #D4A373;
    border-radius: 8px;
    color: #52525B;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 38px rgba(140, 106, 67, 0.1);
    text-align: center;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.committee-card:hover {
    border-color: rgba(140, 106, 67, 0.45);
    box-shadow: 0 22px 46px rgba(140, 106, 67, 0.15);
    transform: translateY(-5px);
}

.committee-card-wide {
    width: min(520px, 100%);
    margin: 0 auto;
    min-height: 150px;
}

.committee-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #5B4B8A, #8C6A43);
    box-shadow: 0 10px 22px rgba(91, 75, 138, 0.18);
}

.committee-card span {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    color: #ffffff;
    background: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
}

.committee-card h3 {
    margin: 0.2rem 0 0.1rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}

.committee-card p {
    margin: 0;
    color: #52525B;
    font-size: 0.83rem;
    line-height: 1.45;
}

.committee-card-wide h3 {
    font-size: 1.08rem;
}

@media (max-width: 900px) {
    .committee-hero {
        min-height: 290px;
        padding-top: 3.6rem;
        padding-bottom: 3.6rem;
    }

    .organized-committee {
        padding-top: 2.75rem;
        padding-bottom: 4rem;
    }

    .three-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .committee-hero {
        min-height: 260px;
        padding: 3rem 1rem;
    }

    .committee-hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .committee-hero p {
        font-size: 1rem;
    }

    .organized-committee {
        padding: 2.5rem 1rem 3.5rem;
    }

    .two-card-grid,
    .three-card-grid {
        grid-template-columns: 1fr;
    }

    .committee-card,
    .committee-card-wide {
        min-height: 0;
    }
}


.ics-people-grid strong,
.ics-people-grid span {
    display: block;
}

.ics-people-grid strong {
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1rem;
}

.ics-people-grid span {
    color: #52525B;
}

.ics-action-band {
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #5B4B8A, #8C6A43);
}

.ics-action-band h2,
.ics-action-band p {
    color: #ffffff;
}

.ics-center-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.ics-footer {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 2rem;
    padding: 4rem max(1rem, calc((100vw - 1180px) / 2)) 2rem;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 85% 15%, rgba(183, 132, 167, 0.16), transparent 26%),
        linear-gradient(135deg, #5B4B8A, #8C6A43);
}

.ics-footer h3,
.ics-footer h4 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-family: "Jost", Arial, sans-serif;
}

.ics-footer a {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.status-success,
.status-warning,
.status-error {
    padding: 1rem;
    border-radius: 8px;
    background: #ffffff;
    font-weight: 700;
}

.status-success {
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #047857;
}

.status-warning {
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #B45309;
}

.status-error {
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #B91C1C;
}

.ics-credit {
    grid-column: 1 / -1;
    margin: 1rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.conf-header {
    background: var(--white);
}

.conf-brand-row {
    width: min(1180px, calc(100% - 2rem));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.conf-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-dark);
    font-family: "Jost", Arial, sans-serif;
}

.conf-logo span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--button));
    font-weight: 700;
}

.conf-logo strong {
    font-size: 1.15rem;
}

.conf-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem 1.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.conf-meta i {
    color: var(--accent);
    margin-right: 0.4rem;
}

.conf-menu-check {
    display: none;
}

.conf-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--primary);
    box-shadow: 0 12px 24px rgba(140, 106, 67, 0.18);
}

.conf-nav-links {
    width: min(1180px, calc(100% - 2rem));
    min-height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.conf-nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 64px;
    padding: 0 0.8rem;
    color: var(--white);
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.conf-nav-links a::after {
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 12px;
    height: 3px;
    content: "";
    border-radius: 999px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.conf-nav-links a:hover,
.conf-nav-links a.active {
    background: rgba(255, 255, 255, 0.14);
}

.conf-nav-links a:hover::after,
.conf-nav-links a.active::after {
    transform: scaleX(1);
}

.conf-menu-btn {
    display: none;
    width: min(1180px, calc(100% - 2rem));
    min-height: 58px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-family: "Jost", Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
}

.conf-page-hero {
    min-height: 330px;
    display: grid;
    place-items: center;
    padding: 5rem 1rem;
    text-align: center;
    color: var(--title);
    background:
        linear-gradient(90deg, rgba(255, 250, 244, 0.9), rgba(255, 252, 248, 0.72)),
        var(--non-home-bg) center center / cover no-repeat;
    background-size: auto, 112% 112%;
    animation: pageHeroBackgroundFlow 22s ease-in-out infinite alternate;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.conf-page-hero p {
    margin: 0 0 0.8rem;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.conf-page-hero h1 {
    margin: 0;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.5rem);
    line-height: 1.08;
    text-transform: uppercase;
}

.conf-page-hero span {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(9, 44, 62, 0.08);
}

.top-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
    padding: 0.6rem 1rem;
    color: var(--white);
    background: var(--primary-dark);
    font-size: 0.92rem;
}

.top-strip i {
    color: var(--accent);
    margin-right: 0.4rem;
}

.navbar {
    width: min(1180px, calc(100% - 2rem));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    color: var(--primary-dark);
    background: var(--accent);
    font-family: "Jost", Arial, sans-serif;
    font-weight: 700;
}

.brand strong {
    display: block;
    color: var(--primary-dark);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.15rem;
    line-height: 1.1;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-links a {
    padding: 0.7rem 0.8rem;
    border-radius: 6px;
    color: var(--primary-dark);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--primary);
}

.nav-links a.active {
    color: var(--white);
    background: var(--primary);
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    color: var(--primary-dark);
    font-size: 1.25rem;
    cursor: pointer;
}

.hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 2rem;
    padding: 8rem max(1rem, calc((100vw - 1180px) / 2)) 5rem;
    color: var(--white);
    background:
        linear-gradient(135deg, var(--title), var(--primary), var(--accent));
}

.hero-content {
    max-width: 820px;
}

.eyebrow {
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-family: "Jost", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
    margin: 0;
    font-family: "Jost", Arial, sans-serif;
    line-height: 1.08;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(2rem, 4.8vw, 4rem);
}

.hero-text {
    max-width: 720px;
    margin: 1.5rem 0 2rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

.hero-actions,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.3rem;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.btn:hover {
    box-shadow: 0 14px 28px rgba(140, 106, 67, 0.18);
    transform: translateY(-3px);
}

.btn.primary {
    color: var(--white);
    background: var(--button);
}

.btn.primary:hover {
    background: var(--button-hover);
}

.btn.light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-panel {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-content,
.hero-panel {
    animation: heroEnter 700ms ease both;
}

.hero-panel {
    animation-delay: 160ms;
}

.hero-panel div {
    padding: 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.14);
}

.panel-label {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.hero-panel strong {
    display: block;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.3rem;
}

.section {
    padding: 5.5rem max(1rem, calc((100vw - 1180px) / 2));
}

.bg-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.4rem;
}

.section-heading h2 {
    color: var(--primary-dark);
    font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.two-column,
.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
}

.info-card,
.speaker-card,
.contact-card,
.topic-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.info-card {
    padding: 2rem;
}

.info-card h3,
.topic-grid h3,
.speaker-card h3,
.contact-card h3 {
    margin: 0 0 0.7rem;
    color: var(--primary-dark);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.08rem;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--primary-dark);
}

.stats-band div {
    padding: 2.4rem 1rem;
    text-align: center;
    color: var(--white);
    background: var(--primary);
}

.stats-band strong {
    display: block;
    color: var(--accent);
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.topic-grid,
.speaker-grid,
.link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.topic-grid article,
.speaker-card,
.contact-card {
    padding: 1.6rem;
}

.topic-grid i,
.contact-card i {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.date-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.date-list div {
    padding: 1.4rem;
    border-left: 4px solid var(--accent);
    background: var(--soft);
}

.date-list span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.date-list strong {
    display: block;
    color: var(--primary-dark);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.08rem;
}

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

.speaker-card {
    text-align: center;
}

.avatar {
    width: 86px;
    height: 86px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary-dark);
    background: var(--accent);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.link-grid a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 86px;
    padding: 1.1rem;
    border-radius: 8px;
    color: var(--white);
    background: var(--primary-dark);
    font-family: "Jost", Arial, sans-serif;
    font-weight: 700;
}

.link-grid a:hover {
    color: var(--primary-dark);
    background: var(--accent);
}

.contact-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.contact-card a {
    color: var(--primary);
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ics-card-grid article.reveal:nth-child(2),
.page-card.reveal:nth-child(2),
.ics-date-grid div.reveal:nth-child(2),
.committee-list article.reveal:nth-child(2),
.topic-grid article.reveal:nth-child(2),
.link-grid a.reveal:nth-child(2) {
    transition-delay: 80ms;
}

.ics-card-grid article.reveal:nth-child(3),
.page-card.reveal:nth-child(3),
.ics-date-grid div.reveal:nth-child(3),
.committee-list article.reveal:nth-child(3),
.topic-grid article.reveal:nth-child(3),
.link-grid a.reveal:nth-child(3) {
    transition-delay: 140ms;
}

.ics-card-grid article.reveal:nth-child(4),
.page-card.reveal:nth-child(4),
.ics-date-grid div.reveal:nth-child(4),
.committee-list article.reveal:nth-child(4),
.topic-grid article.reveal:nth-child(4),
.link-grid a.reveal:nth-child(4) {
    transition-delay: 200ms;
}

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes headerGlow {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 100% 50%;
    }
}

@keyframes pageBackgroundFlow {
    from {
        background-position: 0 0, center 0;
    }

    to {
        background-position: 0 0, center 54px;
    }
}

@keyframes heroBackgroundFlow {
    from {
        background-position: 0 0, 48% 50%, 0 0;
    }

    to {
        background-position: 0 0, 54% 48%, 0 0;
    }
}

@keyframes pageHeroBackgroundFlow {
    from {
        background-position: 0 0, 48% 50%;
    }

    to {
        background-position: 0 0, 54% 48%;
    }
}

@keyframes sectionBackgroundFlow {
    from {
        background-position: 0 0, 48% 0, 0 0;
    }

    to {
        background-position: 0 0, 54% 36px, 0 0;
    }
}

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

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

.footer {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    padding: 3rem max(1rem, calc((100vw - 1180px) / 2));
    color: rgba(255, 255, 255, 0.82);
    background: var(--primary-dark);
}

.footer strong {
    display: block;
    color: var(--white);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.25rem;
}

.footer-links {
    justify-content: flex-end;
}

.footer-links a {
    color: var(--white);
}

.credit {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
}

@media (max-width: 1180px) {
    .ics-navbar {
        width: min(100% - 1.5rem, 1040px);
        gap: 1rem;
    }

    .ics-nav-links {
        gap: 0.25rem;
    }

    .ics-nav-links a {
        padding: 0.7rem 0.65rem;
        font-size: 0.9rem;
    }

    .page-hero,
    .page-content,
    .ics-section,
    .ics-action-band,
    .ics-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

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

    .wide-card,
    .full-card {
        grid-column: 1 / -1;
    }

    .ics-card-grid,
    .ics-date-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ics-people-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .ics-navbar {
        width: min(100% - 1.25rem, 920px);
        min-height: 82px;
        flex-wrap: wrap;
        padding: 0.75rem 0;
        gap: 0.75rem;
    }

    .ics-logo-with-image img {
        width: 48px;
        height: 48px;
    }

    .ics-logo {
        font-size: clamp(1.55rem, 5vw, 2.2rem);
    }

    .ics-nav-button {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border-radius: 6px;
        color: var(--title);
        background: #ffffff;
        border: 1px solid var(--line);
        box-shadow: 0 8px 20px rgba(140, 106, 67, 0.1);
        cursor: pointer;
        transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }

    .ics-nav-button:hover {
        color: var(--primary);
        border-color: rgba(140, 106, 67, 0.35);
        box-shadow: 0 12px 26px rgba(140, 106, 67, 0.14);
        transform: translateY(-1px);
    }

    .ics-nav-button .fa-bars::before {
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
    }

    .ics-nav-check:checked + .ics-nav-button .fa-bars::before {
        content: "\f106";
    }

    .ics-nav-links {
        display: none;
        width: 100%;
        padding: 0.75rem 0 0.25rem;
        border-top: 1px solid #EFE6DD;
        gap: 0.5rem;
    }

    .ics-nav-links a {
        display: block;
        padding: 0.85rem 0.95rem;
        white-space: normal;
        line-height: 1.25;
        text-align: center;
    }

    .ics-nav-check:checked ~ .ics-nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ics-hero {
        min-height: 600px;
    }

    .page-hero {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }

    .page-content {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .ics-split,
    .ics-split.reverse,
    .ics-footer {
        grid-template-columns: 1fr;
    }

    .ics-split,
    .ics-split.reverse {
        gap: 2rem;
    }

    .ics-card-grid,
    .ics-date-grid,
    .ics-people-grid,
    .committee-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .committee-list article,
    .committee-list article:first-child,
    .committee-list article:nth-child(2),
    .committee-list article:nth-child(3),
    .committee-list article:nth-child(4),
    .committee-list article:nth-child(5),
    .committee-list article:nth-child(6) {
        grid-column: auto;
    }

    .conf-brand-row {
        align-items: flex-start;
        flex-direction: column;
        padding: 1rem 0;
    }

    .conf-meta {
        justify-content: flex-start;
    }

    .conf-menu-btn {
        display: flex;
    }

    .conf-nav-links {
        display: none;
        width: 100%;
        min-height: 0;
        padding: 0.5rem 1rem 1rem;
        background: var(--primary);
    }

    .conf-nav-links a {
        display: flex;
        min-height: 46px;
        padding: 0 1rem;
    }

    .conf-nav-links a::after {
        display: none;
    }

    .conf-menu-check:checked + .conf-nav .conf-nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .conf-page-hero {
        min-height: 260px;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 0.8rem 0;
    }

    .menu-button {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        padding: 0.8rem 0;
        border-top: 1px solid var(--line);
    }

    .nav-links a {
        display: block;
        width: 100%;
    }

    .menu-toggle:checked ~ .nav-links {
        display: block;
    }

    .hero,
    .two-column,
    .contact-grid,
    .footer {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 5rem;
    }

    .topic-grid,
    .date-list,
    .stats-band,
    .link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        background:
            linear-gradient(rgba(255, 252, 250, 0.64), rgba(255, 252, 250, 0.72)),
            var(--template-bg) center top / 100% 520px repeat-y;
    }

    .page-hero {
        min-height: 320px;
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
        background-position: center top;
    }

    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(1.75rem, 7vw, 2.75rem);
        line-height: 1.12;
    }

    .page-hero p {
        max-width: 100%;
        font-size: 1rem;
    }

    .page-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .page-grid,
    .committee-list,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-card,
    .committee-list article {
        padding: 1.25rem;
    }

    .wide-card,
    .full-card {
        grid-column: auto;
    }

    .simple-list {
        gap: 0.8rem;
    }

    .ics-table-wrap {
        margin-inline: -0.25rem;
        padding-bottom: 0.25rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 640px) {
    .ics-nav-check:checked ~ .ics-nav-links,
    .page-grid,
    .ics-card-grid,
    .ics-date-grid,
    .ics-people-grid,
    .ics-countdown,
    .committee-list {
        grid-template-columns: 1fr;
    }

    .ics-navbar {
        width: calc(100% - 1rem);
        min-height: 74px;
        align-items: center;
        justify-content: space-between;
    }

    .ics-logo {
        font-size: clamp(1.35rem, 8vw, 1.9rem);
    }

    .ics-logo-with-image {
        gap: 0.55rem;
    }

    .ics-logo-with-image img {
        width: 42px;
        height: 42px;
        padding: 4px;
    }

    .ics-nav-button {
        width: 40px;
        height: 40px;
    }

    .ics-nav-links {
        gap: 0.4rem;
        padding: 0.75rem 0 0.5rem;
    }

    .ics-nav-links a {
        padding: 0.78rem 0.85rem;
        text-align: left;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.72);
    }

    .ics-nav-links a:hover,
    .ics-nav-links a.active {
        color: #ffffff;
        background: var(--primary);
    }

    .ics-hero {
        min-height: 500px;
    }

    .ics-hero-content {
        width: calc(100% - 2rem);
        margin-top: -16px;
        padding: 3.25rem 1rem 2.75rem;
    }

    .ics-hero h1 {
        font-size: clamp(2rem, 15vw, 3.25rem);
    }

    .ics-hero h2 {
        max-width: 100%;
        font-size: clamp(0.88rem, 4.4vw, 1.05rem);
        letter-spacing: 0.04em;
    }

    .ics-date {
        font-size: 1rem;
    }

    .page-hero {
        min-height: 280px;
        padding: 3rem 1rem;
    }

    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(1.65rem, 9vw, 2.35rem);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .page-hero p {
        font-size: 0.98rem;
    }

    .page-content {
        padding: 2.75rem 1rem;
    }

    .page-grid,
    .ics-card-grid,
    .ics-date-grid,
    .ics-people-grid,
    .committee-list,
    .topic-grid,
    .date-list,
    .stats-band,
    .speaker-grid,
    .link-grid {
        gap: 1rem;
    }

    .page-card,
    .ics-card-grid article,
    .ics-people-grid article,
    .committee-list article,
    .ics-panel {
        padding: 1.15rem;
    }

    .wide-card,
    .full-card {
        grid-column: auto;
    }

    .ics-countdown {
        margin-top: 0;
        width: 100%;
        border-radius: 0;
    }

    .ics-countdown div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .ics-section {
        padding: 3.25rem 1rem;
    }

    .ics-section-title {
        margin-bottom: 1.8rem;
    }

    .ics-copy h2,
    .ics-section-title h2,
    .ics-action-band h2 {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .ics-copy p,
    .ics-center-text,
    .ics-action-band p {
        font-size: 0.98rem;
    }

    .ics-action-band {
        padding: 3rem 1rem;
    }

    .ics-actions,
    .hero-actions,
    .footer-links {
        width: 100%;
    }

    .ics-btn,
    .btn {
        width: 100%;
    }

    .ics-highlight-panel {
        min-height: 240px;
        padding: 1.5rem;
    }

    .conference-image,
    .conference-image img {
        min-height: 260px;
    }

    .conf-menu-check:checked + .conf-nav .conf-nav-links {
        grid-template-columns: 1fr;
    }

    .conf-page-hero {
        min-height: 220px;
        padding: 4rem 1rem;
    }

    .top-strip {
        justify-content: flex-start;
    }

    .brand small {
        display: none;
    }

    .hero,
    .section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .topic-grid,
    .date-list,
    .stats-band,
    .speaker-grid,
    .link-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

.payment-page {
    display: grid;
    justify-items: center;
    gap: 2rem;
}

.payment-title h2,
.payment-scan h3,
.payment-fees h3 {
    position: relative;
    margin: 0;
    color: #6f4bc7;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
    text-align: center;
}

.payment-title h2 {
    display: inline-block;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.payment-title h2::after {
    position: absolute;
    left: 50%;
    bottom: -0.45rem;
    width: 64px;
    height: 3px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, #6f4bc7, #ff8a00);
    transform: translateX(-50%);
}

.payment-details-card {
    width: min(620px, 100%);
    display: grid;
    justify-items: center;
    gap: 1rem;
    padding: 1.7rem;
    border: 1px solid rgba(239, 230, 221, 0.86);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 48px rgba(91, 75, 138, 0.12);
}

.payment-details-card h3 {
    margin: 0;
    color: #102745;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.payment-detail-list {
    width: 100%;
    display: grid;
    gap: 0.65rem;
    margin: 0;
}

.payment-detail-list div {
    display: grid;
    grid-template-columns: minmax(130px, 0.9fr) minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    min-height: 42px;
    padding: 0.62rem 0.8rem;
    border-radius: 6px;
    background: #f6f0fb;
}

.payment-detail-list dt,
.payment-detail-list dd {
    margin: 0;
    font-size: 0.86rem;
}

.payment-detail-list dt {
    color: #4f5570;
    font-weight: 700;
}

.payment-detail-list dd {
    color: #6f4bc7;
    font-weight: 800;
    text-align: right;
}

.payment-proof-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    color: #ffffff;
    background: #7d4bd1;
    box-shadow: 0 12px 24px rgba(111, 75, 199, 0.24);
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.payment-proof-btn:hover {
    color: #ffffff;
    background: #6b3ac1;
    box-shadow: 0 16px 30px rgba(111, 75, 199, 0.32);
    transform: translateY(-2px);
}

.payment-scan,
.payment-fees {
    width: min(620px, 100%);
    text-align: center;
}

.payment-scan h3,
.payment-fees h3 {
    color: #102745;
    font-size: 1.08rem;
}

.payment-scan p {
    margin: 0.35rem 0 0.9rem;
    color: #4f5570;
    font-size: 0.82rem;
}

.payment-qr-card {
    width: min(320px, 100%);
    margin: 0 auto;
    padding: 0.7rem;
    border: 1px solid #d9e7f4;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 39, 69, 0.12);
}

.payment-qr-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.payment-table-wrap {
    margin-top: 0.9rem;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(91, 75, 138, 0.1);
}

.payment-fee-table {
    width: 100%;
    min-width: 420px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
}

.payment-fee-table th,
.payment-fee-table td {
    padding: 1rem 1.2rem;
    border: 1px solid #efe6dd;
    text-align: left;
}

.payment-fee-table th {
    color: #ffffff;
    background: #7d4bd1;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
}

.payment-fee-table th:last-child,
.payment-fee-table td:last-child {
    text-align: right;
}

.payment-fee-table td {
    color: #4f5570;
    font-size: 0.92rem;
}

.payment-fee-table td:last-child {
    color: #6f4bc7;
    font-weight: 800;
}

.conference-process {
    width: min(1080px, calc(100% - 2rem));
    margin: 4.5rem auto 0;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 12px;
    background:
        radial-gradient(circle at 92% 4%, rgba(212, 163, 115, 0.26), transparent 26%),
        linear-gradient(135deg, #102745, #5B4B8A);
    box-shadow: 0 22px 56px rgba(16, 39, 69, 0.16);
    overflow: hidden;
}

.conference-process-title {
    margin-bottom: clamp(1.6rem, 4vw, 2.2rem);
    text-align: center;
}

.conference-process-title h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    color: #e9ecf0;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.conference-process-title h2::first-letter {
    color: #e3e8ee;
}

.conference-process-title h2::after {
    position: absolute;
    left: 50%;
    bottom: -1rem;
    width: 110px;
    height: 8px;
    content: "";
    background:
        radial-gradient(circle, #ffffff 0 3px, transparent 3px),
        linear-gradient(90deg, transparent 0 8px, #D4A373 8px 48px, transparent 48px 62px, #D4A373 62px 102px, transparent 102px);
    transform: translateX(-50%);
}

.conference-process-title h2 {
    background: linear-gradient(90deg, #ffffff 0 34%, #D4A373 34% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.conference-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.2rem);
}

.conference-process-card {
    min-height: 210px;
    display: grid;
    align-content: start;
    gap: 0.75rem;
    padding: 1.45rem;
    border: 1px solid rgba(140, 106, 67, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    min-width: 0;
}

.conference-process-card:hover {
    border-color: rgba(212, 163, 115, 0.55);
    box-shadow: 0 22px 44px rgba(140, 106, 67, 0.14);
    transform: translateY(-5px);
}

.conference-process-card > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #8C6A43;
    background: #F7E9D8;
    font-size: 1rem;
}

.conference-process-card h3 {
    margin: 0;
    color: #061B35;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.conference-process-card p {
    min-height: 48px;
    margin: 0;
    color: #111827;
    font-size: 0.9rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.conference-process-card span {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 28px;
    margin-top: 0.25rem;
    padding: 0.32rem 0.75rem;
    border: 1px solid rgba(140, 106, 67, 0.2);
    border-radius: 999px;
    color: #8C6A43;
    background: #FAF0E5;
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .payment-page {
        gap: 1.6rem;
    }

    .payment-details-card {
        padding: 1.1rem;
    }

    .payment-detail-list div {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .payment-detail-list dd {
        text-align: left;
    }

    .payment-fee-table {
        min-width: 360px;
    }
}

@media (max-width: 980px) {
    .conference-process {
        width: min(840px, calc(100% - 1.5rem));
        margin-top: 3.5rem;
    }

    .conference-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .conference-process {
        width: calc(100% - 1.25rem);
        margin-top: 3rem;
        padding: 1.25rem;
        border-radius: 10px;
    }

    .conference-process-grid {
        grid-template-columns: 1fr;
    }

    .conference-process-card {
        min-height: 0;
        padding: 1.2rem;
    }

    .conference-process-card p {
        min-height: 0;
    }
}

@media (max-width: 420px) {
    .conference-process {
        width: calc(100% - 1rem);
        padding: 1rem;
    }

    .conference-process-title h2 {
        font-size: clamp(1.65rem, 9vw, 2.15rem);
    }

    .conference-process-title h2::after {
        bottom: -0.8rem;
        width: 88px;
    }

    .conference-process-card {
        gap: 0.65rem;
        padding: 1rem;
    }

    .conference-process-card > i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .conference-process-card h3 {
        font-size: 0.96rem;
    }

    .conference-process-card p {
        font-size: 0.86rem;
    }

    .conference-process-card span {
        min-height: 26px;
        padding: 0.28rem 0.65rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 420px) {
    .ics-navbar {
        width: calc(100% - 0.75rem);
        min-height: 68px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .ics-logo {
        font-size: clamp(1.2rem, 9vw, 1.55rem);
    }

    .ics-logo-with-image img {
        width: 38px;
        height: 38px;
    }

    .ics-nav-button {
        width: 38px;
        height: 38px;
    }

    .ics-nav-check:checked ~ .ics-nav-links {
        grid-template-columns: 1fr;
    }

    .ics-nav-links a {
        font-size: 0.9rem;
        padding: 0.72rem 0.8rem;
    }

    .ics-hero {
        min-height: 460px;
    }

    .ics-hero-content {
        width: calc(100% - 1.5rem);
        margin-top: -8px;
        padding: 2.65rem 0.9rem 2.25rem;
    }

    .ics-tag {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
        padding: 0.45rem 0.75rem;
    }

    .ics-hero h2 {
        padding: 0.48rem 0.75rem;
        font-size: 0.82rem;
    }

    .ics-date {
        margin: 1rem 0 1.4rem;
    }

    .ics-countdown div {
        padding: 1.15rem 1rem;
    }

    .page-hero {
        min-height: 250px;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .page-hero span,
    .ics-small-title,
    .ics-section-title span {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
    }

    .page-hero h1 {
        font-size: clamp(1.45rem, 9vw, 2rem);
    }

    .page-card,
    .ics-card-grid article,
    .ics-people-grid article,
    .committee-list article,
    .ics-panel {
        padding: 1rem;
    }

    .page-card h2,
    .page-card h3 {
        font-size: 1.12rem;
    }

    .simple-list {
        gap: 0.7rem;
    }

    .simple-list div {
        padding: 0.85rem;
        border-left-width: 3px;
        font-size: 0.94rem;
    }

    .ics-section {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .ics-copy h2,
    .ics-section-title h2,
    .ics-action-band h2 {
        font-size: clamp(1.35rem, 7.5vw, 1.85rem);
    }

    .ics-fee-table {
        min-width: 360px;
        font-size: 0.9rem;
    }

    .ics-fee-table th,
    .ics-fee-table td {
        padding: 0.75rem;
    }

    .ics-footer,
    .footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 360px) {
    .page-hero,
    .page-content,
    .ics-section,
    .ics-action-band {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .page-hero h1 {
        font-size: clamp(1.35rem, 9vw, 1.75rem);
    }

    .page-card,
    .ics-card-grid article,
    .committee-list article {
        padding: 0.9rem;
    }

    .ics-fee-table {
        min-width: 320px;
    }
}

.submission-hero {
    position: relative;
    min-height: 330px;
    display: grid;
    align-content: center;
    overflow: hidden;
    padding: 4.5rem max(1.25rem, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid #f0dfcc;
    background:
        linear-gradient(90deg, rgba(255, 250, 244, 0.88), rgba(255, 252, 248, 0.7)),
        url("../img/submission-bg.svg") center center / cover no-repeat,
        #fff8ef;
    background-size: auto, 112% 112%, auto;
    animation: heroBackgroundFlow 22s ease-in-out infinite alternate;
}

.submission-hero::before,
.submission-hero::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.submission-hero::before {
    right: -90px;
    bottom: -120px;
    width: 430px;
    height: 220px;
    border: 1px solid rgba(212, 163, 115, 0.45);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.submission-hero::after {
    right: 9%;
    top: 18%;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(212, 163, 115, 0.42);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.submission-hero span,
.submission-hero h1,
.submission-hero p {
    position: relative;
    z-index: 1;
}

.submission-hero span {
    margin-bottom: 0.55rem;
    color: #8C6A43;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.submission-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.15rem);
    font-weight: 800;
    line-height: 1.04;
}

.submission-hero p {
    max-width: 720px;
    margin: 1.1rem 0 0;
    color: #52525B;
    font-size: 1.16rem;
}

.submission-page {
    min-height: 70vh;
    padding: 3.5rem max(1rem, calc((100vw - 1180px) / 2)) 5rem;
    background: #ffffff;
}

.submission-title {
    margin-bottom: 1rem;
    text-align: center;
}

.submission-title h1,
.submission-downloads h2,
.submission-guidelines h2 {
    margin: 0;
    color: #5B4BCA;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.15;
}

.submission-title h1 {
    display: inline-block;
    position: relative;
    font-size: clamp(2rem, 4vw, 2.9rem);
}

.submission-title h1::after {
    position: absolute;
    left: 50%;
    bottom: -0.55rem;
    width: 76px;
    height: 4px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, #6F4BC7 0 58%, #FF8A00 58% 100%);
    transform: translateX(-50%);
}

.submission-method {
    position: relative;
    width: min(560px, 100%);
    min-height: 245px;
    margin: 2.1rem auto 3.8rem;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.75rem;
    overflow: hidden;
    padding: 2rem;
    border-radius: 18px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, #5B4B8A, #8C6A43);
    box-shadow: 0 22px 42px rgba(140, 106, 67, 0.22);
}

.submission-method::after {
    position: absolute;
    top: -42px;
    right: -38px;
    width: 145px;
    height: 145px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.submission-method-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ff3e79;
    font-size: 1.9rem;
}

.submission-method h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #ffffff;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
}

.submission-method p {
    position: relative;
    z-index: 1;
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 700;
}

.submission-submit-btn {
    position: relative;
    z-index: 1;
    min-height: 42px;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.45rem;
    border: 3px solid #ffffff;
    border-radius: 999px;
    color: #ffffff;
    background: #ff8200;
    box-shadow: 0 8px 18px rgba(255, 130, 0, 0.26);
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.submission-submit-btn:hover {
    color: #ffffff;
    background: #f17200;
    box-shadow: 0 12px 24px rgba(255, 130, 0, 0.34);
    transform: translateY(-2px);
}

.submission-downloads,
.submission-guidelines {
    text-align: center;
}

.submission-downloads h2,
.submission-guidelines h2 {
    color: #003a70;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.submission-download-grid {
    width: min(340px, 100%);
    margin: 1.5rem auto 4.1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.submission-download-card,
.submission-guideline-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(239, 230, 221, 0.7);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px rgba(60, 70, 92, 0.12);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.submission-download-card {
    min-height: 105px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.55rem;
    padding: 1.2rem 0.75rem;
    border-radius: 12px;
    color: #003a70;
}

.submission-download-card i {
    color: #b8b5d8;
    font-size: 2rem;
}

.submission-download-card span {
    font-size: 0.78rem;
}

.submission-download-card:hover,
.submission-guideline-card:hover {
    border-color: rgba(91, 75, 202, 0.25);
    box-shadow: 0 22px 44px rgba(60, 70, 92, 0.16);
    transform: translateY(-5px);
}

.submission-guideline-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.submission-guideline-card {
    min-height: 170px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.6rem;
    padding: 1.5rem;
    border-radius: 14px;
}

.submission-guideline-card::after {
    position: absolute;
    top: -48px;
    right: -32px;
    width: 112px;
    height: 112px;
    content: "";
    border-radius: 50%;
    background: rgba(222, 236, 255, 0.95);
}

.submission-guideline-card i {
    position: relative;
    z-index: 1;
    color: #ff7c4f;
    font-size: 2rem;
}

.submission-guideline-card:nth-child(2) i {
    color: #ff406f;
}

.submission-guideline-card:nth-child(3) i {
    color: #6f4bc7;
}

.submission-guideline-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #003a70;
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
}

.submission-guideline-card p {
    position: relative;
    z-index: 1;
    max-width: 270px;
    margin: 0;
    color: #4f5570;
    font-size: 0.82rem;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .submission-hero {
        min-height: 290px;
        padding-top: 3.6rem;
        padding-bottom: 3.6rem;
    }

    .submission-page {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    .submission-guideline-grid {
        grid-template-columns: 1fr;
    }

    .submission-guideline-card {
        min-height: 150px;
    }
}

@media (max-width: 640px) {
    .submission-hero {
        min-height: 260px;
        padding: 3rem 1rem;
    }

    .submission-hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .submission-hero p {
        font-size: 1rem;
    }

    .submission-page {
        padding: 2.5rem 1rem 3.5rem;
    }

    .submission-method {
        min-height: 230px;
        margin-bottom: 3rem;
        padding: 1.5rem 1rem;
        border-radius: 14px;
    }

    .submission-download-grid {
        grid-template-columns: 1fr;
        width: min(260px, 100%);
        margin-bottom: 3.25rem;
    }
}
.scope-card {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.scope-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.scope-card i {
    font-size: 38px;
    color: #5a4fcf;
    margin-bottom: 10px;
}

.scope-card h3 {
    margin: 10px 0 15px;
    font-size: 18px;
}

.scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scope-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    text-align: left;
}

/* ✅ Orange check icon like your image */
.scope-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff9800;
    font-size: 14px;
}
.ics-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.reg-icon {
    width: 70px;
    height: 70px;
    background: #6a5cff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(106,92,255,0.3);
}

.reg-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.reg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #6a5cff, #4b3cc4);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.reg-btn:hover {
    transform: translateY(-3px);
}
.page-content {
    max-width: 1400px;   /* 🔥 increased width */
    margin: auto;
    padding: 20px;
}

/* SEARCH CARD */
.paper-search-card {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.paper-header i {
    font-size: 40px;
    color: #5a4fcf;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.search-box input {
    width: 350px;
    padding: 12px;
    border-radius: 25px;
    border: 1px solid #ddd;
    outline: none;
}

.search-box button {
    padding: 12px 18px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg,#6a5cff,#4b3cc4);
    color: white;
    cursor: pointer;
}

/* TABLE */
.table-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: #5a4fcf;
    color: white;
    padding: 12px;
}

td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.status {
    background: #d4f8d4;
    color: green;
    padding: 5px 12px;
    border-radius: 20px;
}
.page-content {
    max-width: 1400px;   /* 🔥 increased width */
    margin: auto;
    padding: 20px;
}
.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* INPUT */
.search-box input {
    width: 350px;
    padding: 12px 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
    outline: none;
}

/* BUTTON */
.search-box button {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px 20px;
    border: none;
    border-radius: 30px;

    background: linear-gradient(135deg, #6a5cff, #4b3cc4);
    color: white;

    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.search-box button:hover {
    transform: scale(1.05);
}
.map-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:15px;
}

/* SWAP LAYOUT */
.venue-split{
    display:flex;
    gap:25px;
    max-width:1100px;
    margin:40px auto;
    padding:20px;
    align-items:stretch;
}

.map-box, .address-box{
    flex:1;
    background:#fff;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    overflow:hidden;
}

/* MAP HEIGHT FIX */
:root {
  /* Colors */
  --color-primary: #4f46e5;
  --color-primary-light: #818cf8;
  --color-bg: #f8fafc;
  --color-white: #ffffff;
  --color-text: #1e293b;
  --color-text-muted: #475569;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 20px;
  --spacing-lg: 32px;
  --spacing-xl: 40px;

  /* Borders & Shadows */
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.10);
  --transition: 0.3s ease;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Container */
.venue-container {
  display: flex;
  gap: var(--spacing-lg);
  max-width: 1100px;
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-md);
  background: var(--color-bg);
  border-radius: var(--radius);
}

/* Common card style */
.address-card,
.map-card {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.address-card:hover,
.map-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* Map iframe */
.map-card iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: calc(var(--radius) - 4px);
  display: block;
  background: #e2e8f0; /* fallback while loading */
}

/* Address card typography */
.address-card h3 {
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--color-primary);
  font-family: var(--font-family);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.address-card p {
  margin: var(--spacing-xs) 0;
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
}

.address-card p:last-child {
  margin-bottom: 0;
}

/* Optional accent border on address card */
.address-card {
  border-left: 4px solid var(--color-primary);
}

/* Focus outline for accessibility (if any interactive elements are added) */
.address-card:focus-within,
.map-card:focus-within {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .venue-container {
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    margin: var(--spacing-lg) auto;
  }

 /* --- ADDRESS CARD SPECIFIC STYLES --- */

/* Heading with a location pin icon */
.address-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px 0;
  color: var(--color-primary, #4f46e5);
  font-family: var(--font-family, 'Inter', sans-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.address-card h3::before {
  content: "📍";
  font-size: 1.5rem;
  line-height: 1;
}

/* College Name - bold and prominent */
.address-card .institute-name {
  margin: 0 0 8px 0;
  color: #0f172a; /* Near-black for maximum contrast */
  font-family: var(--font-family, 'Inter', sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Full Street Address - clean and slightly muted */
.address-card .full-address {
  margin: 0;
  padding: 12px 0 4px 16px; /* Top padding, left indent */
  color: var(--color-text-muted, #475569);
  font-family: var(--font-family, 'Inter', sans-serif);
  font-size: 0.95rem;
  line-height: 1.7;
  border-left: 4px solid var(--color-primary-light, #818cf8);
  background: #f8fafc; /* Subtle background to separate it */
  border-radius: 0 8px 8px 0;
  padding: 12px 16px; /* Full padding for a "block quote" feel */
}

/* Optional: Hover effect for the entire card to tie back to previous improvements */
.address-card:hover .full-address {
  border-left-color: var(--color-primary, #4f46e5);
  transition: border-color 0.3s ease;
}

/* --- RESPONSIVE TWEAKS --- */
@media (max-width: 768px) {
  .address-card h3 {
    font-size: 1.2rem;
  }

  .address-card .institute-name {
    font-size: 1rem;
  }

  .address-card .full-address {
    font-size: 0.9rem;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .address-card h3 {
    font-size: 1.05rem;
  }

  .address-card .institute-name {
    font-size: 0.95rem;
  }

  .address-card .full-address {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-left-width: 3px;
  }
}
}

/* Small screens extra polish */
@media (max-width: 480px) {
  .venue-container {
    padding: var(--spacing-xs);
    margin: var(--spacing-md) auto;
  }

  .map-card iframe {
    height: 200px;
  }
}

/* Unified website background and animated banners */
:root {
    --template-bg: url("../img/tech-conference-bg.png");
    --non-home-bg: url("../img/tech-conference-bg.png");
}

body.ics-layout,
body {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(255, 252, 248, 0.9), rgba(255, 252, 248, 0.94)),
        url("../img/tech-conference-bg.png") center top / cover fixed,
        #060a18;
}

body.ics-layout::before,
body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(rgba(6, 10, 24, 0.52), rgba(255, 252, 248, 0.82) 46%, rgba(255, 252, 248, 0.9)),
        url("../img/tech-conference-bg.png") center center / 112% 112% no-repeat;
    opacity: 0.42;
    animation: pageTechBackgroundFlow 26s ease-in-out infinite alternate;
}

@keyframes pageTechBackgroundFlow {
    0% {
        background-position: center center, 50% 50%;
        transform: scale(1);
    }

    50% {
        background-position: center center, 54% 48%;
        transform: scale(1.025);
    }

    100% {
        background-position: center center, 47% 54%;
        transform: scale(1.045);
    }
}

.page-content,
.submission-page,
.organized-committee,
.committee-page-body .page-content {
    background:
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 252, 248, 0.94)),
        url("../img/tech-conference-bg.png") center top / cover fixed;
}

.ics-hero,
.page-hero,
.conf-page-hero,
.committee-hero,
.submission-hero {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(105deg, rgba(5, 8, 22, 0.78), rgba(91, 75, 138, 0.44) 48%, rgba(140, 106, 67, 0.44)),
        url("../img/tech-conference-bg.png") center center / 118% 118% no-repeat,
        linear-gradient(105deg, #050816 0%, #2d2253 54%, #8C6A43 100%);
    background-size: 140% 140%, 118% 118%, 140% 140%;
    animation: combinedBannerFlow 18s ease-in-out infinite alternate;
}

.ics-footer {
    background:
        linear-gradient(105deg, rgba(5, 8, 22, 0.86), rgba(91, 75, 138, 0.7) 48%, rgba(140, 106, 67, 0.78)),
        url("../img/tech-conference-bg.png") center bottom / cover no-repeat,
        linear-gradient(105deg, #050816 0%, #2d2253 54%, #8C6A43 100%);
}

@keyframes combinedBannerFlow {
    0% {
        background-position: 0% 50%, 50% 50%, 0% 50%;
    }

    50% {
        background-position: 100% 48%, 54% 46%, 100% 50%;
    }

    100% {
        background-position: 22% 56%, 48% 54%, 22% 56%;
    }
}

.page-hero span,
.conf-page-hero p,
.committee-hero span,
.submission-hero span {
    color: #F8EBDD;
}

.page-hero h1,
.conf-page-hero h1,
.committee-hero h1,
.submission-hero h1 {
    color: #ffffff;
}

.page-hero p,
.conf-page-hero span,
.committee-hero p,
.submission-hero p {
    color: rgba(255, 255, 255, 0.86);
}

.committee-hero::before,
.committee-hero::after,
.submission-hero::before,
.submission-hero::after {
    border-color: rgba(255, 255, 255, 0.2);
}
.justify-text {
    text-align: justify;
    text-justify: inter-word; /* improves spacing for justified text */
    line-height: 1.6;        /* optional: better readability */
}

/* Countdown responsive correction */
@media (max-width: 640px) {
    .ics-countdown {
        width: calc(100% - 1rem);
        margin-top: -28px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border-radius: 8px;
    }

    .ics-countdown div {
        padding: 0.9rem 0.35rem;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .ics-countdown div:last-child {
        border-right: 0;
    }

    .ics-countdown strong {
        font-size: clamp(1.25rem, 8vw, 2rem);
    }

    .ics-countdown span {
        font-size: 0.82rem;
    }
}

@media (max-width: 340px) {
    .ics-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ics-countdown div:nth-child(2) {
        border-right: 0;
    }

    .ics-countdown div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
}
