:root {
    --brand: #ff3045;
    --brand-2: #ff6576;
    --brand-soft: #ff7a88;
    --accent-blue: #7bbdff;
    --accent-warm: #ffe6a8;
    --ink: #101828;
    --ink-soft: #536179;
    --muted: #7c879a;
    --line: rgba(17, 24, 39, .08);
    --glass: rgba(255, 255, 255, .70);
    --glass-soft: rgba(255, 255, 255, .42);
    --shadow: 0 24px 58px rgba(47, 66, 104, .08);
    --shadow-soft: 0 14px 30px rgba(47, 66, 104, .06);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --ease: cubic-bezier(.2, .8, .2, 1);
    --font-main: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --site-max: 1152px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: #fbfdff;
}

body {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--ink);
    font-family: var(--font-main);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    background: transparent;
}

.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
    background: #fff;
    pointer-events: none;
}

.bg-blob {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .36;
    pointer-events: none;
}

.blob-1 {
    top: -10%;
    left: -6%;
    width: 460px;
    height: 460px;
    background: var(--brand);
}

.blob-2 {
    top: 30%;
    right: -10%;
    width: 560px;
    height: 560px;
    background: var(--accent-blue);
    opacity: .25;
}

.blob-3 {
    bottom: -12%;
    left: 15%;
    width: 430px;
    height: 430px;
    background: var(--accent-warm);
    opacity: .28;
}

body.modal-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

section {
    position: relative;
    scroll-margin-top: 110px;
}

.floating-pill-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    z-index: 7000;
    width: min(var(--site-max), calc(100vw - 48px));
    height: 66px;
    padding: 0 22px;
    display: grid;
    grid-template-columns: 158px minmax(0, 1fr) 158px;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, .70);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .76), 0 18px 42px rgba(52, 73, 110, .07);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    transform: translateX(-50%);
}

.brand-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.menu-logo {
    width: 126px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 12px rgba(17, 24, 39, .08));
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
}

.nav-links li a,
.nav-links li button {
    position: relative;
    min-height: 40px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    color: rgba(17, 24, 39, .78);
    background: transparent;
    font-size: .94rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s ease;
}

.nav-links li a i {
    color: rgba(17, 24, 39, .56);
    font-size: .95rem;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 6px 16px rgba(255, 48, 69, .24);
    opacity: 0;
    transform: translateX(-50%);
    transition: width .2s ease, opacity .2s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--ink);
}

.nav-links li a.active {
    background: rgba(255, 255, 255, .50);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78), 0 10px 24px rgba(47, 66, 104, .06);
}

.nav-links li a:hover::after {
    width: 18px;
    opacity: .55;
}

.nav-links li a.active::after {
    width: 26px;
    opacity: 1;
}

.mobile-dock-action,
.mobile-dock-popover {
    display: none;
}

.floating-apply-btn,
.hero-primary,
.submit-btn,
.modal-submit,
.vision-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 16px 34px rgba(255, 48, 69, .24);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-apply-btn:hover,
.hero-primary:hover,
.submit-btn:hover,
.modal-submit:hover,
.vision-pill-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(255, 48, 69, .30);
}

.floating-apply-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 6900;
    min-height: 52px;
    padding: 6px 18px 6px 6px;
    font-size: .92rem;
    white-space: nowrap;
    overflow: hidden;
}

.icon-circle {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .24);
}

.floating-apply-btn .icon-circle {
    flex: 0 0 40px;
    color: #fff;
}

.floating-apply-label,
.floating-apply-short {
    color: #fff;
}

.floating-apply-short {
    display: none;
}

.hero-secondary,
.section-kicker,
.assistant-mini,
.event-badge,
.card-chip,
.box-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    width: fit-content;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 999px;
    color: var(--brand);
    background: rgba(255, 255, 255, .46);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .68), 0 10px 28px rgba(47, 66, 104, .06);
    font-size: .86rem;
    font-weight: 900;
    text-decoration: none;
}

.slider-section {
    width: 100%;
    padding: 120px 0 54px;
    overflow: hidden;
}

.mySwiper {
    width: 100%;
    overflow: visible;
}

.mySwiper .swiper-slide {
    width: min(1320px, calc(100vw - 86px));
    opacity: .34;
    transition: opacity .35s ease, transform .35s ease;
}

.mySwiper .swiper-slide-active {
    opacity: 1;
}

.slide-content {
    min-height: 578px;
    display: grid;
    grid-template-columns: minmax(360px, .72fr) minmax(620px, 1.28fr);
    align-items: center;
    gap: clamp(38px, 5vw, 72px);
    padding: clamp(38px, 4.5vw, 58px);
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .22));
    box-shadow: 0 24px 58px rgba(47, 66, 104, .08);
}

.text-zone h1 {
    margin: 22px 0 20px;
    color: var(--ink);
    font-size: clamp(3.25rem, 5.2vw, 5.25rem);
    line-height: .98;
    letter-spacing: 0;
    font-weight: 900;
}

.text-zone p {
    max-width: 560px;
    color: var(--ink-soft);
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.vision-box {
    width: min(450px, 100%);
    margin-top: 26px;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .56);
    box-shadow: var(--shadow-soft);
}

.vision-box .box-title {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--muted);
    font-size: .78rem;
}

.countdown {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.countdown div {
    min-height: 62px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, .56);
}

.countdown .num {
    color: var(--ink);
    font-size: 1.8rem;
    font-weight: 950;
}

.countdown .label {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 900;
}

.glass-card {
    position: relative;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 34px;
    background: rgba(255, 255, 255, .56);
    box-shadow: 0 22px 56px rgba(47, 66, 104, .12);
}

.glass-card img {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    border-radius: 24px;
    object-fit: cover;
    background: rgba(255, 255, 255, .52);
}

.card-chip {
    position: absolute;
    z-index: 2;
    color: var(--brand);
    background: rgba(255, 255, 255, .88);
    border-color: rgba(255, 255, 255, .86);
    box-shadow: 0 12px 28px rgba(47, 66, 104, .12);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.card-chip-top {
    top: 0;
    left: 36px;
}

.card-chip-bottom {
    right: 26px;
    bottom: 36px;
}

.glass-arrow {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50%;
    color: var(--ink) !important;
    background: rgba(255, 255, 255, .68);
    box-shadow: var(--shadow-soft);
}

.glass-arrow::after {
    font-size: 1.05rem !important;
}

.swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 22px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(17, 24, 39, .18) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 999px;
    background: var(--brand) !important;
}

.assistant-section,
.features-section,
.speakers-section,
.stats-section,
.testimonials-section,
.volunteer-section,
.vision-footer-section {
    padding: clamp(58px, 6vw, 92px) 20px;
    scroll-margin-top: 110px;
}

.assistant-wrapper,
.features-container,
.speakers-container,
.stats-container,
.testimonials-container,
.volunteer-container,
.vision-footer-glass {
    width: min(var(--site-max), 100%);
    margin: 0 auto;
}

.assistant-wrapper.ai-engine-shell {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(500px, .88fr);
    align-items: center;
    gap: clamp(38px, 5vw, 64px);
    padding: clamp(40px, 4.2vw, 56px);
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .54), rgba(255, 255, 255, .20));
    box-shadow: 0 22px 54px rgba(47, 66, 104, .075);
}

.ai-copy h2 {
    max-width: 670px;
    margin: 24px 0 20px;
    color: var(--ink);
    font-size: clamp(3rem, 3.6vw, 4.15rem);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 900;
}

.ai-copy h2 span {
    color: var(--brand);
}

.ai-copy p {
    max-width: 650px;
    color: var(--ink-soft);
    font-size: 1.06rem;
    line-height: 1.72;
}

.ai-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.assistant-features {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-box,
.ai-mini-card {
    min-height: 132px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 24px;
    background: rgba(255, 255, 255, .50);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .62), 0 12px 28px rgba(47, 66, 104, .055);
}

.feature-box i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--brand);
    background: rgba(255, 255, 255, .46);
    font-size: 1.18rem;
}

.feature-box span {
    display: block;
    margin-top: 14px;
    color: var(--ink);
    font-weight: 950;
    line-height: 1.3;
}

.feature-box small {
    display: block;
    margin-top: 8px;
    color: var(--ink-soft);
    font-weight: 750;
    line-height: 1.45;
}

.assistant-panel {
    width: min(560px, 100%);
    justify-self: end;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 30px;
    background: rgba(255, 255, 255, .64);
    box-shadow: 0 22px 50px rgba(47, 66, 104, .08);
}

.assistant-topbar {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
}

.assistant-mark,
.chat-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 14px 28px rgba(255, 48, 69, .20);
}

.assistant-topbar h3 {
    margin-bottom: 4px;
    font-size: 1.16rem;
}

.assistant-topbar small {
    color: var(--muted);
    font-weight: 800;
}

.assistant-thread {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 24px;
}

.bubble,
.chat-bubble {
    width: fit-content;
    max-width: 88%;
    padding: 15px 17px;
    border-radius: 20px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 12px 28px rgba(47, 66, 104, .08);
    font-weight: 850;
    line-height: 1.55;
}

.bubble-soft,
.chat-bubble.bot {
    background: rgba(255, 255, 255, .86);
}

.bubble-brand,
.chat-bubble.user {
    align-self: flex-end;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.choice-row button {
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .60);
    border-radius: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 22px rgba(47, 66, 104, .06);
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.choice-row button:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    transform: translateY(-1px);
}

.assistant-composer,
.chat-input {
    display: flex;
    gap: 10px;
    padding: 0 24px 24px;
}

.assistant-composer input,
.chat-input input {
    flex: 1;
    min-width: 0;
    height: 52px;
    border: 0;
    outline: 0;
    border-radius: 17px;
    color: var(--ink);
    background: rgba(245, 247, 252, .92);
    padding: 0 16px;
    font-weight: 800;
}

.send-dot {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    cursor: pointer;
}

.features-container {
    display: grid;
    gap: 24px;
}

.feature-glass-panel {
    display: grid;
    grid-template-columns: minmax(280px, .76fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: center;
    padding: clamp(24px, 3.2vw, 38px);
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 28px;
    background: rgba(255, 255, 255, .50);
    box-shadow: var(--shadow-soft);
}

.feature-image-wrapper img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    border-radius: 22px;
    object-fit: cover;
}

.feature-text h2,
.volunteer-content h2 {
    margin-bottom: 18px;
    color: var(--ink);
    font-size: clamp(2.1rem, 3vw, 3.1rem);
    line-height: 1.1;
    font-weight: 950;
}

.feature-text p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.68;
}

.feature-text p + p {
    margin-top: 18px;
}

.speakers-header,
.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.speakers-header h2,
.testimonials-header h2 {
    max-width: 760px;
    color: var(--ink);
    font-size: clamp(2.1rem, 3.6vw, 3.4rem);
    line-height: 1.08;
    font-weight: 950;
}

.year-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .64);
    border-radius: 999px;
    background: rgba(255, 255, 255, .44);
    box-shadow: var(--shadow-soft);
}

.year-tab-btn {
    min-width: 82px;
    min-height: 38px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(17, 24, 39, .62);
    background: transparent;
    font-weight: 950;
    cursor: pointer;
}

.year-tab-btn.active,
.year-tab-btn[aria-pressed="true"] {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 12px 26px rgba(255, 48, 69, .20);
}

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

.speaker-grid.active {
    display: grid;
}

.speaker-grid:not(.expanded) .speaker-card:nth-child(n+9) {
    display: none;
}

.speaker-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 24px;
    background: rgba(255, 255, 255, .66);
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease;
}

.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(47, 66, 104, .12);
}

.speaker-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.speaker-info {
    min-height: 104px;
    padding: 16px;
}

.speaker-name {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 950;
}

.speaker-title {
    color: var(--ink-soft);
    font-size: .9rem;
    line-height: 1.45;
}

.speakers-more-btn {
    min-height: 48px;
    margin: 26px auto 0;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, .54);
    box-shadow: var(--shadow-soft);
    font-weight: 900;
    cursor: pointer;
}

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

.stat-glass-card {
    min-height: 280px;
    padding: 28px 26px;
    display: grid;
    justify-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 30px;
    background: rgba(255, 255, 255, .56);
    box-shadow: var(--shadow-soft);
}

.stat-icon {
    color: rgba(17, 24, 39, .76);
    font-size: 2.1rem;
}

.stat-glass-card h3 {
    margin-top: 16px;
    font-size: 1.15rem;
    font-weight: 950;
}

.stat-glass-card p {
    color: var(--muted);
}

.stat-main-num {
    margin: 16px 0;
    color: var(--ink);
    font-size: clamp(3rem, 4.2vw, 4.25rem);
    font-weight: 950;
}

.stat-sub-grid {
    width: 100%;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    border-top: 1px solid var(--line);
}

.sub-num {
    display: block;
    color: var(--ink);
    font-size: 1.45rem;
    font-weight: 950;
}

.sub-label {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.testi-nav {
    display: flex;
    gap: 12px;
}

.testi-arrow {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, .52);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.testi-arrow:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    transform: translateY(-2px);
}

.testimonials-swiper {
    overflow: hidden;
    padding: 6px 2px 16px;
}

.testimonials-swiper .swiper-slide {
    opacity: 1;
    transition: none;
}

.testi-card {
    min-height: 218px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 28px;
    background: rgba(255, 255, 255, .56);
    box-shadow: 0 16px 36px rgba(47, 66, 104, .07);
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 48, 69, .08);
}

.testi-name {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 950;
}

.testi-divider {
    height: 1px;
    margin: 22px 0;
    background: var(--line);
}

.testi-text {
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.72;
}

.volunteer-container {
    min-height: 420px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
    gap: 42px;
    align-items: center;
    padding: clamp(32px, 5vw, 56px);
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 32px;
    background: rgba(255, 255, 255, .50);
    box-shadow: 0 22px 52px rgba(47, 66, 104, .075);
}

.volunteer-stack-wrapper {
    position: relative;
    min-height: 310px;
}

.stack-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(360px, 76%);
    border: 10px solid rgba(255, 255, 255, .74);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform .28s ease, opacity .28s ease;
}

.stack-card img {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
}

.card-pos-1 { z-index: 3; opacity: 1; transform: translate(-50%, -50%) rotate(-3deg); }
.card-pos-2 { z-index: 2; opacity: .82; transform: translate(-38%, -48%) rotate(6deg) scale(.94); }
.card-pos-3 { z-index: 1; opacity: .62; transform: translate(-26%, -46%) rotate(13deg) scale(.88); }

.vision-footer-section {
    padding-bottom: 30px;
}

.vision-footer-glass {
    padding: clamp(30px, 4vw, 44px);
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 30px;
    background: rgba(255, 255, 255, .50);
    box-shadow: var(--shadow-soft);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) 180px 220px;
    justify-content: space-between;
    gap: clamp(34px, 7vw, 110px);
    align-items: start;
    margin-bottom: 30px;
}

.footer-col {
    display: grid;
    align-content: start;
    justify-items: start;
}

.footer-logo-glass {
    width: 128px;
    margin-bottom: 18px;
}

.footer-desc {
    max-width: 390px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.footer-socials {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.social-pill {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .54);
    text-decoration: none;
}

.footer-title {
    margin-bottom: 14px;
    font-size: 1rem;
    font-weight: 950;
}

.vision-links {
    display: grid;
    gap: 9px;
    list-style: none;
}

.vision-links a {
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, .42);
    font-weight: 750;
    text-decoration: none;
}

.vision-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    font-size: .9rem;
}

.about-section,
.contact-section,
.error-section {
    width: min(1180px, calc(100% - 40px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 128px 0 60px;
}

.about-hero-panel,
.contact-glass,
.error-glass {
    padding: clamp(30px, 5vw, 56px);
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 34px;
    background: rgba(255, 255, 255, .56);
    box-shadow: 0 22px 54px rgba(47, 66, 104, .075);
}

.about-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    gap: 42px;
    align-items: center;
}

.about-hero-copy h1,
.contact-header h1,
.error-glass h1 {
    margin: 20px 0 18px;
    color: var(--ink);
    font-size: clamp(2.6rem, 4vw, 4.8rem);
    line-height: 1.05;
    font-weight: 950;
}

.about-hero-copy p,
.contact-header p,
.error-glass p {
    max-width: 680px;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.75;
}

.about-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-hero-media img {
    width: 100%;
    border-radius: 26px;
    object-fit: cover;
}

.about-story-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-story-card {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 26px;
    background: rgba(255, 255, 255, .50);
    box-shadow: var(--shadow-soft);
}

.about-story-card i {
    color: var(--brand);
    font-size: 1.7rem;
}

.about-story-card h2 {
    margin: 16px 0 12px;
    font-size: 1.28rem;
}

.about-story-card p {
    color: var(--ink-soft);
    line-height: 1.65;
}

.action-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-weight: 900;
    text-decoration: none;
}

.contact-section {
    display: grid;
    place-items: center;
}

.contact-glass {
    width: min(980px, 100%);
}

.contact-header {
    display: grid;
    gap: 14px;
}

.email-box {
    margin-top: 20px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .52);
    color: var(--ink);
    font-weight: 850;
    text-decoration: none;
}

.contact-quick-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-quick-card {
    min-height: 120px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .54), rgba(255, 255, 255, .24));
    box-shadow: 0 14px 30px rgba(47, 66, 104, .06);
}

.contact-quick-card i {
    color: var(--brand);
    font-size: 1.25rem;
}

.contact-quick-card strong,
.contact-quick-card span {
    display: block;
}

.contact-quick-card strong {
    margin-top: 12px;
    color: var(--ink);
    font-size: 1.02rem;
}

.contact-quick-card span {
    margin-top: 6px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.custom-form {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.custom-form .input-group:nth-child(4) {
    grid-column: 1 / -1;
}

.custom-form .submit-btn {
    justify-self: start;
    min-width: 220px;
}

.input-group {
    display: grid;
    gap: 8px;
}

.input-group label,
.apply-form label {
    color: var(--ink);
    font-weight: 900;
}

.liquid-input,
.custom-form textarea,
.apply-form input,
.apply-form select,
.apply-form textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 16px;
    outline: 0;
    color: var(--ink);
    background: rgba(255, 255, 255, .58);
    padding: 0 16px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.apply-form input:hover,
.apply-form select:hover,
.apply-form textarea:hover {
    background: rgba(255, 255, 255, .72);
    border-color: rgba(255, 255, 255, .84);
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
    background: rgba(255, 255, 255, .88);
    border-color: rgba(255, 48, 69, .35);
    box-shadow: 0 0 0 4px rgba(255, 48, 69, .10);
}

.custom-form textarea {
    min-height: 130px;
    padding-top: 14px;
    resize: vertical;
}

.error-message {
    display: none;
    color: var(--brand);
    font-size: .84rem;
    font-weight: 800;
}

#successMessage {
    display: none;
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    text-align: center;
    font-weight: 900;
}

.apply-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s var(--ease);
}

.apply-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.apply-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(244, 248, 255, .58);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    opacity: 0;
    transition: opacity .24s var(--ease);
}

.apply-modal.active .apply-modal-backdrop {
    opacity: 1;
}

.apply-dialog {
    position: relative;
    z-index: 1;
    width: min(600px, calc(100vw - 28px));
    max-height: min(720px, calc(100dvh - 34px));
    overflow: auto;
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 32px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(18px) scale(.96);
    transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.apply-modal.active .apply-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, .58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), 0 12px 26px rgba(47, 66, 104, .08);
    cursor: pointer;
    overflow: hidden;
    transition: transform .22s var(--ease), color .22s ease, background .22s ease, box-shadow .22s ease;
}

.modal-close::before {
    display: none;
}

.modal-close i {
    position: relative;
    z-index: 1;
    font-size: .98rem;
    transition: transform .22s var(--ease);
}

.modal-close:hover,
.modal-close:focus-visible {
    color: var(--brand);
    background: rgba(255, 255, 255, .88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96), 0 16px 32px rgba(47, 66, 104, .12);
    transform: translateY(-1px);
    outline: 0;
}

.modal-close:hover::before,
.modal-close:focus-visible::before {
    opacity: 0;
    transform: none;
}

.modal-close:hover i,
.modal-close:focus-visible i {
    transform: none;
}

.apply-dialog h2 {
    margin: 20px 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 950;
}

.apply-dialog p {
    color: var(--ink-soft);
    line-height: 1.65;
}

.apply-form {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.apply-form label {
    display: grid;
    gap: 8px;
}

.native-select-proxy {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    opacity: 0;
    pointer-events: none;
}

.custom-select {
    position: relative;
}

.custom-select-trigger {
    width: 100%;
    min-height: 52px;
    padding: 0 14px 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 16px;
    color: rgba(83, 97, 121, .78);
    background: linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .38));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78), 0 10px 24px rgba(47, 66, 104, .04);
    text-align: left;
    font-weight: 850;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.custom-select.has-value .custom-select-trigger {
    color: var(--ink);
}

.custom-select-trigger i {
    color: var(--brand);
    transition: transform .2s ease;
}

.custom-select.is-open .custom-select-trigger {
    border-color: rgba(255, 48, 69, .35);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 0 0 4px rgba(255, 48, 69, .08), 0 18px 36px rgba(47, 66, 104, .10);
}

.custom-select.is-open .custom-select-trigger i {
    transform: rotate(180deg);
}

.custom-select.is-invalid .custom-select-trigger {
    border-color: rgba(255, 48, 69, .46);
}

.custom-select-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    max-height: 238px;
    overflow-y: auto;
    display: grid;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78));
    box-shadow: 0 24px 56px rgba(47, 66, 104, .17);
    backdrop-filter: blur(20px) saturate(165%);
    -webkit-backdrop-filter: blur(20px) saturate(165%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top;
    transition: opacity .18s ease, transform .18s ease;
}

.custom-select.is-open .custom-select-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.custom-select-option {
    min-height: 42px;
    padding: 0 12px;
    border: 0;
    border-radius: 13px;
    color: var(--ink);
    background: transparent;
    text-align: left;
    font-weight: 850;
    cursor: pointer;
    transition: background .16s ease, color .16s ease, transform .16s ease;
}

.custom-select-option:hover,
.custom-select-option:focus,
.custom-select-option.is-selected {
    color: var(--brand);
    background: linear-gradient(135deg, rgba(255, 48, 69, .09), rgba(255, 255, 255, .64));
    outline: 0;
}

.custom-select-option:active {
    transform: scale(.985);
}

.custom-select-option.is-placeholder {
    color: var(--muted);
}

.onboarding-dialog {
    width: min(840px, calc(100vw - 28px));
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .90), rgba(255, 255, 255, .72));
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.onboarding-head {
    padding: clamp(24px, 3.2vw, 34px) clamp(22px, 4vw, 42px) clamp(16px, 2.4vw, 22px);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .36);
}

.onboarding-head h2 {
    max-width: 650px;
    margin: 18px 0 12px;
    font-size: clamp(2.25rem, 4.4vw, 3.45rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.onboarding-form {
    max-height: min(58vh, 540px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 20px clamp(18px, 4vw, 34px) 0;
}

.form-section {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .64);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .56), rgba(255, 255, 255, .30));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74), 0 14px 32px rgba(47, 66, 104, .04);
}

.section-line {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 950;
}

.section-line span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    font-size: .82rem;
}

.span-2 {
    grid-column: 1 / -1;
}

.section-help,
.micro-note {
    color: var(--ink-soft);
    line-height: 1.55;
}

.conditional-field {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: grid-template-rows .26s var(--ease), opacity .22s ease, transform .22s ease;
}

.conditional-field.is-visible {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
}

.conditional-field > * {
    min-height: 0;
}

.conditional-grid,
.preference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.preference-grid {
    display: grid;
    margin-top: 12px;
}

.permission-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .64);
    border-radius: 20px;
    background: rgba(255, 255, 255, .58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .76);
}

.check-line {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 10px !important;
    color: var(--ink-soft);
    font-weight: 750 !important;
    line-height: 1.45;
}

.check-line input {
    width: 20px;
    min-height: 20px;
    margin-top: 1px;
    accent-color: var(--brand);
}

.kvkk-link {
    color: var(--brand);
    font-weight: 950;
}

.modal-submit-shell {
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding: 14px 0 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .94) 34%);
}

.motivation-section textarea,
.conditional-field textarea {
    min-height: 118px;
    padding-top: 14px;
    resize: none;
}

.motivation-meter {
    display: grid;
    gap: 8px;
}

.meter-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(17, 24, 39, .08);
}

.meter-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    transition: width .2s ease;
}

.meter-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink-soft);
    font-size: .88rem;
}

.moderation-feedback {
    min-height: 18px;
    color: var(--brand);
    font-weight: 850;
}

.kvkk-dialog {
    width: min(640px, calc(100vw - 28px));
}

.kvkk-content {
    max-height: min(52vh, 420px);
    overflow-y: auto;
    display: grid;
    gap: 14px;
    margin-top: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
}

.onboarding-success {
    margin: 28px clamp(18px, 4vw, 40px) clamp(22px, 4vw, 40px);
    padding: 28px;
    text-align: center;
    justify-items: center;
}

.onboarding-success i {
    font-size: 2rem;
}

.success-close {
    min-height: 44px;
    margin-top: 12px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: var(--brand);
    background: rgba(255, 255, 255, .88);
    font-weight: 950;
    cursor: pointer;
}

.apply-form .submit-btn,
.apply-form .modal-submit {
    grid-column: 1 / -1;
    width: 100%;
}

.apply-success {
    display: none;
    gap: 8px;
    margin-top: 22px;
    padding: 18px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.volunteer-modal .apply-dialog {
    width: min(900px, calc(100vw - 28px));
}

.volunteer-dialog .onboarding-head h2 {
    max-width: 660px;
    font-size: clamp(2.15rem, 4vw, 3.25rem);
}

.volunteer-dialog .onboarding-head p {
    max-width: 680px;
    font-size: .98rem;
}

.volunteer-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px clamp(18px, 4vw, 34px);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .34);
}

.volunteer-benefit {
    min-height: 86px;
    padding: 14px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .64);
    border-radius: 18px;
    background: rgba(255, 255, 255, .48);
    color: var(--ink-soft);
    font-weight: 800;
    line-height: 1.35;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .70), 0 12px 28px rgba(47, 66, 104, .04);
    transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease;
}

.volunteer-benefit i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--brand);
    background: rgba(255, 48, 69, .08);
    font-size: 1.12rem;
}

.volunteer-benefit strong {
    display: block;
    color: var(--ink);
    font-size: .92rem;
    line-height: 1.25;
}

.volunteer-benefit span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 750;
}

.volunteer-benefit:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82), 0 18px 34px rgba(47, 66, 104, .08);
}

.error-section {
    display: grid;
    place-items: center;
}

.error-glass {
    max-width: 720px;
    text-align: center;
}

.error-glass h1 {
    color: var(--brand);
    font-size: clamp(5rem, 10vw, 9rem);
}

.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .slide-content,
    .assistant-wrapper.ai-engine-shell,
    .feature-glass-panel,
    .volunteer-container,
    .about-hero-panel {
        grid-template-columns: 1fr;
    }

    .assistant-panel {
        justify-self: stretch;
        width: 100%;
    }

    .speaker-grid,
    .stats-container,
    .about-story-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 761px) and (max-height: 820px) {
    .floating-apply-btn {
        min-height: 50px;
        padding: 6px 16px 6px 6px;
        gap: 9px;
        color: #fff;
    }

    .floating-apply-label {
        display: none;
    }

    .floating-apply-short {
        display: inline;
    }

    .floating-apply-btn:hover,
    .floating-apply-btn:focus-visible {
        width: auto;
        color: #fff;
    }
}

@media (max-width: 820px) {
    body {
        padding-bottom: calc(86px + env(safe-area-inset-bottom));
    }

    section {
        scroll-margin-top: 24px;
    }

    .floating-pill-nav {
        inset: 10px 0 auto;
        width: 100%;
        height: auto;
        padding: 0;
        display: flex;
        justify-content: center;
        transform: none;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .brand-link {
        position: fixed;
        top: calc(10px + env(safe-area-inset-top));
        left: 14px;
        z-index: 7100;
        width: 126px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, .72);
        border-radius: 999px;
        background: rgba(255, 255, 255, .58);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), 0 16px 34px rgba(47, 66, 104, .12);
        backdrop-filter: blur(22px) saturate(170%);
        -webkit-backdrop-filter: blur(22px) saturate(170%);
    }

    .menu-logo {
        width: 94px;
        height: auto;
    }

    .nav-links {
        position: fixed;
        left: 50%;
        bottom: max(8px, env(safe-area-inset-bottom));
        z-index: 7000;
        width: min(348px, calc(100vw - 24px));
        height: 72px;
        display: grid;
        grid-template-columns: repeat(5, 50px);
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 8px 12px;
        border: 1px solid rgba(255, 255, 255, .72);
        border-radius: 999px;
        background: rgba(255, 255, 255, .66);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .88),
            inset 0 -18px 32px rgba(255, 255, 255, .24),
            0 18px 44px rgba(50, 72, 112, .18);
        backdrop-filter: blur(28px) saturate(185%);
        -webkit-backdrop-filter: blur(28px) saturate(185%);
        transform: translateX(-50%);
        overflow: hidden;
    }

    .nav-links::before {
        content: "";
        position: absolute;
        inset: 1px;
        border-radius: inherit;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(255, 255, 255, .58), transparent 48%);
        opacity: .68;
    }

    .nav-links li {
        width: 50px;
        min-width: 0;
        height: 58px;
        display: grid;
        place-items: center;
        line-height: 0;
        overflow: hidden;
    }

    .nav-links li.mobile-dock-secondary {
        display: none;
    }

    .mobile-dock-action {
        display: grid;
    }

    .nav-links li a,
    .nav-links li button {
        width: 44px;
        min-width: 44px;
        max-width: 44px;
        flex: 0 0 44px;
        height: 44px;
        min-height: 44px;
        max-height: 44px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        border: 1px solid transparent;
        border-radius: 17px;
        background: transparent;
        box-shadow: none;
        font-size: 0;
        line-height: 0;
        white-space: nowrap;
        overflow: hidden;
        transform: translateZ(0);
    }

    .nav-links li a i,
    .nav-links li button i {
        display: block;
        flex: 0 0 auto;
        color: rgba(17, 24, 39, .76);
        font-size: 1.05rem;
        line-height: 1;
        transform: translateY(0);
    }

    .nav-links li a {
        text-indent: -999px;
    }

    .nav-links li a i {
        text-indent: 0;
    }

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

    .nav-links li a.active,
    .nav-links li .mobile-dock-plus[aria-expanded="true"] {
        width: 42px;
        min-width: 42px;
        max-width: 42px;
        height: 42px;
        min-height: 42px;
        max-height: 42px;
        padding: 0;
        border-radius: 16px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, .24));
        border-color: rgba(255, 255, 255, .48);
        box-shadow: none;
    }

    .nav-links li .mobile-dock-plus {
        width: 50px;
        min-width: 50px;
        max-width: 50px;
        flex-basis: 50px;
        height: 50px;
        min-height: 50px;
        max-height: 50px;
        border-radius: 19px;
        background: transparent;
        border-color: transparent;
        box-shadow: none;
        transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s var(--ease);
    }

    .nav-links li .mobile-dock-plus i {
        color: rgba(17, 24, 39, .74);
        font-size: 1.36rem;
    }

    .nav-links li .mobile-dock-plus[aria-expanded="true"] {
        width: 50px;
        min-width: 50px;
        max-width: 50px;
        height: 50px;
        min-height: 50px;
        max-height: 50px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, .18));
        border-color: rgba(255, 255, 255, .36);
        box-shadow: none;
        transform: none;
    }

    .mobile-dock-popover {
        position: fixed;
        left: 50%;
        bottom: calc(94px + env(safe-area-inset-bottom));
        z-index: 7010;
        width: min(268px, calc(100vw - 36px));
        display: grid;
        gap: 8px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, .62);
        border-radius: 22px;
        background: rgba(255, 255, 255, .82);
        box-shadow: none;
        backdrop-filter: blur(20px) saturate(160%);
        -webkit-backdrop-filter: blur(20px) saturate(160%);
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, 10px) scale(.96);
        transform-origin: bottom center;
        transition: opacity .2s ease, transform .2s var(--ease);
    }

    .mobile-dock-popover.active {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0) scale(1);
    }

    .mobile-dock-popover::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -7px;
        width: 14px;
        height: 14px;
        background: rgba(255, 255, 255, .90);
        transform: translateX(-50%) rotate(45deg);
    }

    .dock-popover-item {
        min-height: 48px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        border: 0;
        border-radius: 16px;
        color: var(--ink);
        background: rgba(255, 255, 255, .36);
        font-weight: 900;
        text-decoration: none;
        cursor: pointer;
        transition: transform .18s var(--ease), background .18s ease, color .18s ease;
    }

    .dock-popover-item i {
        color: var(--brand);
    }

    .dock-popover-item:hover,
    .dock-popover-item:focus-visible {
        color: var(--brand);
        background: rgba(255, 255, 255, .58);
        transform: none;
        outline: 0;
    }

    .floating-apply-btn {
        display: none;
    }

    .slider-section {
        padding: 22px 0 30px;
    }

    .mySwiper .swiper-slide {
        width: min(430px, calc(100vw - 22px));
    }

    .slide-content {
        min-height: 0;
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
        padding: 22px;
        border-radius: 28px;
        text-align: center;
    }

    .event-badge,
    .section-kicker,
    .assistant-mini {
        margin-left: auto;
        margin-right: auto;
    }

    .text-zone h1 {
        font-size: clamp(2.4rem, 11vw, 3.35rem);
    }

    .text-zone p {
        font-size: 1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .glass-card {
        width: 100%;
        padding: 9px;
        border-radius: 24px;
    }

    .glass-card img {
        border-radius: 18px;
    }

    .card-chip-top {
        left: 16px;
    }

    .card-chip-bottom {
        right: 16px;
        bottom: 18px;
    }

    .glass-arrow {
        display: none !important;
    }

    .assistant-section,
    .features-section,
    .speakers-section,
    .stats-section,
    .testimonials-section,
    .volunteer-section,
    .vision-footer-section {
        padding: 42px 12px;
    }

    .assistant-wrapper.ai-engine-shell {
        padding: 24px 18px;
        border-radius: 28px;
        gap: 26px;
    }

    .ai-copy h2 {
        font-size: clamp(2.05rem, 8.2vw, 2.65rem);
    }

    .ai-action-row {
        display: none;
    }

    .assistant-features,
    .stats-container,
    .speaker-grid,
    .about-story-grid,
    .contact-quick-grid,
    .custom-form,
    .footer-grid,
    .apply-form {
        grid-template-columns: 1fr;
    }

    .custom-form .submit-btn {
        width: 100%;
        justify-self: stretch;
    }

    .assistant-thread {
        min-height: 290px;
        padding: 18px;
    }

    .assistant-composer {
        padding: 0 18px 18px;
    }

    .feature-glass-panel,
    .volunteer-container {
        padding: 22px;
        border-radius: 28px;
    }

    .speakers-header,
    .testimonials-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .year-tabs {
        width: 100%;
    }

    .year-tab-btn {
        flex: 1;
        min-width: 0;
    }

    .speaker-img {
        height: 230px;
    }

    .stat-glass-card {
        min-height: 260px;
    }

    .volunteer-stack-wrapper {
        min-height: 270px;
    }

    .vision-footer-section {
        padding-bottom: calc(84px + env(safe-area-inset-bottom));
    }

    .footer-grid {
        gap: 22px;
    }

    .vision-footer-glass {
        padding: 22px 18px;
    }

    .footer-col {
        justify-items: center;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .volunteer-benefits {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        gap: 10px;
        padding: 12px 18px;
        scrollbar-width: none;
    }

    .volunteer-benefits::-webkit-scrollbar {
        display: none;
    }

    .volunteer-benefit {
        min-width: 220px;
    }

    .apply-modal {
        padding: 14px;
        align-items: center;
    }

    .apply-dialog {
        max-height: calc(100dvh - 28px);
        border-radius: 26px;
    }

    .onboarding-form {
        max-height: calc(100dvh - 278px);
        padding: 18px 14px 0;
    }

    .onboarding-head {
        padding: 22px 18px 16px;
    }

    .onboarding-head h2,
    .volunteer-dialog .onboarding-head h2 {
        font-size: clamp(2rem, 9vw, 2.65rem);
        line-height: 1.06;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .form-section,
    .conditional-grid,
    .preference-grid {
        grid-template-columns: 1fr;
    }

    .modal-submit-shell {
        padding-bottom: 16px;
    }

    .about-section,
    .contact-section,
    .error-section {
        width: calc(100% - 24px);
        padding: 84px 0 42px;
    }
}

/* =========================
   Popup + AI Final Polish
========================= */

html,
body {
    overflow-x: hidden;
}

.assistant-wrapper.ai-engine-shell {
    position: relative;
    overflow: hidden;
    grid-template-columns: minmax(0, .96fr) minmax(460px, .86fr);
    gap: clamp(36px, 4.8vw, 64px);
    padding: clamp(38px, 4.4vw, 58px);
    background: rgba(255, 255, 255, .48);
}

.assistant-wrapper.ai-engine-shell::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .08));
    pointer-events: none;
}

.ai-copy,
.assistant-panel {
    position: relative;
    z-index: 1;
}

.ai-copy h2 {
    max-width: 640px;
    font-size: clamp(2.72rem, 4.1vw, 4.05rem);
    line-height: 1.06;
}

.ai-copy p {
    max-width: 650px;
    font-size: 1.06rem;
}

.assistant-features.ai-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ai-mini-card {
    min-height: 122px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-content: start;
    column-gap: 14px;
    row-gap: 5px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .54);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78), 0 12px 26px rgba(47, 66, 104, .045);
    transition: transform .24s var(--ease), background .24s ease, box-shadow .24s ease;
}

.ai-mini-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .70);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 18px 34px rgba(47, 66, 104, .075);
}

.ai-mini-card i {
    grid-row: 1 / span 2;
    margin: 0;
}

.ai-mini-card span,
.ai-mini-card small {
    min-width: 0;
    overflow-wrap: anywhere;
}

.ai-mini-card span {
    margin-top: 0;
    font-size: .98rem;
}

.ai-mini-card small {
    margin-top: 0;
    font-size: .82rem;
}

.assistant-panel {
    width: min(540px, 100%);
    height: clamp(500px, 45vw, 620px);
    max-height: 620px;
    display: flex;
    flex-direction: column;
    border-radius: 34px;
    background: rgba(255, 255, 255, .52);
    box-shadow: 0 26px 62px rgba(47, 66, 104, .11);
    transition: transform .28s var(--ease), box-shadow .28s ease;
}

.assistant-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 72px rgba(47, 66, 104, .13);
}

.assistant-topbar {
    flex: 0 0 auto;
}

.assistant-thread {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 420px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 18px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 48, 69, .30) transparent;
}

.assistant-thread::-webkit-scrollbar {
    width: 5px;
}

.assistant-thread::-webkit-scrollbar-track {
    background: transparent;
}

.assistant-thread::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 48, 69, .28);
}

.assistant-thread::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 48, 69, .45);
}

.bubble,
.chat-bubble {
    max-width: min(88%, 410px);
    overflow-wrap: anywhere;
    background: rgba(255, 255, 255, .88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82), 0 10px 26px rgba(47, 66, 104, .06);
}

.bubble-brand,
.chat-bubble.user {
    align-self: flex-end;
}

.choice-row {
    align-items: flex-start;
}

.choice-row button {
    min-height: 42px;
    border-radius: 999px;
    white-space: normal;
}

.assistant-composer,
.chat-input {
    flex: 0 0 auto;
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-top: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .88) 28%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.assistant-composer input,
.chat-input input {
    height: 58px;
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84);
}

.send-dot {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(255, 48, 69, .20);
}

.apply-modal {
    overflow: hidden;
    padding: 14px;
}

.onboarding-dialog {
    width: min(900px, calc(100vw - 28px));
    max-height: min(760px, calc(100dvh - 28px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, .74);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 80px rgba(28, 39, 62, .16);
    backdrop-filter: blur(26px) saturate(155%);
    -webkit-backdrop-filter: blur(26px) saturate(155%);
}

.onboarding-head {
    position: relative;
    flex: 0 0 auto;
    display: grid;
    gap: 12px;
    padding: clamp(28px, 3.6vw, 40px) clamp(24px, 4.4vw, 46px) 16px;
    border-bottom: 0;
    background: transparent;
}

.onboarding-progress {
    position: static;
    display: flex;
    gap: 9px;
    order: -1;
    transform: none;
}

.onboarding-progress span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--muted);
    background: rgba(245, 247, 252, .86);
    font-size: .76rem;
    font-weight: 950;
}

.onboarding-progress span.active {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 22px rgba(255, 48, 69, .18);
}

.onboarding-head h2,
.volunteer-dialog .onboarding-head h2 {
    max-width: 700px;
    margin: 4px 0 0;
    font-size: clamp(2.1rem, 3.7vw, 3.25rem);
    line-height: 1.06;
}

.onboarding-head p,
.volunteer-dialog .onboarding-head p {
    max-width: 720px;
    color: var(--ink-soft);
    font-size: .98rem;
    font-weight: 750;
}

.volunteer-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 clamp(24px, 4.4vw, 46px);
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(17, 24, 39, .07);
    background: transparent;
}

.volunteer-benefit {
    min-height: 74px;
    padding: 12px;
    background: rgba(255, 255, 255, .42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .70);
}

.onboarding-form {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    margin: 0;
    padding: 18px clamp(24px, 4.4vw, 46px) 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 48, 69, .34) transparent;
}

.onboarding-form::-webkit-scrollbar,
.kvkk-content::-webkit-scrollbar {
    width: 6px;
}

.onboarding-form::-webkit-scrollbar-track,
.kvkk-content::-webkit-scrollbar-track {
    background: transparent;
}

.onboarding-form::-webkit-scrollbar-thumb,
.kvkk-content::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 48, 69, .28);
}

.form-section {
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid rgba(17, 24, 39, .07);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.section-line {
    margin-bottom: 4px;
}

.liquid-input,
.custom-form textarea,
.apply-form input,
.apply-form select,
.apply-form textarea,
.custom-select-trigger {
    min-height: 62px;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 8px 24px rgba(16, 24, 40, .05);
    padding: 0 20px;
    font-size: 15px;
    font-weight: 850;
}

.apply-form textarea {
    padding-top: 16px;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus,
.custom-select.is-open .custom-select-trigger {
    border-color: rgba(241, 37, 49, .42);
    box-shadow: 0 0 0 4px rgba(241, 37, 49, .10);
}

.custom-select-menu {
    max-width: 100%;
    border-radius: 20px;
    border-color: rgba(16, 24, 40, .08);
}

.conditional-field {
    grid-template-rows: none;
    max-height: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height .30s var(--ease), opacity .22s ease, padding .30s var(--ease), transform .22s ease;
}

.conditional-field.is-visible {
    max-height: 900px;
    opacity: 1;
    padding: 14px 0 4px;
    transform: translateY(0);
    animation: none;
}

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

.permission-card {
    padding: 16px 0 0;
    border: 0;
    border-top: 1px solid rgba(17, 24, 39, .07);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.modal-submit-shell {
    padding: 14px 0 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .94) 34%);
}

.modal-submit {
    min-height: 60px;
    box-shadow: 0 16px 34px rgba(255, 48, 69, .22);
}

.onboarding-success {
    border-radius: 28px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

@media (max-width: 820px) {
    .nav-links {
        width: min(370px, calc(100vw - 18px));
        height: 76px;
        grid-template-columns: repeat(5, minmax(0, 60px));
        gap: 8px;
        padding: 8px 10px;
        background: rgba(255, 255, 255, .66);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), 0 18px 44px rgba(50, 72, 112, .16);
        overflow: hidden;
    }

    .nav-links li {
        overflow: hidden;
    }

    .nav-links li a,
    .nav-links li button {
        position: relative;
        width: 60px;
        height: 58px;
        min-width: 60px;
        max-width: 60px;
        min-height: 58px;
        max-height: 58px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        gap: 3px;
        border-radius: 21px;
        text-indent: 0;
        overflow: visible;
        transition: transform .22s var(--ease), background .22s ease, color .22s ease;
    }

    .nav-links li a i,
    .nav-links li button i {
        margin-top: 9px;
        font-size: 1.05rem;
        line-height: 1;
        text-indent: 0;
    }

    .nav-links li .mobile-dock-plus i {
        margin-top: 8px;
        font-size: 1.24rem;
    }

    .nav-links li a::after,
    .nav-links li button::after {
        content: attr(data-dock-label);
        position: absolute;
        left: 50%;
        bottom: 7px;
        width: auto;
        max-width: 58px;
        height: auto;
        min-height: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 0;
        color: rgba(17, 24, 39, .58);
        background: transparent;
        box-shadow: none;
        opacity: 1;
        transform: translateX(-50%);
        font-size: .55rem;
        font-weight: 950;
        line-height: 1;
        letter-spacing: 0;
        text-indent: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links li a:active,
    .nav-links li button:active {
        transform: scale(.94);
    }

    .nav-links li a.active {
        color: var(--brand);
        background: linear-gradient(135deg, rgba(255, 48, 69, .14), rgba(255, 255, 255, .38));
        border-color: rgba(255, 48, 69, .08);
        box-shadow: none;
    }

    .nav-links li a.active i,
    .nav-links li a.active::after,
    .nav-links li a[data-mobile-href="#akilli-tercih"]::after,
    .nav-links li .mobile-dock-plus::after {
        color: var(--brand);
    }

    .nav-links li a[data-mobile-href="#akilli-tercih"] {
        position: relative;
        overflow: visible;
    }

    .nav-links li a[data-mobile-href="#akilli-tercih"]::before {
        display: none;
    }

    .nav-links li a[data-badge]::before {
        content: attr(data-badge);
    }

    .nav-links li .mobile-dock-plus {
        overflow: visible;
    }

    .nav-links li .mobile-dock-plus[aria-expanded="true"] {
        background: linear-gradient(135deg, rgba(255, 48, 69, .14), rgba(255, 255, 255, .36));
        border-color: rgba(255, 48, 69, .10);
        box-shadow: 0 0 24px rgba(255, 48, 69, .16);
        transform: scale(1.08);
    }

    .mobile-dock-popover {
        bottom: calc(100px + env(safe-area-inset-bottom));
        width: min(292px, calc(100vw - 36px));
        padding: 12px;
        gap: 10px;
        border-radius: 26px;
        background: rgba(255, 255, 255, .82);
        box-shadow: 0 18px 42px rgba(47, 66, 104, .13);
        backdrop-filter: blur(24px) saturate(170%);
        -webkit-backdrop-filter: blur(24px) saturate(170%);
        transform: translate(-50%, 14px) scale(.92);
        transition: opacity .28s ease, transform .28s var(--ease);
    }

    .mobile-dock-popover.active {
        transform: translate(-50%, 0) scale(1);
    }

    .dock-popover-item {
        min-height: 54px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .52);
    }

    .dock-popover-item:hover,
    .dock-popover-item:focus-visible {
        background: rgba(255, 255, 255, .70);
    }

    .assistant-wrapper.ai-engine-shell {
        display: flex;
        flex-direction: column;
        padding: 28px 20px;
        gap: 22px;
    }

    .ai-copy {
        display: contents;
    }

    .ai-copy > .assistant-mini {
        order: 1;
        align-self: flex-start;
    }

    .ai-copy > h2 {
        order: 2;
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.08;
        letter-spacing: 0;
        margin: 0;
    }

    .ai-copy > p {
        order: 3;
        font-size: .98rem;
    }

    .ai-action-row {
        order: 4;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        width: 100%;
        margin-top: 0;
    }

    .ai-action-row .hero-primary,
    .ai-action-row .hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .assistant-panel {
        order: 5;
        width: 100%;
        height: min(70dvh, 560px);
        max-height: 70dvh;
        min-height: 430px;
        border-radius: 28px;
    }

    .assistant-thread {
        min-height: 0;
        max-height: calc(70dvh - 154px);
        padding: 18px 16px;
    }

    .assistant-composer {
        padding: 12px 16px 16px;
    }

    .choice-row button {
        flex: 1 1 calc(50% - 8px);
        padding: 0 12px;
    }

    .assistant-features.ai-feature-grid {
        order: 6;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 0;
    }

    .ai-mini-card {
        min-height: 118px;
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 16px;
    }

    .ai-mini-card i {
        grid-row: auto;
    }

    .apply-modal {
        padding: 10px;
    }

    .onboarding-dialog {
        width: calc(100vw - 20px);
        height: calc(100dvh - 20px);
        max-height: calc(100dvh - 20px);
        border-radius: 28px;
    }

    .onboarding-head {
        padding: 22px 18px 12px;
        gap: 10px;
    }

    .onboarding-progress {
        gap: 7px;
    }

    .onboarding-progress span {
        width: 25px;
        height: 25px;
        font-size: .7rem;
    }

    .onboarding-head h2,
    .volunteer-dialog .onboarding-head h2 {
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.08;
        letter-spacing: 0;
    }

    .onboarding-head p,
    .volunteer-dialog .onboarding-head p {
        font-size: .92rem;
        line-height: 1.55;
    }

    .volunteer-benefits {
        display: none;
    }

    .onboarding-form {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px 14px 0;
    }

    .form-section,
    .conditional-grid,
    .preference-grid {
        grid-template-columns: 1fr;
    }

    .liquid-input,
    .custom-form textarea,
    .apply-form input,
    .apply-form select,
    .apply-form textarea,
    .custom-select-trigger {
        min-height: 58px;
        font-size: 15px;
    }

    .modal-submit-shell {
        padding-bottom: 14px;
    }
}

/* =========================
   Final Consolidated UX Pass
========================= */

html,
body {
    overflow-x: hidden;
}

html {
    background: #fff;
}

body {
    background: transparent;
}

.assistant-thread .bubble-brand,
.assistant-thread .chat-bubble.user {
    align-self: flex-end;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-color: rgba(255, 255, 255, .44);
    box-shadow: 0 14px 28px rgba(255, 48, 69, .18);
}

.assistant-thread .bubble-soft,
.assistant-thread .chat-bubble.bot {
    color: var(--ink);
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .66);
}

.assistant-composer input::placeholder,
.apply-form input::placeholder,
.apply-form textarea::placeholder {
    color: rgba(83, 97, 121, .72);
}

.apply-form input.is-invalid-input,
.apply-form textarea.is-invalid-input,
.custom-select.is-invalid .custom-select-trigger {
    border-color: rgba(255, 48, 69, .52) !important;
    box-shadow: 0 0 0 4px rgba(255, 48, 69, .10), 0 12px 28px rgba(255, 48, 69, .08) !important;
}

.apply-modal.active {
    align-items: center;
    padding: 24px;
}

.onboarding-dialog {
    width: min(1080px, calc(100vw - 48px));
    max-height: calc(100dvh - 48px);
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 30px 86px rgba(28, 39, 62, .15);
}

.volunteer-modal .onboarding-dialog {
    width: min(1080px, calc(100vw - 48px));
}

.onboarding-head {
    padding: 34px 54px 18px;
    border-bottom: 1px solid rgba(17, 24, 39, .075);
}

.onboarding-head h2,
.volunteer-dialog .onboarding-head h2 {
    max-width: 780px;
    font-size: clamp(2.35rem, 3.4vw, 3.45rem);
}

.onboarding-head p,
.volunteer-dialog .onboarding-head p {
    max-width: 790px;
}

.modal-close {
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    color: rgba(17, 24, 39, .78);
    background: rgba(255, 255, 255, .72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), 0 12px 28px rgba(47, 66, 104, .08);
    transition: transform .22s var(--ease), background .22s ease, color .22s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    transform: translateY(-1px) scale(1.02);
    outline: 0;
}

.volunteer-benefits {
    margin: 0 54px;
    padding: 16px 0 18px;
}

.volunteer-benefit {
    border: 1px solid rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .48);
}

.onboarding-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
    padding: 22px 54px 0;
}

.form-section {
    gap: 16px 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(17, 24, 39, .075);
}

.section-line {
    margin-bottom: 2px;
}

.liquid-input,
.custom-form textarea,
.apply-form input,
.apply-form select,
.apply-form textarea,
.custom-select-trigger {
    min-height: 62px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .82);
}

.custom-select-menu {
    z-index: 120;
    max-height: 260px;
    border: 1px solid rgba(255, 255, 255, .74);
    background: rgba(255, 255, 255, .92);
}

.permission-card {
    gap: 10px;
    padding: 6px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.check-line {
    min-height: 34px;
    align-items: center;
}

.modal-submit-shell {
    position: sticky;
    bottom: 0;
    z-index: 5;
    padding: 14px 0 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .96) 34%);
}

.stat-glass-card {
    position: relative;
    overflow: hidden;
    min-height: 270px;
}

.stat-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--brand);
    background: rgba(255, 48, 69, .10);
    font-size: 1.8rem;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testi-card {
    width: 100%;
    height: 100%;
    min-height: 232px;
    display: flex;
    flex-direction: column;
}

.testi-text {
    flex: 1;
}

@media (max-width: 820px) {
    body {
        padding-bottom: calc(82px + env(safe-area-inset-bottom));
    }

    .brand-link {
        top: calc(9px + env(safe-area-inset-top));
        left: 12px;
        width: 118px;
        height: 48px;
        background: rgba(255, 255, 255, .64);
    }

    .menu-logo {
        width: 88px;
    }

    .nav-links {
        bottom: max(4px, env(safe-area-inset-bottom));
        width: min(390px, calc(100vw - 18px));
        height: 76px;
        grid-template-columns: repeat(5, 58px);
        gap: 9px;
        padding: 9px 14px;
        overflow: visible;
        background: rgba(255, 255, 255, .66);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92), 0 12px 30px rgba(47, 66, 104, .12);
    }

    .nav-links li {
        width: 58px;
        height: 58px;
        overflow: visible;
    }

    .nav-links li a,
    .nav-links li button,
    .nav-links li .mobile-dock-plus,
    .nav-links li .mobile-dock-plus[aria-expanded="true"] {
        width: 50px;
        min-width: 50px;
        max-width: 50px;
        height: 50px;
        min-height: 50px;
        max-height: 50px;
        justify-content: center;
        border-radius: 20px;
        overflow: visible;
        background: transparent;
        border-color: transparent;
        box-shadow: none;
        transform: none;
        isolation: isolate;
    }

    .nav-links li a i,
    .nav-links li button i,
    .nav-links li .mobile-dock-plus i {
        margin: 0;
        color: rgba(17, 24, 39, .72);
        font-size: 1.08rem;
    }

    .nav-links li .mobile-dock-plus i {
        font-size: 1.35rem;
    }

    .nav-links li a::after,
    .nav-links li button::after {
        display: none;
    }

    .nav-links li a.active {
        color: var(--brand);
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .nav-links li a.active::before {
        content: "";
        position: absolute;
        inset: -4px -11px;
        z-index: -1;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(255, 48, 69, .16), rgba(255, 255, 255, .20));
        box-shadow: none;
    }

    .nav-links li a.active i {
        color: var(--brand);
    }

    .nav-links li a[data-dock-label]::after,
    .nav-links li button[data-dock-label]::after {
        content: attr(data-dock-label);
        position: absolute;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: linear-gradient(135deg, var(--brand), var(--brand-2));
        box-shadow: none;
        transform: none;
        text-indent: 0;
        letter-spacing: 0;
        line-height: 1;
        white-space: nowrap;
    }

    .nav-links li a[data-dock-label="AI"]::after {
        right: 0;
        bottom: 5px;
        width: 20px;
        min-width: 20px;
        height: 20px;
        padding: 0;
        border-radius: 50%;
        font-size: .55rem;
        font-weight: 950;
    }

    .nav-links li .mobile-dock-plus[aria-expanded="true"] {
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .mobile-dock-popover {
        bottom: calc(84px + env(safe-area-inset-bottom));
        box-shadow: none;
    }

    .apply-modal.active {
        padding: 10px;
    }

    .onboarding-dialog {
        width: calc(100vw - 20px);
        height: calc(100dvh - 20px);
        max-height: calc(100dvh - 20px);
        border-radius: 28px;
    }

    .onboarding-head {
        padding: 22px 18px 14px;
    }

    .onboarding-form {
        grid-template-columns: 1fr;
        padding: 14px 16px 0;
    }

    .form-section,
    .conditional-grid,
    .preference-grid {
        grid-template-columns: 1fr;
    }

    .volunteer-benefits {
        display: none;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .stats-container {
        gap: 16px;
    }

    .stat-glass-card {
        min-height: 232px;
    }

    .testi-card {
        min-height: 220px;
    }
}

.stat-glass-card,
.testi-card,
.ai-mini-card,
.feature-box,
.volunteer-benefit {
    background: rgba(255, 255, 255, .36);
    border-color: rgba(255, 255, 255, .64);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .76), 0 16px 36px rgba(47, 66, 104, .055);
    backdrop-filter: blur(18px) saturate(155%);
    -webkit-backdrop-filter: blur(18px) saturate(155%);
}

.stat-icon {
    color: rgba(17, 24, 39, .76);
    background: transparent;
}

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