:root {
    --ink: #fff9e9;
    --muted: #b8c5d9;
    --dark: #020713;
    --panel: rgba(7, 24, 51, 0.66);
    --panel-strong: rgba(10, 45, 93, 0.76);
    --line: rgba(117, 188, 255, 0.22);
    --rose: #e64b7a;
    --wine: #741b4a;
    --gold: #f1b95a;
    --teal: #35d5c5;
    --blue: #0867c9;
    --blue-deep: #041b49;
    --sun: #ffd33f;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 16% 8%, rgba(3, 135, 255, 0.34), transparent 30rem),
        radial-gradient(circle at 80% 14%, rgba(255, 211, 63, 0.2), transparent 26rem),
        radial-gradient(circle at 64% 74%, rgba(15, 90, 190, 0.24), transparent 32rem),
        linear-gradient(135deg, #020713 0%, #06183b 44%, #050b15 100%);
    font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    background-image:
        linear-gradient(rgba(117, 188, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(117, 188, 255, 0.07) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 86%);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(2, 7, 19, 0.76);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    min-width: 220px;
    gap: 12px;
}

.brand-mark {
    display: block;
    overflow: hidden;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 211, 63, 0.48);
    border-radius: 8px;
    background: #020713;
    box-shadow: 0 12px 36px rgba(8, 103, 201, 0.38);
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 28%;
    transform: scale(1.58);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.brand small,
.desktop-nav a,
.header-cta {
    color: var(--muted);
    font-size: 0.78rem;
}

.desktop-nav {
    display: flex;
    gap: 22px;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(117, 188, 255, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
        rgba(4, 18, 43, 0.76);
    color: var(--ink);
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 14px 34px rgba(0, 0, 0, 0.26);
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sun), #35d5c5);
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.desktop-nav a:hover,
.site-footer a:hover {
    color: var(--ink);
}

.header-cta,
.ghost-button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 800;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.ghost-button {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.primary-button {
    border: 0;
    color: #16050d;
    background: linear-gradient(135deg, #f1b95a, #ff7aa0 55%, #35d5c5);
    box-shadow: 0 18px 46px rgba(230, 75, 122, 0.3);
    cursor: pointer;
}

.primary-button:hover,
.ghost-button:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.section-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    align-items: center;
    min-height: calc(100vh - 84px);
    padding: 58px 0 44px;
    gap: 32px;
}

.hero-copy {
    position: relative;
    z-index: 8;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--sun);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: pretty;
}

h1,
h2,
h3 {
    hyphens: manual;
    word-break: keep-all;
}

p {
    hyphens: auto;
}

h1,
h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 0.92;
}

h1 {
    max-width: 760px;
    font-size: clamp(3.85rem, 9.6vw, 7.8rem);
    text-wrap: balance;
    text-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
}

h2 {
    font-size: clamp(2.5rem, 4.6vw, 4.85rem);
    text-wrap: balance;
}

h3 {
    margin: 0;
    font-size: 1.2rem;
}

.hero-lead,
.section-text {
    max-width: 670px;
    color: var(--muted);
    font-size: clamp(1.04rem, 2vw, 1.35rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
}

.event-strip {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: center;
    gap: 10px;
}

.speaker-tag,
.ticket-top span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 12px;
    color: var(--muted);
    background: rgba(6, 44, 92, 0.42);
    font-size: 0.85rem;
}

.event-strip span {
    border: 1px solid rgba(117, 188, 255, 0.38);
    border-radius: 999px;
    padding: 11px 15px;
    color: #eef7ff;
    background: linear-gradient(135deg, rgba(8, 103, 201, 0.42), rgba(255, 211, 63, 0.12));
    font-size: clamp(1.05rem, 1.25vw, 1.16rem);
    font-weight: 800;
    text-align: center;
    box-shadow: 0 12px 34px rgba(0, 146, 255, 0.16);
}

.event-strip span:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
}

.hero-stage {
    position: relative;
    z-index: 1;
    height: min(760px, 86vh);
    min-height: 560px;
    perspective: 1200px;
    isolation: isolate;
}

.hero-stage::before {
    position: absolute;
    z-index: -2;
    inset: 9% 2% 8% 17%;
    content: "";
    border: 1px solid rgba(117, 188, 255, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02)),
        linear-gradient(45deg, rgba(8, 103, 201, 0.34), rgba(255, 211, 63, 0.08));
    border-radius: 8px;
    box-shadow: inset 0 0 90px rgba(117, 188, 255, 0.1), 0 36px 90px rgba(0, 0, 0, 0.48);
    transform: rotateX(62deg) rotateZ(-29deg) translateZ(-58px);
}

.hero-stage::after {
    position: absolute;
    right: -8%;
    bottom: -2%;
    z-index: -2;
    width: 82%;
    height: 30%;
    content: "";
    background: radial-gradient(ellipse, rgba(255, 211, 63, 0.32), transparent 70%);
    filter: blur(28px);
    transform: rotate(-10deg);
}

.orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    transform-style: preserve-3d;
    animation: spin 18s linear infinite;
}

.orbit-one {
    inset: 15% 3% 13% 12%;
    border-color: rgba(255, 211, 63, 0.36);
    box-shadow: 0 0 36px rgba(255, 211, 63, 0.1);
    transform: rotateX(69deg) rotateZ(-20deg);
}

.orbit-two {
    inset: 24% 13% 22% 20%;
    border-color: rgba(0, 146, 255, 0.42);
    animation-duration: 13s;
    animation-direction: reverse;
    transform: rotateX(72deg) rotateZ(30deg);
}

.ukraine-plate {
    position: absolute;
    z-index: -1;
    left: 7%;
    right: 0;
    bottom: -2%;
    height: 34%;
    border: 1px solid rgba(255, 211, 63, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(160deg, rgba(0, 146, 255, 0.28), rgba(255, 211, 63, 0.16)),
        linear-gradient(90deg, rgba(255, 211, 63, 0.14), rgba(8, 103, 201, 0.18));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.17);
    opacity: 0.72;
    transform: rotateX(66deg) rotateZ(-13deg) translateZ(-10px);
}

.hero-art-wrap {
    position: absolute;
    right: -28%;
    bottom: -13%;
    z-index: 3;
    width: min(790px, 126%);
    animation: artFloat 6.4s ease-in-out infinite;
}

.hero-art {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 44px 62px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 34px rgba(0, 132, 255, 0.22));
}

.floating-badge {
    position: absolute;
    z-index: 4;
    display: grid;
    min-width: 126px;
    min-height: 86px;
    place-items: center;
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(4, 27, 73, 0.46));
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    text-align: center;
    transform-style: preserve-3d;
}

.floating-badge strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.62rem, 2.5vw, 2.05rem);
    font-weight: 700;
    line-height: 0.95;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}

.badge-one {
    left: 3%;
    top: 22%;
    transform: rotateY(-18deg) rotateX(8deg) translateZ(132px);
}

.badge-two {
    right: 4%;
    top: 20%;
    transform: rotateY(16deg) rotateX(7deg) translateZ(146px);
}

.badge-three {
    left: 22%;
    bottom: 14%;
    transform: rotateY(-8deg) rotateX(12deg) translateZ(158px);
}

.stats-grid,
.speaker-grid,
.ticket-grid,
.organizer-grid,
.feature-grid {
    display: grid;
    gap: 18px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 22px 0 72px;
}

.stats-grid,
.split-section,
#speakers,
#tickets,
.organizers-section {
    position: relative;
}

.stats-grid::before,
.split-section::before,
#speakers::before,
#tickets::before,
.organizers-section::before {
    position: absolute;
    inset: -48px -7% -44px;
    z-index: -1;
    content: "";
    background:
        radial-gradient(ellipse at 16% 24%, rgba(255, 211, 63, 0.11), transparent 32rem),
        radial-gradient(ellipse at 88% 18%, rgba(0, 146, 255, 0.13), transparent 34rem),
        linear-gradient(180deg, transparent, rgba(5, 20, 48, 0.44) 35%, transparent);
    filter: blur(2px);
    pointer-events: none;
}

.tilt-card,
.order-form,
.admin-panel,
.timeline,
.organizer-card {
    border: 1px solid rgba(117, 188, 255, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
        linear-gradient(180deg, rgba(8, 37, 78, 0.72), rgba(3, 14, 34, 0.58));
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
}

.tilt-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --tilt-lift: 0px;
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--tilt-lift));
    transform-style: preserve-3d;
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.tilt-card:hover {
    --tilt-lift: -5px;
    border-color: rgba(255, 211, 63, 0.42);
    background:
        linear-gradient(145deg, rgba(255, 211, 63, 0.08), transparent 44%),
        linear-gradient(180deg, rgba(10, 45, 93, 0.8), rgba(4, 18, 43, 0.68));
}

.stat-card {
    min-height: 150px;
    padding: 22px;
}

.stat-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1;
}

.stat-card span,
.feature-card p,
.speaker-card p,
.ticket-card p,
.timeline-item p,
.muted {
    color: var(--muted);
    line-height: 1.65;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
    align-items: start;
    gap: clamp(28px, 4vw, 54px);
    padding: 82px 0;
}

.split-section::after {
    position: absolute;
    inset: 28px -4%;
    z-index: -1;
    content: "";
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 211, 63, 0.055), transparent 30%, rgba(0, 146, 255, 0.08) 70%, transparent),
        radial-gradient(ellipse at 64% 50%, rgba(117, 188, 255, 0.09), transparent 36rem);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    pointer-events: none;
}

.split-section > div:first-child {
    max-width: 760px;
}

.split-section h2 {
    max-width: 720px;
    font-size: clamp(2.6rem, 3.75vw, 4.05rem);
    line-height: 1;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 36%),
        linear-gradient(90deg, rgba(0, 146, 255, 0.07), rgba(255, 211, 63, 0.035), rgba(0, 146, 255, 0.055));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-card,
.speaker-card,
.ticket-card {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 2.6vw, 30px);
}

.feature-card > *,
.speaker-card > *,
.ticket-card > * {
    position: relative;
    z-index: 1;
}

.feature-card::after,
.speaker-card::after,
.ticket-card::after {
    position: absolute;
    z-index: 0;
    inset: auto -10% -30% 15%;
    height: 110px;
    content: "";
    background: linear-gradient(90deg, rgba(0, 146, 255, 0.28), rgba(255, 211, 63, 0.16));
    filter: blur(28px);
    pointer-events: none;
    transform: rotate(-6deg);
}

.feature-card span {
    display: block;
    width: 54px;
    height: 8px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, #008cff, var(--sun), #fff0a3);
}

.feature-card {
    min-height: 254px;
    border-color: rgba(117, 188, 255, 0.13);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 44%),
        linear-gradient(180deg, rgba(8, 37, 78, 0.54), rgba(3, 14, 34, 0.38));
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.24);
}

.feature-card h3 {
    font-size: clamp(1.12rem, 1.45vw, 1.32rem);
    line-height: 1.32;
}

.feature-card p {
    margin-bottom: 0;
    font-size: clamp(0.98rem, 1.12vw, 1.06rem);
}

.section-heading {
    position: relative;
    max-width: 800px;
    padding: 76px 0 30px;
}

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

.speaker-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
}

.speaker-photo {
    position: relative;
    display: grid;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    place-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(117, 188, 255, 0.18);
    border-radius: 8px 8px 0 0;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.24), transparent 9rem),
        linear-gradient(145deg, rgba(255, 211, 63, 0.74), rgba(0, 140, 255, 0.82) 48%, rgba(3, 26, 73, 0.96));
}

.speaker-photo::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, transparent 44%, rgba(2, 7, 19, 0.45)),
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.4), transparent 4rem);
    pointer-events: none;
}

.speaker-photo > img,
.speaker-photo-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
}

.speaker-photo-placeholder {
    position: relative;
    z-index: 1;
    display: grid;
    width: 104px;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 211, 63, 0.42);
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.9) 0 7%, transparent 8%),
        linear-gradient(145deg, #ffe87a, #008cff 52%, #031a49);
    color: #06112a;
    font-size: 3.25rem;
    font-weight: 900;
    box-shadow: inset -12px -16px 28px rgba(0, 0, 0, 0.24), 0 18px 44px rgba(0, 132, 255, 0.28);
}

.speaker-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: none;
}

.speaker-content {
    display: grid;
    flex: 1;
    align-content: start;
    grid-auto-rows: max-content;
    gap: 0;
    padding: clamp(16px, 1.55vw, 22px);
}

.speaker-content h3 {
    min-height: 2.35em;
    margin: 0 0 14px;
    font-size: clamp(1.08rem, 1.25vw, 1.32rem);
    line-height: 1.16;
}

.speaker-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    hyphens: manual;
}

.speaker-content .role {
    min-height: 5.9em;
    margin-bottom: 16px;
    color: rgba(255, 249, 233, 0.9);
    font-weight: 600;
}

.speaker-bio {
    padding-top: 16px;
    border-top: 1px solid rgba(117, 188, 255, 0.16);
    color: var(--muted);
}

.role {
    margin: 0;
    min-height: 0;
}

.program-section {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    padding-top: 96px;
}

.program-heading {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
    max-width: none;
}

.split-section.program-section > .program-heading {
    width: 100%;
    max-width: none;
}

.program-heading-main {
    display: grid;
    gap: 14px;
}

.program-heading-main .eyebrow {
    margin-bottom: 0;
}

.program-section h2 {
    max-width: 100%;
    text-align: left;
}

.program-section .section-text {
    position: relative;
    max-width: none;
    margin: 0;
    justify-self: stretch;
    align-self: center;
    border: 1px solid rgba(117, 188, 255, 0.16);
    border-radius: 8px;
    padding: clamp(20px, 2.8vw, 32px) clamp(22px, 3.4vw, 42px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 36%),
        linear-gradient(90deg, rgba(0, 146, 255, 0.16), rgba(255, 211, 63, 0.045), rgba(0, 146, 255, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 58px rgba(0, 0, 0, 0.18);
    font-size: clamp(1.04rem, 1.55vw, 1.34rem);
    line-height: 1.55;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
    text-wrap: pretty;
}

.program-section .section-text::before {
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--sun), #008cff);
    content: "";
}

.nowrap {
    white-space: nowrap;
}

.program-topic-list {
    display: grid;
    gap: 14px;
}

.program-board {
    display: block;
    column-count: 2;
    column-gap: 18px;
}

.program-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    border: 1px solid rgba(117, 188, 255, 0.18);
    border-radius: 8px;
    padding: clamp(20px, 2.6vw, 30px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
        linear-gradient(180deg, rgba(8, 37, 78, 0.72), rgba(3, 14, 34, 0.58));
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.program-card-head {
    display: grid;
    gap: 8px;
}

.program-card-head time {
    width: fit-content;
    border: 1px solid rgba(255, 211, 63, 0.3);
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--sun);
    background: rgba(255, 211, 63, 0.08);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.program-card-head h3 {
    font-size: clamp(1.24rem, 2vw, 1.75rem);
    line-height: 1.25;
}

.program-summary {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.program-topic-list {
    gap: 10px;
    margin-top: 4px;
}

.program-topic {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(117, 188, 255, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 211, 63, 0.08), transparent 22%),
        rgba(2, 7, 19, 0.24);
    overflow: hidden;
}

.program-topic::before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--sun), #008cff);
    content: "";
}

.program-topic-toggle {
    position: relative;
    display: grid;
    width: 100%;
    gap: 6px;
    border: 0;
    padding: 14px 48px 14px 20px;
    color: inherit;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.program-topic-toggle::after {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 211, 63, 0.9);
    border-bottom: 2px solid rgba(255, 211, 63, 0.9);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    content: "";
}

.program-topic.is-open .program-topic-toggle::after {
    transform: rotate(225deg) translate(-3px, -3px);
}

.program-topic-label {
    color: var(--sun);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.program-topic-toggle strong {
    font-size: 0.98rem;
    line-height: 1.35;
}

.program-topic-speaker {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.35;
}

.program-topic-body {
    padding: 0 18px 16px 20px;
}

.program-topic-body[hidden] {
    display: none;
}

.program-topic-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.ticket-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 22px;
    align-items: start;
}

.ticket-request-section {
    padding: 92px 0;
}

.ticket-request-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: clamp(34px, 6vw, 92px);
}

.ticket-request-copy {
    max-width: 760px;
}

.ticket-request-copy h2 {
    max-width: 760px;
    font-size: clamp(3rem, 5.6vw, 6rem);
    line-height: 0.96;
}

.ticket-request-copy > p:not(.eyebrow) {
    max-width: 640px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    line-height: 1.55;
}

.ticket-price-panel {
    display: inline-grid;
    gap: 6px;
    min-width: min(100%, 320px);
    margin: 28px 0 18px;
    padding: 18px 22px;
    border: 1px solid rgba(117, 188, 255, 0.22);
    border-left: 4px solid var(--sun);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 211, 63, 0.12), transparent 40%),
        rgba(8, 37, 78, 0.56);
}

.ticket-price-panel span,
.form-price-chip {
    color: var(--sun);
    font-weight: 900;
    text-transform: uppercase;
}

.ticket-price-panel strong {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
}

.ticket-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ticket-benefits li {
    min-height: 108px;
    padding: 18px;
    border: 1px solid rgba(117, 188, 255, 0.16);
    border-radius: 8px;
    color: var(--muted);
    background: rgba(2, 16, 39, 0.58);
    line-height: 1.45;
}

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

.ticket-card {
    min-height: 560px;
}

.ticket-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
    margin: 26px 0 18px;
}

.price-row strong {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.price-row s {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.25rem;
}

.ticket-card ul {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.ticket-card li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.55;
}

.ticket-card li::before {
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sun), #008cff);
    content: "";
}

.order-form {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 14px;
    padding: 24px;
}

.ticket-order-form {
    position: relative;
    top: auto;
    padding: clamp(24px, 3vw, 34px);
}

.order-form h3 {
    font-size: 1.65rem;
}

.ticket-order-form h3 {
    max-width: 360px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.08;
}

.form-price-chip {
    justify-self: start;
    padding: 9px 14px;
    border: 1px solid rgba(255, 211, 63, 0.32);
    border-radius: 999px;
    background: rgba(255, 211, 63, 0.1);
}

label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.field-hint {
    color: rgba(184, 197, 217, 0.78);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.45;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: rgba(2, 7, 19, 0.78);
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255, 211, 63, 0.72);
    box-shadow: 0 0 0 3px rgba(255, 211, 63, 0.14);
}

.notice {
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 800;
    line-height: 1.45;
}

.success {
    border: 1px solid rgba(255, 211, 63, 0.38);
    color: #fff0a3;
    background: rgba(255, 211, 63, 0.12);
}

.error {
    border: 1px solid rgba(255, 122, 160, 0.42);
    color: #ffd4df;
    background: rgba(230, 75, 122, 0.14);
}

.organizers-section {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: clamp(34px, 5vw, 82px);
    padding: 88px 0;
}

.organizer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.organizer-card {
    display: grid;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.organizer-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 1px solid rgba(117, 188, 255, 0.2);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.24), transparent 18%),
        linear-gradient(145deg, rgba(255, 211, 63, 0.18), rgba(0, 140, 255, 0.2));
}

.organizer-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.organizer-content {
    display: grid;
    gap: 8px;
    padding: 20px 22px 22px;
}

.organizer-content strong,
.organizer-content span {
    display: block;
}

.organizer-content strong {
    font-size: 1.05rem;
}

.organizer-content span {
    color: var(--sun);
}

.organizer-content p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.back-to-top {
    position: fixed;
    right: clamp(16px, 3vw, 34px);
    bottom: clamp(16px, 3vw, 34px);
    z-index: 12;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 211, 63, 0.42);
    border-radius: 8px;
    color: var(--sun);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 44%),
        linear-gradient(180deg, rgba(10, 45, 93, 0.84), rgba(3, 14, 34, 0.76));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
    backdrop-filter: blur(16px);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    border-color: rgba(53, 213, 197, 0.62);
    transform: translateY(-2px);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 46px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.admin-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 0%, rgba(0, 146, 255, 0.28), transparent 28rem),
        radial-gradient(circle at 84% 12%, rgba(255, 211, 63, 0.14), transparent 24rem),
        linear-gradient(135deg, #020713 0%, #06183b 60%, #050b15 100%);
}

.admin-shell {
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
    padding: 28px 0 60px;
}

.admin-panel {
    padding: clamp(20px, 4vw, 34px);
}

.admin-head,
.admin-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.admin-head {
    margin-bottom: 24px;
}

.admin-head h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.login-form,
.admin-form,
.admin-section {
    display: grid;
    gap: 16px;
}

.login-form {
    max-width: 420px;
}

.admin-tabs {
    position: sticky;
    top: 14px;
    z-index: 6;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(2, 7, 19, 0.84);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.admin-tab,
.mini-button,
.danger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 8px;
    padding: 0 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.admin-tab,
.mini-button {
    border: 1px solid rgba(117, 188, 255, 0.22);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.045);
}

.admin-tab.is-active,
.mini-button:hover {
    border-color: rgba(255, 211, 63, 0.46);
    background: linear-gradient(135deg, rgba(241, 185, 90, 0.22), rgba(53, 213, 197, 0.13));
}

.danger-button {
    border: 1px solid rgba(255, 122, 160, 0.28);
    color: #ffd4df;
    background: rgba(230, 75, 122, 0.12);
}

.admin-tab:hover,
.mini-button:hover,
.danger-button:hover {
    transform: translateY(-1px);
}

.admin-section {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.admin-tab-panel {
    display: none;
}

.admin-tab-panel.is-active {
    display: grid;
}

.admin-section-head,
.admin-card-head,
.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.admin-section-head h2,
.admin-toolbar h3,
.admin-card h3 {
    margin: 0;
}

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

.switch-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 12px 14px;
    border: 1px solid rgba(117, 188, 255, 0.18);
    border-radius: 8px;
    background: rgba(2, 7, 19, 0.36);
    cursor: pointer;
}

.switch-field input {
    position: relative;
    width: 48px;
    height: 28px;
    border: 1px solid rgba(117, 188, 255, 0.34);
    border-radius: 999px;
    padding: 0;
    background: rgba(2, 7, 19, 0.72);
    appearance: none;
    transition: background 180ms ease, border-color 180ms ease;
}

.switch-field input::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--muted);
    content: "";
    transition: transform 180ms ease, background 180ms ease;
}

.switch-field input:checked {
    border-color: rgba(255, 211, 63, 0.58);
    background: linear-gradient(135deg, rgba(241, 185, 90, 0.55), rgba(53, 213, 197, 0.48));
}

.switch-field input:checked::after {
    background: #fff9e9;
    transform: translateX(20px);
}

.admin-list-block,
.admin-list {
    display: grid;
    gap: 14px;
}

.admin-list-block + .admin-list-block {
    margin-top: 14px;
}

.admin-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(117, 188, 255, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
        linear-gradient(180deg, rgba(8, 37, 78, 0.58), rgba(3, 14, 34, 0.48));
}

.admin-subcard {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(117, 188, 255, 0.14);
    border-radius: 8px;
    background: rgba(2, 7, 19, 0.22);
}

.admin-subcard > .danger-button:first-child {
    justify-self: end;
}

.admin-card > .danger-button:first-child {
    justify-self: end;
}

.photo-admin-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.photo-preview {
    display: grid;
    overflow: hidden;
    min-height: 150px;
    place-items: center;
    border: 1px solid rgba(255, 211, 63, 0.28);
    border-radius: 8px;
    background:
        radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.24), transparent 5rem),
        linear-gradient(145deg, rgba(255, 211, 63, 0.64), rgba(0, 140, 255, 0.74) 52%, rgba(3, 26, 73, 0.94));
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview span {
    color: #06112a;
    font-size: 3rem;
    font-weight: 900;
}

.compact-toolbar {
    margin-top: 4px;
}

.feature-admin-list {
    display: grid;
    gap: 10px;
}

.feature-admin-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.feature-admin-row input {
    grid-column: 1;
}

.feature-admin-row .danger-button {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.admin-access-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
}

.admin-section h2 {
    font-family: Manrope, system-ui, sans-serif;
    font-size: 1.35rem;
    line-height: 1.25;
}

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

.admin-form textarea {
    min-height: 150px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.86rem;
}

.sticky-save {
    position: sticky;
    bottom: 18px;
    z-index: 3;
    width: fit-content;
    margin-top: 8px;
}

.admin-form.is-readonly-tab .sticky-save {
    display: none;
}

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

.orders-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    text-align: left;
    vertical-align: top;
}

.orders-table th {
    color: var(--ink);
}

@keyframes float {
    0%,
    100% {
        transform: translate(-50%, -50%) translateZ(90px) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateZ(90px) translateY(-18px);
    }
}

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

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

@keyframes spin {
    to {
        rotate: 360deg;
    }
}

@media (max-width: 1240px) {
    .section-shell,
    .site-header,
    .site-footer {
        width: min(1080px, calc(100% - 44px));
    }

    .site-header {
        gap: 16px;
    }

    .desktop-nav {
        gap: 14px;
    }

    .hero {
        grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    }

    .hero-art-wrap {
        right: -20%;
        width: min(720px, 120%);
    }

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

    .speaker-content {
        padding: 18px;
    }

    .ticket-request-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr);
        gap: clamp(28px, 4vw, 58px);
    }

    .organizers-section {
        grid-template-columns: minmax(280px, 0.82fr) minmax(480px, 1.18fr);
        gap: clamp(28px, 4vw, 58px);
    }
}

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

    .section-shell,
    .site-header,
    .site-footer,
    .admin-shell {
        width: min(760px, calc(100% - 32px));
    }

    .hero,
    .split-section,
    .ticket-layout,
    .ticket-request-layout,
    .organizers-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 52px;
    }

    .split-section {
        gap: 26px;
        padding: 68px 0;
    }

    .section-heading {
        padding-top: 64px;
    }

    .program-heading {
        grid-template-columns: 1fr;
        gap: 18px;
        transform: none;
    }

    .program-section .section-text {
        justify-self: stretch;
        max-width: none;
    }

    .hero-stage {
        order: -1;
        height: 500px;
        min-height: 500px;
    }

    .hero-art-wrap {
        right: 50%;
        bottom: -3%;
        width: min(680px, 124%);
        transform: translateX(50%);
    }

    @keyframes artFloat {
        0%,
        100% {
            transform: translateX(50%) translateY(0);
        }

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

    .stats-grid,
    .speaker-grid,
    .feature-grid,
    .ticket-benefits,
    .ticket-grid,
    .organizer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid {
        padding: 12px;
    }

    .program-board {
        column-count: 1;
    }

    .ticket-request-section {
        padding: 70px 0;
    }

    .order-form {
        position: static;
    }

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

    .photo-admin-grid {
        grid-template-columns: 180px minmax(0, 1fr);
    }
}

@media (max-width: 680px) {
    .section-shell,
    .site-header,
    .site-footer,
    .admin-shell {
        width: calc(100% - 24px);
    }

    .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 46px;
        align-items: center;
        margin-top: 10px;
        padding: 12px;
    }

    .brand {
        min-width: 0;
        max-width: 100%;
    }

    .brand strong {
        font-size: 0.76rem;
    }

    .brand small {
        font-size: 0.72rem;
    }

    .mobile-menu-toggle {
        display: grid;
        justify-self: end;
    }

    .desktop-nav {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 240ms ease, opacity 180ms ease, padding-top 180ms ease;
    }

    .desktop-nav a {
        display: flex;
        justify-content: center;
        min-height: 44px;
        align-items: center;
        border: 1px solid rgba(117, 188, 255, 0.2);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.035);
        color: var(--ink);
        font-size: 0.92rem;
        font-weight: 800;
    }

    .header-cta {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 0;
        max-height: 0;
        padding-block: 0;
        overflow: hidden;
        border-width: 0;
        opacity: 0;
        transition: max-height 240ms ease, opacity 180ms ease, padding 180ms ease, border-color 180ms ease;
    }

    .site-header.is-menu-open .desktop-nav {
        max-height: 240px;
        padding-top: 12px;
        opacity: 1;
    }

    .site-header.is-menu-open .header-cta {
        min-height: 46px;
        max-height: 58px;
        padding-block: 0;
        border-width: 1px;
        opacity: 1;
    }

    .header-cta,
    .ghost-button,
    .primary-button {
        min-height: 46px;
        padding-inline: 14px;
    }

    .site-header:not(.is-menu-open) .header-cta {
        min-height: 0;
        padding-inline: 0;
    }

    .hero {
        gap: 18px;
        padding-top: 30px;
        padding-bottom: 34px;
    }

    .header-cta,
    .hero-actions a,
    .ticket-card .primary-button,
    .order-form .primary-button,
    .sticky-save {
        width: 100%;
    }

    h1 {
        font-size: clamp(3rem, 17vw, 4.5rem);
        line-height: 0.94;
    }

    h2,
    .split-section h2 {
        font-size: clamp(2.18rem, 10.5vw, 3.35rem);
        line-height: 1.02;
    }

    .ticket-request-copy h2 {
        font-size: clamp(2.4rem, 12vw, 3.7rem);
    }

    .hero-lead,
    .section-text,
    .ticket-request-copy > p:not(.eyebrow) {
        font-size: 1rem;
        line-height: 1.58;
    }

    .event-strip {
        grid-template-columns: 1fr;
        justify-items: center;
        width: 100%;
    }

    .event-strip span {
        justify-self: center;
        width: fit-content;
    }

    .event-strip span:nth-child(3) {
        grid-column: auto;
        justify-self: center;
        width: min(100%, 620px);
        max-width: 100%;
    }

    .stats-grid,
    .speaker-grid,
    .feature-grid,
    .ticket-benefits,
    .ticket-grid,
    .organizer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        height: min(88vw, 390px);
        min-height: 320px;
        overflow: hidden;
        border-radius: 8px;
    }

    .hero-art-wrap {
        bottom: 0;
        width: min(118%, 480px);
    }

    .split-section {
        padding: 56px 0;
    }

    .split-section::after {
        inset: 18px -8%;
    }

    .feature-grid {
        gap: 10px;
        padding: 8px;
    }

    .program-board {
        column-count: 1;
    }

    .program-card {
        padding: 18px;
        margin-bottom: 12px;
    }

    .program-topic-toggle {
        padding: 14px 42px 14px 18px;
    }

    .program-topic-toggle::after {
        right: 18px;
    }

    .ticket-request-section {
        padding: 56px 0;
    }

    .ticket-price-panel {
        width: 100%;
        margin-top: 22px;
    }

    .ticket-benefits li {
        min-height: 0;
    }

    .ticket-order-form {
        padding: 22px 18px;
    }

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

    .speaker-content .role {
        min-height: 0;
    }

    .organizers-section {
        padding: 62px 0;
    }

    .organizer-photo {
        aspect-ratio: 4 / 3;
    }

    .feature-card {
        min-height: 0;
    }

    .floating-badge {
        min-width: 84px;
        min-height: 60px;
        padding: 10px 12px;
    }

    .floating-badge strong {
        font-size: 1.2rem;
    }

    .badge-one {
        left: 5%;
        top: 31%;
        transform: rotateY(-10deg) rotateX(5deg) translateZ(0);
    }

    .badge-two {
        right: 5%;
        top: 34%;
        transform: rotateY(10deg) rotateX(5deg) translateZ(0);
    }

    .badge-three {
        left: 10%;
        bottom: 10%;
        transform: rotateY(-6deg) rotateX(7deg) translateZ(0);
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .admin-tabs,
    .admin-head,
    .admin-actions,
    .admin-section-head,
    .admin-card-head,
    .admin-toolbar,
    .site-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-tab,
    .mini-button,
    .danger-button {
        width: 100%;
    }

    .switch-grid,
    .photo-admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-panel,
    .admin-section,
    .admin-card {
        padding: 16px;
    }

    .admin-form textarea {
        min-height: 120px;
    }

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

    .admin-access-row {
        grid-template-columns: 1fr;
    }

    .feature-admin-row .danger-button {
        grid-column: auto;
        grid-row: auto;
    }

    .back-to-top {
        right: 12px;
        bottom: 12px;
        width: 46px;
        height: 46px;
    }
}

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