:root {
    --bg-strong: #08111d;
    --bg-deep: #10253b;
    --bg-soft: #edf5ff;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-strong: #ffffff;
    --ink: #0b1624;
    --ink-soft: #455b74;
    --line: rgba(12, 31, 52, 0.12);
    --blue: #0c7cff;
    --cyan: #2ec5ff;
    --green: #39d98a;
    --orange: #ff8b3d;
    --shadow: 0 18px 40px rgba(7, 21, 38, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(46, 197, 255, 0.12), transparent 28%),
        radial-gradient(circle at 100% 15%, rgba(57, 217, 138, 0.1), transparent 26%),
        linear-gradient(180deg, #f7fbff 0%, #eff6ff 46%, #f8fbff 100%);
    line-height: 1.65;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

a {
    color: #045ec2;
}

h1,
h2,
h3,
.eyebrow,
.section-head__eyebrow,
.brand,
.site-nav__links a,
.button,
.site-nav__toggle {
    font-family: "Sora", "Segoe UI", sans-serif;
}

h1,
h2,
h3,
p,
ul {
    margin-top: 0;
}

.shell {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding-bottom: 32px;
    background:
        radial-gradient(circle at 8% 18%, rgba(12, 124, 255, 0.28), transparent 23%),
        radial-gradient(circle at 90% 16%, rgba(255, 139, 61, 0.22), transparent 22%),
        linear-gradient(135deg, #06101a 0%, #0d2032 38%, #153351 100%);
    color: #ffffff;
}

.hero > .shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
}

.hero__image,
.hero__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__image {
    background:
        linear-gradient(105deg, rgba(6, 16, 26, 0.9) 0%, rgba(7, 20, 33, 0.76) 38%, rgba(11, 39, 64, 0.68) 100%),
        url("../assets/img/Napoli.jpg") center 35% / cover no-repeat;
    mix-blend-mode: screen;
}

.hero__grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 86%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    transform: rotate(12deg);
}

.hero::before {
    top: 120px;
    right: -120px;
    width: 340px;
    height: 340px;
}

.hero::after {
    left: -80px;
    bottom: 140px;
    width: 220px;
    height: 220px;
}

.site-nav {
    position: fixed;
    top: 16px;
    left: 50%;
    width: min(1180px, calc(100vw - 40px));
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 0;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    background: rgba(5, 15, 25, 0.36);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-nav.is-scrolled {
    background: rgba(5, 15, 25, 0.72);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 136px;
    height: 58px;
    padding: 4px 6px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(228, 240, 255, 0.94) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.brand__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-nav__toggle {
    display: none;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    font-size: 0.84rem;
}

.site-nav__links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
    list-style: none;
}

.site-nav__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(227, 241, 255, 0.9);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
    color: #ffffff;
    background: rgba(46, 197, 255, 0.18);
}

.site-nav__cta-link {
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(12, 124, 255, 0.22);
}

.site-nav__cta-link:hover,
.site-nav__cta-link.is-active {
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green)) !important;
    color: #ffffff !important;
}

.hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr);
    gap: 24px;
    align-items: end;
    margin-top: auto;
    padding: 128px 0 28px;
}

.hero__content {
    max-width: 820px;
}

.eyebrow,
.section-head__eyebrow,
.hero__panel-label {
    display: inline-block;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.72rem;
}

.hero h1 {
    max-width: 980px;
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 0.98;
}

.hero__lead {
    max-width: 64ch;
    margin-bottom: 22px;
    color: rgba(228, 240, 255, 0.94);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hero__chips span {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.88rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button--primary {
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(12, 124, 255, 0.26);
}

.button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.hero__panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(7, 19, 31, 0.82) 0%, rgba(9, 24, 41, 0.62) 100%);
    backdrop-filter: blur(16px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.hero__panel-label {
    margin-bottom: 16px;
    color: #9cd8ff;
}

.hero__panel-text {
    margin-bottom: 0;
    color: rgba(220, 236, 255, 0.88);
    font-size: 0.96rem;
}

.facts {
    margin: 0 0 20px;
}

.facts__item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.facts__item:first-child {
    padding-top: 0;
    border-top: 0;
}

.facts dt {
    color: rgba(156, 216, 255, 0.84);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.facts dd {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
}

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

.countdown__item {
    padding: 12px 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
    text-align: center;
    backdrop-filter: blur(12px);
}

.countdown__item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.15rem;
}

.countdown__item span {
    color: rgba(228, 240, 255, 0.86);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.countdown--compact {
    margin-bottom: 14px;
}

.section {
    position: relative;
    padding: 45px 0 68px;
}

.section--intro {
    padding-top: 96px;
}

.section--soft {
    background:
        linear-gradient(180deg, rgba(237, 245, 255, 0.92) 0%, rgba(230, 240, 252, 0.98) 100%);
}

.section-head {
    max-width: 780px;
    margin-bottom: 24px;
}

.section-head__eyebrow {
    margin-bottom: 12px;
    color: var(--blue);
}

.section-head h2 {
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.06;
}

.section-head p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 1rem;
}

.about-grid,
.publication-grid,
.section-split,
.cfp-grid,
.program-layout,
.pc-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.panel,
.topic-card,
.timeline__item,
.person,
.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
    box-shadow: var(--shadow);
}

.panel {
    padding: 26px;
}

.panel--feature {
    position: relative;
    overflow: hidden;
}

.panel--feature::before,
.panel--accent::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--blue), var(--cyan), var(--green));
}

.panel h3 {
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.list {
    margin-bottom: 0;
    padding-left: 18px;
}

.list li + li {
    margin-top: 8px;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.cfp-grid {
    align-items: stretch;
}

.topic-card {
    position: relative;
    overflow: hidden;
    padding: 26px 24px 24px;
}

.topic-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--blue), var(--cyan), var(--orange));
}

.topic-card h3 {
    margin-bottom: 16px;
    font-size: 1.08rem;
    line-height: 1.28;
}

.timeline {
    position: relative;
    display: grid;
    gap: 14px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--blue), var(--cyan), var(--green));
}

.timeline__item {
    position: relative;
    padding: 18px 20px 18px 56px;
}

.timeline__item::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 22px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
    box-shadow: 0 0 0 1px rgba(12, 124, 255, 0.18);
}

.timeline__label {
    margin-bottom: 4px;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.timeline strong {
    font-size: 1.02rem;
}

.link-list {
    margin-bottom: 10px;
}

.link-list:last-child {
    margin-bottom: 0;
}

.schedule {
    display: grid;
    gap: 14px;
}

.schedule__item {
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.98) 100%);
    box-shadow: var(--shadow);
}

.schedule__time {
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.schedule__item h3 {
    margin-bottom: 0;
    font-size: 1.02rem;
}

.panel--status {
    padding: 28px 26px;
}

.panel--status p {
    margin-bottom: 0;
    font-size: 1.02rem;
    font-weight: 600;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.person {
    padding: 18px;
}

.person img,
.person__placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
}

.person img {
    object-fit: cover;
}

.person__placeholder {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(46, 197, 255, 0.42), transparent 24%),
        linear-gradient(135deg, #0a1a2d 0%, #15375d 56%, #0c7cff 100%);
    color: #ffffff;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.person h3 {
    margin: 16px 0 6px;
    font-size: 1rem;
}

.person p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.person__link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.84rem;
    word-break: break-word;
}

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.speaker {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
    box-shadow: var(--shadow);
}

.speaker::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--blue), var(--cyan), var(--green));
}

.speaker__badge {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(12, 124, 255, 0.16) 0%, rgba(46, 197, 255, 0.18) 100%);
    color: var(--blue);
    font-family: "Sora", "Segoe UI", sans-serif;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.speaker__role {
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.speaker h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.25;
}

.speaker__affiliation {
    margin-bottom: 14px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.committee-list {
    margin-bottom: 0;
    padding-left: 18px;
    columns: 2;
    column-gap: 24px;
}

.committee-list li {
    break-inside: avoid;
    margin-bottom: 10px;
}

.contact-card {
    padding: 28px;
    background: linear-gradient(135deg, rgba(12, 124, 255, 0.08) 0%, rgba(46, 197, 255, 0.12) 100%), #ffffff;
}

.contact-card p {
    margin-bottom: 10px;
}

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

.footer {
    padding: 28px 0 40px;
    background: linear-gradient(180deg, #0a1320 0%, #08111d 100%);
    color: rgba(227, 241, 255, 0.82);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer p {
    margin-bottom: 0;
}

section[id] {
    scroll-margin-top: 110px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1080px) {
    .hero__layout,
    .about-grid,
    .publication-grid,
    .section-split,
    .cfp-grid,
    .program-layout,
    .pc-layout,
    .topic-grid,
    .people-grid,
    .speaker-grid {
        grid-template-columns: 1fr;
    }

    .hero__layout {
        padding-top: 116px;
    }

    .committee-list {
        columns: 1;
    }

    .hero__panel {
        padding: 20px;
    }

    .hero__panel-text {
        display: none;
    }

    .facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 0;
    }

    .facts__item,
    .facts__item:first-child {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 860px) {
    .shell {
        width: min(1180px, calc(100vw - 28px));
    }

    .site-nav {
        width: calc(100vw - 28px);
        padding: 12px 14px;
        border-radius: 22px;
        background: rgba(5, 15, 25, 0.78);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .site-nav__toggle {
        display: inline-flex;
    }

    .site-nav__links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 24px;
        background: rgba(6, 16, 26, 0.92);
        backdrop-filter: blur(18px);
    }

    .site-nav__links.is-open {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .site-nav__links a {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
    }

    .site-nav__links a.is-active {
        background: rgba(46, 197, 255, 0.16);
    }

    .site-nav__cta-link {
        justify-content: center !important;
        margin-top: 4px;
    }

    .countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 12px;
    }

    .section,
    .section--intro {
        padding-top: 88px;
        padding-bottom: 60px;
    }

    .topic-grid {
        gap: 16px;
    }

    .hero__lead {
        margin-bottom: 14px;
        font-size: 0.98rem;
    }

    .hero__chips {
        margin-bottom: 16px;
    }

    .hero__chips span {
        font-size: 0.82rem;
        padding: 8px 12px;
    }

    .hero__panel {
        padding: 18px;
    }
}

@media (max-width: 640px) {
    .brand {
        gap: 0;
    }

    .brand__mark {
        width: 118px;
        height: 52px;
        padding: 4px 5px;
    }

    .hero {
        padding-bottom: 24px;
    }

    .hero__layout {
        gap: 18px;
        padding-top: 108px;
    }

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

    .hero__lead {
        font-size: 0.94rem;
    }

    .hero__chips,
    .hero__actions {
        gap: 8px;
    }

    .hero__chips span:last-child {
        display: none;
    }

    .button {
        width: 100%;
    }

    .countdown {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 10px;
    }

    .section,
    .section--intro {
        padding-top: 70px;
        padding-bottom: 44px;
    }

    .panel,
    .topic-card,
    .timeline__item,
    .person,
    .contact-card {
        border-radius: 20px;
    }

    .section-head h2 {
        font-size: 1.85rem;
    }

    .section-head {
        margin-bottom: 16px;
    }

    .timeline__item {
        padding-left: 52px;
    }

    .people-grid {
        gap: 16px;
    }

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

@media (max-width: 420px) {
    .brand__mark {
        width: 104px;
        height: 46px;
    }

    .hero__layout {
        padding-top: 100px;
    }

    .section,
    .section--intro {
        padding-top: 56px;
        padding-bottom: 36px;
    }

    .section-head {
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 10.5vw, 2.45rem);
    }

    .hero__chips span:nth-child(3) {
        display: none;
    }

    .site-nav__links.is-open {
        grid-template-columns: 1fr;
    }
}

@media (max-height: 860px) {
    .hero__layout {
        gap: 18px;
        padding-top: 112px;
        padding-bottom: 20px;
    }

    .hero h1 {
        font-size: clamp(2rem, 4vw, 3.8rem);
    }

    .hero__lead {
        margin-bottom: 16px;
    }

    .hero__chips {
        margin-bottom: 18px;
        gap: 8px;
    }

    .hero__panel {
        padding: 20px;
    }

    .countdown__item {
        padding: 14px 10px;
    }

    .countdown__item strong {
        font-size: 1.35rem;
    }
}

@media (max-height: 760px) {
    .site-nav {
        top: 10px;
    }

    .hero__layout {
        padding-top: 94px;
    }

    .hero__chips span:last-child {
        display: none;
    }

    .hero__panel {
        padding: 16px;
    }

    .hero__panel-label {
        margin-bottom: 10px;
    }

    .facts {
        gap: 8px;
    }

    .facts__item,
    .facts__item:first-child {
        padding: 10px;
    }

    .countdown {
        gap: 8px;
    }

    .countdown__item {
        padding: 10px 6px;
    }

    .countdown__item strong {
        font-size: 1rem;
    }
}

@media (max-height: 700px) {
    .hero {
        padding-bottom: 18px;
    }

    .hero__layout {
        padding-top: 88px;
        gap: 14px;
    }

    .hero__lead {
        font-size: 0.96rem;
    }

    .hero__chips span {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .button {
        min-height: 44px;
    }

    .countdown__item span {
        font-size: 0.68rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
