:root {
    --text: #ffffff;
    --focus: rgba(255, 255, 255, 0.9);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

@property --grad-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 11.69deg;
}

@property --grad-stop-a {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 20.92%;
}

@property --grad-stop-b {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 91.43%;
}

@property --rotateAngle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100%;
    background: #07155e;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    --grad-angle: 11.69deg;
    --grad-stop-a: 20.92%;
    --grad-stop-b: 91.43%;
    background: linear-gradient(var(--grad-angle),
    #2b4ecc var(--grad-stop-a),
    #07155e var(--grad-stop-b)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
    animation: gradientShift 18s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        --grad-angle: 0deg;
        --grad-stop-a: 14%;
        --grad-stop-b: 96%;
    }

    50% {
        --grad-angle: 18deg;
        --grad-stop-a: 26%;
        --grad-stop-b: 86%;
    }

    100% {
        --grad-angle: 34deg;
        --grad-stop-a: 32%;
        --grad-stop-b: 78%;
    }
}

@keyframes rotateGlow {
    to {
        --rotateAngle: 360deg;
    }
}

/* ============== INTRO ANIMATIONS ============== */

@keyframes introLogoZoom {
    0% {
        opacity: 1;
        transform: scale(2.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes introWordUp {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introFadeIn {
    to {
        opacity: 1;
    }
}

.topBar,
.heroTitle .word,
.heroDescription,
.searchBar,
.heroCtaWrap {
    opacity: 0;
}

.heroTitle .word {
    display: inline-block;
    will-change: transform, opacity;
}

.logoAutoiqWrap .logoAutoiq {
    opacity: 1;
    transform-origin: center center;
    animation: introLogoZoom 900ms cubic-bezier(0.86, 0, 0.07, 1) 0ms both;
}

.heroTitle .word {
    animation: introWordUp 300ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
    animation-delay: 800ms;
}

.heroDescription {
    animation: introWordUp 300ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
    animation-delay: 1000ms;
    max-width: 800px;
    margin: 0 auto;
    font-size: 19px;
}

.topBar {
    animation: introFadeIn 500ms ease-out 1200ms both;
}

.searchBar {
    animation: introFadeIn 600ms ease-out 1300ms both;
}

.heroCtaWrap {
    animation: introFadeIn 600ms ease-out 1500ms both;
}

/* ============== SCROLL REVEAL ============== */

@keyframes scrollRevealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollRevealLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollRevealRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollRevealScale {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.reveal,
.agendaList li,
.agendaTile {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 800ms ease-out, transform 800ms ease-out;
}

.reveal.reveal--left {
    transform: translateX(-60px);
}

.reveal.reveal--right {
    transform: translateX(60px);
}

.reveal.reveal--scale {
    transform: scale(0.92) translateY(20px);
}

.reveal.reveal--fade {
    transform: none;
}

body.intro-done .reveal,
body.intro-done .agendaList li,
body.intro-done .agendaTile {
    opacity: 1;
    transform: none;
}

@supports (animation-timeline: view()) {
    body.scroll-active .reveal {
        animation: scrollRevealUp linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 25%;
    }

    body.scroll-active .reveal.reveal--left {
        animation-name: scrollRevealLeft;
    }

    body.scroll-active .reveal.reveal--right {
        animation-name: scrollRevealRight;
    }

    body.scroll-active .reveal.reveal--scale {
        animation-name: scrollRevealScale;
    }

    body.scroll-active .reveal.reveal--fade {
        animation: none;
    }

    body.scroll-active .agendaList li {
        animation: scrollRevealRight linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    body.scroll-active .agendaTile {
        animation: scrollRevealScale linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    .agendaTile:nth-child(2),
    .agendaList li:nth-child(2) {
        animation-range: entry 5% cover 35%;
    }

    .agendaTile:nth-child(3),
    .agendaList li:nth-child(3) {
        animation-range: entry 10% cover 40%;
    }

    .agendaTile:nth-child(4),
    .agendaList li:nth-child(4) {
        animation-range: entry 15% cover 45%;
    }

    .agendaTile:nth-child(5) {
        animation-range: entry 20% cover 50%;
    }

    .agendaTile:nth-child(6) {
        animation-range: entry 25% cover 55%;
    }

    .agendaTile:nth-child(7) {
        animation-range: entry 30% cover 60%;
    }

    .agendaTile:nth-child(8) {
        animation-range: entry 35% cover 65%;
    }
}

@supports not (animation-timeline: view()) {
    .reveal,
    .agendaList li,
    .agendaTile {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::before {
        animation: none;
    }

    .heroCta::after {
        animation: none;
    }

    .topBar,
    .logoAutoiqWrap .logoAutoiq,
    .heroTitle .word,
    .heroDescription,
    .searchBar,
    .heroCtaWrap,
    .reveal,
    .agendaList li,
    .agendaTile {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

.bgImage {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: url("detail-autoiq.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: min(1100px, 92vw) auto;
    opacity: 0.35;
    pointer-events: none;
}

a {
    color: inherit;
}

.container {
    position: relative;
    z-index: 1;
    width: min(1040px, calc(100% - 48px));
    margin: 0 auto;
    padding: 32px 0 64px;
}

/* ============== SHARED GLASS BASE ============== */

.glass {
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 2.64px 5.28px 0 rgba(255, 255, 255, 0.40),
    inset 0 -2.64px 5.28px 0 rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(13.208px);
    -webkit-backdrop-filter: blur(13.208px);
    border-radius: 16px;
}

.gradStroke {
    position: relative;
}

.gradStroke::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.glowFrame {
    position: relative;
    isolation: isolate;
}

.glowFrame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
    box-shadow: 0 -18px 60px -6px rgba(46, 99, 242, 0.55),
    0 0 48px -4px rgba(46, 99, 242, 0.30),
    0 18px 60px -6px rgba(249, 105, 255, 0.55);
}

/* ============== SECTION 1: HERO ============== */

.topBar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.logoOtomoto {
    display: block;
    width: auto;
    max-width: 170px;
    height: auto;
}

.logoAutoiqWrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.logoAutoiq {
    display: block;
    width: 50%;
    max-width: 640px;
    height: auto;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

h1.heroTitle {
    font-weight: 700;
    font-style: normal;
    text-transform: none;
    line-height: 1.15;
    font-size: clamp(28px, 4.2vw, 44px);
    max-width: none;
    white-space: nowrap;
    margin: 0 auto 28px;
}

.searchBar {
    display: block;
    margin: 0 auto 40px;
    width: min(820px, 100%);
    height: auto;
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

.heroCtaWrap {
    display: flex;
    justify-content: center;
}

.heroCta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    padding: 28px 44px;
    border: 0;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    color: #ffffff;
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: transform 200ms ease;
}

.heroCta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
    rgba(46, 99, 242, 0.28) 0%,
    rgba(151, 102, 249, 0.20) 50%,
    rgba(249, 105, 255, 0.28) 100%);
    opacity: 0;
    transition: opacity 320ms ease;
    pointer-events: none;
}

.heroCta:hover::before {
    opacity: 1;
}

.heroCta::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(from var(--rotateAngle),
    #2546b9, #9766f9, #22d3ee, #ffffff,
    #22d3ee, #9766f9, #2546b9);
    -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateGlow 4s linear infinite;
    pointer-events: none;
}

.heroCta:hover {
    transform: translateY(-1px);
}

.heroCta:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

.heroCta .ctaIcon {
    width: 28px;
    height: auto;
    flex-shrink: 0;
}

.heroCta .ctaText {
    position: relative;
}

/* ============== SECTION 2 ============== */

.section2 {
    text-align: center;
    margin: 80px auto 0;
}

.dateBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 700;
    font-size: clamp(16px, 1.8vw, 20px);
    letter-spacing: 0.04em;
    margin: 0 auto 32px;
    box-shadow: inset 0 1px 1.5px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 1.5px 0 rgba(0, 0, 0, 0.12);
}

.sectionHeadline {
    margin: 0 auto 22px;
    font-weight: 900;
    font-style: italic;
    text-transform: none;
    line-height: 1.1;
    font-size: clamp(32px, 5.2vw, 56px);
    max-width: 24ch;
}

.lead {
    margin: 0 auto 28px;
    opacity: 0.96;
    font-weight: 500;
    line-height: 1.5;
    font-size: clamp(16px, 1.8vw, 19px);
    max-width: min(820px, 100%);
}

.detailMark {
    display: block;
    width: 36px;
    height: auto;
    margin: 24px auto 32px;
    opacity: 0.95;
}

/* ============== SECTION 3: COUNTDOWN ============== */

.countdownWrap {
    position: relative;
    max-width: 760px;
    margin: 80px auto 0;
    isolation: isolate;
}

.panel--countdown {
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22),
    inset 0 0 24px rgba(0, 0, 0, 0.12);
}

.panel--countdown::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.panel--countdown h2 {
    margin: 0 0 18px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 22px;
    text-align: center;
    opacity: 0.95;
}

.countdownGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.timeBox {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
}

.timeValue {
    font-weight: 900;
    font-style: italic;
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1;
    letter-spacing: 0.01em;
}

.timeLabel {
    margin-top: 8px;
    font-weight: 700;
    opacity: 0.92;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eventMeta {
    margin: 18px 0 0;
    opacity: 0.92;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 1.4;
    display: flex;
    gap: 8px 12px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.eventMeta span {
    white-space: nowrap;
}

.eventMeta .sep {
    opacity: 0.6;
}

.dealerPackBox {
    margin: 40px auto 0;
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg,
    rgba(46, 99, 242, 0.18) 0%,
    rgba(151, 102, 249, 0.12) 50%,
    rgba(249, 105, 255, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 1px 1.5px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 1.5px 0 rgba(0, 0, 0, 0.12);
    max-width: 570px;
}

.dealerPack {
    margin: 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
}

.dealerPack strong {
    font-weight: 900;
    font-style: italic;
}

/* ============== SECTION 4: AGENDA ============== */

.agendaSplit {
    display: grid;
    grid-template-columns: 40fr 60fr;
    gap: 48px;
    align-items: center;
    margin: 96px 0;
}

.agendaIconWrap {
    display: flex;
    justify-content: center;
}

.agendaIcon {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
}

.agendaTitle {
    margin: 0 0 24px;
    font-weight: 900;
    font-style: italic;
    text-transform: none;
    font-size: clamp(26px, 3.4vw, 36px);
    letter-spacing: 0.02em;
}

.agendaList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.agendaList li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 16px;
    align-items: start;
    position: relative;
    padding-bottom: 22px;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.96;
}

.agendaList li:last-child {
    padding-bottom: 0;
}

.agendaList li:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 18px;
    bottom: -2px;
    width: 2px;
    background: linear-gradient(180deg, #F969FF 0%, #2E63F2 100%);
    border-radius: 2px;
}

.agendaList .dotIcon {
    width: 14px;
    height: 14px;
    margin-top: 4px;
    display: block;
}

/* ============== SECTION 5 ============== */

.section5 {
    margin: 80px 0;
}

.section5 .sectionHeadline {
    text-align: center;
    margin-bottom: 32px;
}

.agendaGrid {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.agendaTile {
    position: relative;
    background: rgba(7, 21, 94, 0.10);
    border-radius: 14px;
    padding: 24px 24px;
    font-size: 16px;
    line-height: 1.55;
    opacity: 0.98;
}

.agendaIntro {
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: 18px;
    text-align: center;
}

/* ============== SECTION 5b: AUDIENCE ============== */

.audienceWrap {
    max-width: 760px;
    margin: 96px auto 0;
}

.audiencePanel {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 36px 32px;
}

.audiencePanel h2 {
    margin: 0 0 28px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: clamp(24px, 3.4vw, 32px);
    line-height: 1.15;
    text-align: center;
}

.audienceLead {
    margin: 0 0 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.95;
}

.audienceList {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.audienceList li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 14px;
    align-items: start;
    padding-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.audienceList li:last-child {
    padding-bottom: 0;
}

.audienceList .dotIcon {
    width: 14px;
    height: 14px;
    margin-top: 4px;
    display: block;
}

.audienceCallout {
    margin: 8px 0 0;
    padding: 18px 22px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    background: linear-gradient(135deg,
    rgba(46, 99, 242, 0.18) 0%,
    rgba(151, 102, 249, 0.12) 50%,
    rgba(249, 105, 255, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 1px 1.5px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 1.5px 0 rgba(0, 0, 0, 0.12);
}

.audienceCallout p {
    margin: 0;
}

/* ============== SECTION 6: FINAL ============== */

.finalSection {
    text-align: center;
    display: grid;
    gap: 28px;
    justify-items: center;
    margin-top: 96px;
}

.finalSection h2 {
    margin: 0;
    font-weight: 900;
    font-style: italic;
    text-transform: none;
    font-size: clamp(32px, 4.6vw, 50px);
    line-height: 1.1;
}

.finalSection .logoAutoiq {
    width: 40%;
    max-width: 520px;
    margin: 0;
}

.finalSection .heroCta {
    margin: 24px 0;
}

.finalSection p {
    margin: 0;
    max-width: 720px;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.55;
    opacity: 0.95;
}

.finalSpacer {
    height: 400px;
}

.finalSection .logoOtomoto {
    max-width: 170px;
}

/* ============== FORM / MODAL ============== */

form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.regInput {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.22);
    color: var(--text);
    font: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    outline: none;
}

.regInput::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.regInput:focus {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.checkboxRow {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0.9;
}

.checkboxRow input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #ffffff;
}

.checkboxRow span {
    line-height: 1.5;
    font-size: 11px;
    opacity: 0.95;
}

button[type="submit"] {
    font-size: 16px;
    border: 0;
    border-radius: 12px;
    padding: 13px 16px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    color: #ffffff;
    background: linear-gradient(82deg,
    #2E4FC0 0%,
    #2E4FC0 28.83%,
    #2E4FC0 80.97%,
    #3B63F3 100%);
    background-size: 180% 100%;
    background-position: 1% 50%;
    text-transform: uppercase;
    margin-top: 12px;
    box-shadow: 0 8px 24px rgba(151, 102, 249, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: transform 120ms ease, opacity 120ms ease,
    background-position 320ms ease, box-shadow 200ms ease;
}

button[type="submit"]:hover {
    transform: translateY(-1px);
    background-position: 100% 50%;
    box-shadow: 0 10px 28px rgba(34, 211, 238, 0.5);
}

button[type="submit"]:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}

button[type="submit"]:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.finePrint {
    margin-top: 14px;
    opacity: 0.85;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 400;
}

.status {
    min-height: 18px;
    font-size: 13px;
    font-weight: 700;
    opacity: 0.95;
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.turnstileWrap {
    display: flex;
    justify-content: center;
    min-height: 65px;
}

.submitReassurance {
    font-size: 14px;
    opacity: 0.9;
    line-height: 14px;
    margin-bottom: 10px;
    text-align: center;
}

.submitBtn {
    margin-top: 0 !important;
    width: 100%;
}

.status[data-variant="error"] {
    opacity: 1;
}

.thanks {
    display: none;
    margin-top: 8px;
    font-weight: 700;
    line-height: 1.5;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal[aria-hidden="false"] {
    display: flex;
}

.modalBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 11, 50, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: modalFade 200ms ease;
}

.modalDialog {
    position: relative;
    z-index: 1;
    width: min(540px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: linear-gradient(81.99deg,
    rgba(37, 70, 185, 0.35) 0%,
    rgba(151, 102, 249, 0.25) 60%,
    rgba(34, 211, 238, 0.2) 100%),
    rgba(7, 21, 94, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    padding: 32px 28px 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: modalIn 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modalDialog h2 {
    margin: 0 0 16px;
    font-weight: 900;
    font-style: italic;
    font-variant-caps: all-small-caps;
    text-transform: lowercase;
    letter-spacing: 0.06em;
    font-size: 24px;
    padding-right: 36px;
}

.modalClose {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    padding: 0;
    transition: background 160ms ease, transform 160ms ease;
}

.modalClose:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}

.modalClose:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

body.modal-open {
    overflow: hidden;
}

@keyframes modalFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {

    .modalBackdrop,
    .modalDialog {
        animation: none;
    }
}

/* ============== RESPONSIVE ============== */

@media (max-width: 720px) {
    .agendaSplit {
        grid-template-columns: 1fr;
        gap: 28px;
        margin: 64px 0;
    }

    .countdownGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .agendaGrid {
        grid-template-columns: 1fr;
    }

    .finalSpacer {
        height: 240px;
    }

    .heroCta {
        font-size: 18px;
        padding: 20px 28px;
    }

    .logoAutoiq {
        width: 70%;
    }

    .finalSection .logoAutoiq {
        width: 60%;
    }

    .countdownWrap {
        margin: 56px auto 0;
    }

    .section5,
    .finalSection {
        margin-top: 64px;
    }

    .section2 {
        margin-top: 64px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(960px, calc(100% - 32px));
        padding: 24px 0 48px;
    }

    .logoOtomoto {
        max-width: 130px;
    }

    h1.heroTitle {
        font-size: clamp(24px, 7.4vw, 32px);
        white-space: normal;
    }

    .heroDescription {
        font-size: 16px;
    }

    .heroCta {
        font-size: 16px;
        padding: 16px 22px;
    }

    .modal {
        padding: 16px;
    }

    .modalDialog {
        padding: 28px 20px 20px;
    }
}
