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

.site-header {
    padding: 1.5rem 0 0;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 242, 223, 0.12);
    border-radius: 999px;
    background: rgba(38, 17, 12, 0.62);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(8, 3, 1, 0.2);
}

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 233, 181, 0.2), rgba(239, 198, 110, 0.1));
    border: 1px solid rgba(255, 242, 223, 0.18);
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
}

.brand-copy {
    display: grid;
    gap: 0.15rem;
}

.brand-copy strong {
    font-size: 0.98rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-copy small {
    color: rgba(255, 242, 223, 0.72);
}

.nav-utility {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.language-picker {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 2.9rem;
    padding: 0 2.3rem 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 242, 223, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.language-picker::after {
    content: "";
    position: absolute;
    right: 1rem;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid rgba(255, 242, 223, 0.72);
    border-bottom: 2px solid rgba(255, 242, 223, 0.72);
    transform: translateY(-25%) rotate(45deg);
    pointer-events: none;
}

.language-picker select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    font-weight: 700;
    letter-spacing: 0.08em;
    outline: none;
    cursor: pointer;
    padding-right: 0.2rem;
}

.language-picker select::-ms-expand {
    display: none;
}

.button-compact {
    min-height: 2.9rem;
    padding: 0.75rem 1rem;
}

.hero-section {
    padding: 3.4rem 0 4.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 9rem);
}

.hero-copy {
    display: grid;
    gap: 1.35rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    width: fit-content;
    padding: 0.78rem 1.05rem;
    border: 1px solid rgba(255, 242, 223, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 242, 223, 0.88);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eyebrow::before {
    content: "";
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #fce7b5, #b77b1b);
    box-shadow: 0 0 16px rgba(252, 231, 181, 0.7);
}

.hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(3.8rem, 7vw, 6.35rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
    max-width: 9ch;
}

.hero-lead {
    max-width: 56ch;
    color: var(--color-muted);
    line-height: 1.82;
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.35rem;
}

.hero-metrics article,
.video-card,
.faq-item,
.product-summary-panel,
.dashboard-card,
.dashboard-profile-card,
.dashboard-hero {
    border: 1px solid var(--color-stroke);
    border-radius: var(--radius-lg);
    background: var(--color-panel);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 42px var(--color-shadow);
}

.hero-metrics article {
    padding: 1.2rem;
}

.hero-metrics strong {
    display: block;
    margin-bottom: 0.45rem;
}

.hero-metrics span {
    color: var(--color-muted);
    line-height: 1.6;
}

.hero-stage {
    display: grid;
    gap: 1.25rem;
}

.stage-wrap {
    position: relative;
    min-height: 760px;
    display: grid;
    place-items: center;
    perspective: 1800px;
    isolation: isolate;
}

.halo {
    position: absolute;
    width: min(78vw, 680px);
    height: min(78vw, 680px);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 220, 132, 0.36), rgba(255, 175, 63, 0.18) 36%, rgba(255, 132, 33, 0.1) 58%, transparent 72%);
    filter: blur(24px);
    z-index: 0;
    animation: floatHalo 5.6s ease-in-out infinite;
}

@keyframes floatHalo {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.94;
    }

    50% {
        transform: translateY(-12px) scale(1.03);
        opacity: 1;
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.52;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.orb.one {
    width: 110px;
    height: 110px;
    left: 6%;
    top: 16%;
    background: radial-gradient(circle, rgba(255, 241, 191, 0.8), rgba(255, 179, 72, 0.18) 62%, transparent 74%);
    animation: orb1 7s ease-in-out infinite;
}

.orb.two {
    width: 170px;
    height: 170px;
    right: 4%;
    top: 14%;
    background: radial-gradient(circle, rgba(255, 205, 108, 0.56), rgba(255, 144, 44, 0.12) 62%, transparent 74%);
    animation: orb2 8s ease-in-out infinite;
}

.orb.three {
    width: 140px;
    height: 140px;
    left: 14%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(255, 208, 97, 0.42), rgba(255, 127, 50, 0.09) 62%, transparent 74%);
    animation: orb3 6.2s ease-in-out infinite;
}

@keyframes orb1 {
    0%,
    100% { transform: translate(0, 0); }
    50% { transform: translate(18px, -10px); }
}

@keyframes orb2 {
    0%,
    100% { transform: translate(0, 0); }
    50% { transform: translate(-14px, 12px); }
}

@keyframes orb3 {
    0%,
    100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -16px); }
}

.stage {
    position: relative;
    width: min(88vw, 700px);
    aspect-ratio: 1 / 1.05;
    transform-style: preserve-3d;
    transition: transform 0.16s linear;
    will-change: transform;
    cursor: grab;
    user-select: none;
    z-index: 2;
}

.stage.dragging {
    cursor: grabbing;
}

.plinth {
    position: absolute;
    left: 50%;
    bottom: 7%;
    width: 54%;
    height: 13%;
    transform: translateX(-50%) translateZ(-40px) rotateX(76deg);
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center, rgba(255, 242, 206, 0.24), rgba(255, 204, 111, 0.18) 34%, rgba(112, 52, 14, 0.86) 64%, rgba(28, 12, 8, 0.95) 100%);
    box-shadow:
        0 34px 46px rgba(0, 0, 0, 0.52),
        0 8px 28px rgba(255, 184, 84, 0.1),
        inset 0 2px 10px rgba(255, 255, 255, 0.12);
}

.shadow {
    position: absolute;
    left: 50%;
    bottom: 10%;
    width: 40%;
    height: 8%;
    transform: translateX(-50%) translateZ(-80px);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.22) 54%, transparent 76%);
    filter: blur(22px);
}

.product {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
    transform: translateZ(30px);
    filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.34)) drop-shadow(0 14px 34px rgba(255, 182, 71, 0.16));
}

.product::before {
    content: "";
    position: absolute;
    width: 52%;
    height: 74%;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(255, 248, 223, 0.14), rgba(255, 230, 160, 0.03));
    transform: translateZ(-18px) translateY(6px);
    filter: blur(14px);
    opacity: 0.95;
}

.product-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.product-visual {
    position: relative;
    width: min(58%, 350px);
    min-height: 520px;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
    z-index: 4;
}

.product-card img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    transform: translateZ(46px);
    pointer-events: none;
    filter: saturate(1.05) contrast(1.03);
}

.glass {
    position: absolute;
    inset: 10% 26% 16%;
    border-radius: 42px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.08)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 246, 226, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -16px 36px rgba(255, 176, 64, 0.04),
        0 18px 50px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    transform: translateZ(20px);
    pointer-events: none;
}

.shine {
    position: absolute;
    top: 10%;
    left: 34%;
    width: 8%;
    height: 62%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    filter: blur(10px);
    opacity: 0.72;
    transform: translateZ(76px) rotate(8deg);
    pointer-events: none;
    mix-blend-mode: screen;
}

.shine.two {
    left: auto;
    right: 35%;
    width: 5%;
    height: 42%;
    opacity: 0.24;
    transform: translateZ(60px) rotate(-8deg);
}

.callout {
    position: absolute;
    max-width: 170px;
    padding: 14px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    color: #fff6e4;
    z-index: 3;
    transform-style: preserve-3d;
}

.callout strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.callout span {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 243, 222, 0.72);
    line-height: 1.45;
}

.callout.left {
    left: 4%;
    top: 24%;
    transform: translateZ(112px);
}

.callout.right {
    right: 4%;
    top: 52%;
    transform: translateZ(104px);
}

.drag-hint {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    color: rgba(255, 243, 222, 0.68);
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    z-index: 4;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
}

.product-fallback {
    position: relative;
    z-index: 5;
    display: grid;
    gap: 0.8rem;
    width: min(220px, 46%);
    transform: translateZ(46px);
}

.product-summary-panel {
    padding: 1.3rem 1.4rem;
    display: grid;
    gap: 0.95rem;
}

.product-summary-panel.is-loading {
    min-height: 180px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-chip {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 242, 223, 0.14);
}

.product-headline {
    display: grid;
    gap: 0.45rem;
}

.product-headline h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 0.95;
}

.product-headline p,
.product-description {
    color: var(--color-muted);
    line-height: 1.7;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.product-image-hidden {
    opacity: 0;
}

.section-heading {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 2.4rem;
}

.section-heading span {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.76rem;
    color: rgba(255, 242, 223, 0.72);
}

.section-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    line-height: 0.96;
}

.section-heading p {
    max-width: 58ch;
    color: var(--color-muted);
    line-height: 1.7;
}

.section-heading-inline {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
}

.content-section {
    padding: 2rem 0 5rem;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 248, 240, 0.02), rgba(255, 248, 240, 0.04));
}

.card-grid,
.faq-list,
.dashboard-grid,
.dashboard-cards,
.dashboard-video-list {
    display: grid;
    gap: 1rem;
}

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

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

.faq-list {
    gap: 1rem;
}

.video-card {
    overflow: hidden;
}

.video-card-featured {
    display: grid;
    grid-template-columns: minmax(220px, 290px) minmax(260px, 1fr);
    align-items: center;
    gap: 1.25rem;
    padding: 1.2rem;
}

.video-card-local {
    min-height: 100%;
}

.video-card-frame {
    width: min(100%, 290px);
}

.featured-video-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
    z-index: 80;
}

.featured-video-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.featured-video-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(10, 5, 4, 0.82);
    backdrop-filter: blur(14px);
    cursor: pointer;
}

.featured-video-player {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    position: relative;
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    transition: opacity 0.24s ease, transform 0.24s ease;
    z-index: 1;
}

.featured-video-modal.is-visible .featured-video-player {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.featured-video-close {
    border: 1px solid rgba(255, 244, 229, 0.2);
    border-radius: 999px;
    background: rgba(42, 20, 13, 0.82);
    color: #fff5e5;
    padding: 0.72rem 1rem;
    font: inherit;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.video-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.video-copy {
    padding: 1.2rem;
    display: grid;
    gap: 0.6rem;
    align-content: center;
}

.video-copy h3,
.faq-question {
    font-size: 1.1rem;
}

.video-copy p,
.faq-answer {
    color: var(--color-muted);
    line-height: 1.7;
}

.video-card-local .video-copy h3 {
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    line-height: 1.05;
}

.video-card-local .video-copy p {
    font-size: 1rem;
    max-width: 30ch;
}

.faq-item {
    padding: 1.2rem 1.3rem;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 700;
}

.faq-question::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--color-gold);
}

.faq-item[open] .faq-question::after {
    content: "-";
}

.faq-answer {
    padding-top: 0.8rem;
}

.auth-shell {
    position: fixed;
    inset: 0;
    z-index: 30;
}

.auth-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 8, 6, 0.72);
    backdrop-filter: blur(10px);
}

.auth-panel {
    position: absolute;
    top: 50%;
    right: max(1rem, calc((100vw - 1180px) / 2));
    transform: translateY(-50%);
    width: min(420px, calc(100vw - 2rem));
    padding: 1.35rem;
    border-radius: 28px;
    background: rgba(34, 18, 13, 0.92);
    border: 1px solid rgba(255, 242, 223, 0.12);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.auth-header,
.auth-tabs,
.auth-form,
.auth-field {
    display: grid;
}

.auth-header {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 1rem;
}

.auth-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: rgba(255, 242, 223, 0.68);
    margin-bottom: 0.4rem;
}

.auth-close {
    border: 0;
    background: transparent;
    color: var(--color-text);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.auth-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.auth-tab {
    border: 1px solid rgba(255, 242, 223, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-weight: 700;
    cursor: pointer;
}

.auth-tab.is-active {
    background: rgba(255, 255, 255, 0.11);
}

.auth-form {
    gap: 0.9rem;
    display: none;
}

.auth-form.is-active {
    display: grid;
}

.auth-field {
    gap: 0.45rem;
}

.auth-field span {
    color: rgba(255, 242, 223, 0.82);
    font-size: 0.92rem;
}

.auth-field input {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 242, 223, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    outline: none;
}

.auth-submit {
    margin-top: 0.4rem;
}

.auth-feedback {
    min-height: 1.4rem;
    margin-top: 0.9rem;
    color: rgba(255, 242, 223, 0.9);
}

.auth-feedback.is-error {
    color: #ffd0c6;
}

.auth-feedback.is-success {
    color: #d8f3da;
}

.dashboard-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
}

.application-page {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.25rem;
    align-items: start;
}

.application-copy,
.application-videos,
.application-steps {
    display: grid;
    gap: 1rem;
}

.dashboard-cards,
.dashboard-video-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-hero,
.dashboard-card {
    padding: 1.25rem;
}

.dashboard-profile-card {
    margin-top: 1rem;
    padding: 1rem;
    display: grid;
    gap: 0.25rem;
}

.dashboard-card,
.dashboard-page {
    display: grid;
    gap: 0.9rem;
}

.vertical-video-frame {
    width: min(100%, 280px);
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(12, 8, 6, 0.9);
    border: 1px solid rgba(255, 242, 223, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.featured-video-frame {
    width: min(92vw, 420px);
    max-height: 82vh;
    border-radius: 34px;
    border-color: rgba(255, 242, 223, 0.18);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vertical-video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

body.has-featured-video-open {
    overflow: hidden;
}

.empty-state,
.error-state {
    padding: 1.25rem;
    border: 1px solid var(--color-stroke);
    border-radius: var(--radius-md);
    background: var(--color-panel);
}

.skeleton {
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    background-size: 220% 100%;
    animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-title {
    width: 68%;
    height: 1.4rem;
}

.skeleton-text {
    width: 100%;
    height: 0.95rem;
}

.skeleton-text.short {
    width: 72%;
}

.skeleton-button {
    width: 12rem;
    height: 3rem;
}

@media (max-width: 1180px) {
    .hero-grid,
    .hero-metrics,
    .dashboard-grid,
    .dashboard-cards,
    .dashboard-video-list,
    .application-page,
    .section-heading-inline {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 11ch;
    }

    .stage-wrap {
        min-height: 640px;
    }

    .featured-video-modal {
        padding: 1rem;
    }

    .featured-video-frame {
        width: min(94vw, 360px);
        max-height: 78vh;
        border-radius: 28px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-card-featured {
        grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .nav-bar {
        flex-direction: column;
        align-items: stretch;
        border-radius: 28px;
    }

    .nav-utility {
        justify-content: stretch;
    }

    .language-picker,
    .button-compact {
        flex: 1 1 0;
        justify-content: center;
    }

    .auth-panel {
        left: 1rem;
        right: 1rem;
        top: auto;
        bottom: 1rem;
        transform: none;
        width: auto;
    }

    .video-card-featured {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .video-card-frame {
        width: min(100%, 320px);
    }

    .video-card-local .video-copy {
        width: 100%;
        padding-top: 0.2rem;
    }

    .video-card-local .video-copy p {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .site-header {
        padding-top: 1rem;
    }

    .hero-section {
        padding-top: 2rem;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 13vw, 4.6rem);
        max-width: 8ch;
    }

    .stage-wrap {
        min-height: 500px;
    }

    .stage {
        width: min(100%, 560px);
    }

    .product-visual {
        width: min(56%, 250px);
        min-height: 320px;
    }

    .glass {
        inset: 13% 22% 18%;
    }

    .callout {
        max-width: 132px;
        padding: 10px 12px;
    }

    .callout strong {
        font-size: 0.84rem;
    }

    .callout span {
        font-size: 0.74rem;
    }

    .callout.left {
        left: 0;
        top: 18%;
    }

    .callout.right {
        right: 0;
        top: auto;
        bottom: 24%;
    }

    .drag-hint {
        font-size: 0.76rem;
        bottom: 0.35rem;
    }

    .product-summary-panel {
        padding: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .stage,
    .halo,
    .orb,
    .skeleton {
        animation: none !important;
        transition: none !important;
    }
}
