:root {
    --bg: #070b1d;
    --surface: rgba(9, 17, 41, 0.78);
    --surface-strong: #0f1738;
    --surface-soft: rgba(255, 255, 255, 0.06);
    --text: #f7f0e4;
    --muted: #d5c4aa;
    --gold: #f4bf72;
    --gold-strong: #f0a63f;
    --accent: #d63f4b;
    --line: rgba(255, 255, 255, 0.1);
    --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1180px, calc(100vw - 40px));
}

@font-face {
    font-family: "Caxton Book BT";
    src: url("caxton-book-bt.woff") format("woff");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@keyframes galaSweep {
    0% {
        transform: translate3d(-5%, -2%, 0) rotate(-6deg) scale(1.02);
        opacity: 0.26;
    }

    50% {
        transform: translate3d(2%, 1%, 0) rotate(0deg) scale(1.07);
        opacity: 0.34;
    }

    100% {
        transform: translate3d(6%, 3%, 0) rotate(6deg) scale(1.03);
        opacity: 0.22;
    }
}

@keyframes galaOrbLeft {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.16;
    }

    50% {
        transform: translate3d(6vw, 4vh, 0) scale(1.08);
        opacity: 0.24;
    }

    100% {
        transform: translate3d(2vw, 8vh, 0) scale(0.98);
        opacity: 0.15;
    }
}

@keyframes galaOrbRight {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.14;
    }

    50% {
        transform: translate3d(-5vw, -3vh, 0) scale(1.08);
        opacity: 0.23;
    }

    100% {
        transform: translate3d(-2vw, -7vh, 0) scale(0.98);
        opacity: 0.14;
    }
}

@keyframes galaSparkle {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0.12;
    }

    50% {
        transform: translate3d(-1.2%, 1.1%, 0);
        opacity: 0.18;
    }

    100% {
        transform: translate3d(1.1%, -0.8%, 0);
        opacity: 0.11;
    }
}

@keyframes wheelDrift {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(5deg) scale(1.015);
    }

    100% {
        transform: rotate(-4deg) scale(0.995);
    }
}

body {
    position: relative;
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top, rgba(214, 63, 75, 0.16), transparent 22%),
        radial-gradient(circle at 15% 20%, rgba(244, 191, 114, 0.14), transparent 18%),
        linear-gradient(180deg, #040714 0%, #09112b 45%, #050914 100%);
    color: var(--text);
    font-family: "Nunito Sans", sans-serif;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: -12%;
    pointer-events: none;
    z-index: 0;
}

body::before {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 232, 196, 0.14) 0 1px, transparent 2px),
        radial-gradient(circle at 72% 30%, rgba(244, 191, 114, 0.12) 0 1.6px, transparent 3px),
        radial-gradient(circle at 52% 74%, rgba(255, 244, 224, 0.11) 0 1px, transparent 2px),
        radial-gradient(circle at 86% 68%, rgba(214, 63, 75, 0.11) 0 1.6px, transparent 3px),
        conic-gradient(from 210deg at 50% 50%, transparent 0deg, rgba(244, 191, 114, 0.09) 32deg, transparent 78deg, transparent 180deg, rgba(214, 63, 75, 0.07) 224deg, transparent 280deg);
    filter: blur(0.5px);
    opacity: 0.18;
    transform-origin: center;
    animation: galaSweep 20s ease-in-out infinite alternate;
}

body::after {
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.05) 0 18%, transparent 42%),
        radial-gradient(circle at 84% 28%, rgba(244, 191, 114, 0.065) 0 14%, transparent 38%),
        radial-gradient(circle at 68% 82%, rgba(255, 238, 212, 0.05) 0 16%, transparent 38%),
        linear-gradient(115deg, transparent 14%, rgba(255, 245, 220, 0.05) 33%, transparent 52%, rgba(244, 191, 114, 0.045) 70%, transparent 82%);
    mix-blend-mode: screen;
    opacity: 0.15;
    animation: galaSparkle 12s ease-in-out infinite alternate;
}

a {
    color: inherit;
}

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

.page-shell {
    position: relative;
    overflow: hidden;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 38vw;
    height: 38vw;
    pointer-events: none;
    filter: blur(38px);
    opacity: 0.18;
    z-index: 0;
}

.page-shell::before {
    top: 10vh;
    left: -10vw;
    width: 44vw;
    height: 44vw;
    background: radial-gradient(circle, rgba(255, 213, 128, 0.98) 0%, rgba(244, 191, 114, 0.92) 26%, rgba(244, 191, 114, 0.48) 52%, transparent 74%);
    opacity: 0.26;
    animation: galaOrbLeft 17s ease-in-out infinite alternate;
}

.page-shell::after {
    right: -8vw;
    bottom: 10vh;
    width: 34vw;
    height: 34vw;
    background: radial-gradient(circle, rgba(214, 63, 75, 0.62), transparent 68%);
    opacity: 0.14;
    animation: galaOrbRight 19s ease-in-out infinite alternate;
}

.hero,
.section,
.footer {
    position: relative;
    z-index: 1;
}

.hero {
    min-height: min(100vh, 980px);
    background:
        linear-gradient(180deg, rgba(3, 7, 20, 0.02), rgba(3, 7, 20, 0.2)),
        linear-gradient(90deg, rgba(4, 8, 24, 0.16) 0%, rgba(4, 8, 24, 0.04) 42%, rgba(4, 8, 24, 0.12) 100%),
        url("desktop.png") center top / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 38%, rgba(244, 191, 114, 0.03), transparent 18%),
        linear-gradient(180deg, transparent 0%, rgba(7, 11, 29, 0.04) 58%, rgba(7, 11, 29, 0.18) 100%);
}

.section,
.footer {
    width: var(--container);
    margin: 0 auto;
}

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

.eyebrow,
.section-kicker,
.success-eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
}

.section h2,
.success-panel h3 {
    margin: 0;
    font-family: "Caxton Book BT", "Playfair Display", serif;
    font-weight: 400;
    line-height: 0.94;
}

.hero-copy {
    margin: 0;
    max-width: 680px;
    font-size: 1.18rem;
    line-height: 1.75;
    color: rgba(247, 240, 228, 0.9);
}

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

.button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 16px 24px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
    color: #1f1509;
    box-shadow: 0 18px 45px rgba(240, 166, 63, 0.3);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--line);
}

.button-block {
    width: 100%;
}

.hero-intro {
    padding-top: 24px;
    padding-bottom: 48px;
}

.hero-intro-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 36px;
    align-items: end;
    padding: 36px 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(15, 22, 50, 0.88), rgba(8, 13, 31, 0.96));
    box-shadow: var(--shadow);
}

.hero-intro-copy {
    display: grid;
    gap: 12px;
}

.hero-intro-aside {
    display: grid;
    justify-items: start;
    gap: 16px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

.hero-location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex: 0 0 auto;
}

.hero-location-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.section {
    padding: 72px 0;
}

.section h2,
.success-panel h3 {
    font-size: clamp(2.3rem, 4.3vw, 3.9rem);
    margin-bottom: 0;
    text-wrap: balance;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
    gap: 38px;
    align-items: start;
}

.intro {
    position: relative;
    overflow: hidden;
    padding: 44px 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(16, 24, 54, 0.92), rgba(9, 14, 35, 0.96)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.intro::before {
    content: "";
    position: absolute;
    inset: auto auto -18% -8%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 191, 114, 0.16), transparent 68%);
    filter: blur(24px);
    pointer-events: none;
    z-index: -1;
}

.trophy {
    position: relative;
    overflow: hidden;
    padding: 44px 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(14, 22, 50, 0.94), rgba(10, 15, 37, 0.97)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.trophy::before {
    content: "";
    position: absolute;
    inset: -18% -6% auto auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 191, 114, 0.14), transparent 70%);
    filter: blur(28px);
    pointer-events: none;
    z-index: -1;
}

.trophy .section-heading h2 {
    line-height: 1.06;
}

.intro.two-column {
    align-items: center;
}

.trophy.two-column {
    align-items: start;
}

.section-heading,
.section-body {
    min-width: 0;
}

.section-body p,
.story-card p,
.vote-copy p,
.vote-highlights li,
.form-note,
.field-hint,
.success-panel p {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.9;
    color: rgba(247, 240, 228, 0.85);
}

.section-body {
    display: grid;
    gap: 22px;
}

.highlighted {
    padding: 56px 0;
}

.narrow {
    max-width: 780px;
}

.concept .section-heading {
    max-width: 1240px;
}

.concept .section-heading h2 {
    max-width: 1180px;
    font-size: clamp(2.25rem, 4.1vw, 3.5rem);
}

.emotion-wheel-wrap {
    position: relative;
    display: grid;
    justify-content: center;
    justify-items: center;
    margin: 38px 0 18px;
    touch-action: none;
    user-select: none;
    cursor: grab;
}

.emotion-wheel-wrap.is-dragging {
    cursor: grabbing;
}

.emotion-wheel-wrap.is-spinning {
    cursor: wait;
}

.emotion-wheel-wrap:focus-visible {
    outline: 2px solid rgba(244, 191, 114, 0.72);
    outline-offset: 12px;
}

.emotion-wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 28px solid rgba(255, 221, 166, 0.98);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
    z-index: 5;
}

.emotion-wheel-pointer::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 245, 230, 0.96);
    box-shadow: 0 0 18px rgba(244, 191, 114, 0.45);
}

.emotion-wheel-shell {
    transform: rotate(var(--wheel-rotation, 0deg));
    will-change: transform;
}

.emotion-wheel {
    position: relative;
    width: min(420px, 72vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        conic-gradient(
            from -22deg,
            rgba(244, 191, 114, 0.98) 0deg 45deg,
            rgba(225, 128, 82, 0.92) 45deg 90deg,
            rgba(193, 81, 81, 0.92) 90deg 135deg,
            rgba(128, 82, 145, 0.9) 135deg 180deg,
            rgba(72, 97, 173, 0.92) 180deg 225deg,
            rgba(74, 145, 171, 0.92) 225deg 270deg,
            rgba(101, 172, 134, 0.92) 270deg 315deg,
            rgba(184, 191, 93, 0.94) 315deg 360deg
        );
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.emotion-wheel::before,
.emotion-wheel::after {
    content: "";
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.emotion-wheel::before {
    width: 76%;
    height: 76%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 60%),
        radial-gradient(circle, rgba(9, 17, 41, 0.18), rgba(9, 17, 41, 0.08) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.emotion-wheel::after {
    width: 18%;
    height: 18%;
    background: radial-gradient(circle, rgba(255, 245, 230, 0.95), rgba(244, 191, 114, 0.88) 45%, rgba(240, 166, 63, 0.74) 100%);
    box-shadow: 0 0 26px rgba(244, 191, 114, 0.38);
}

.emotion-wheel-core {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 42%;
    height: 42%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding: 18px;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 16, 37, 0.9), rgba(7, 11, 29, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.emotion-wheel-core span {
    color: var(--text);
    font-family: "Caxton Book BT", "Playfair Display", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    line-height: 0.95;
}

.emotion-wheel-label {
    position: absolute;
    left: 50%;
    top: 50%;
    min-width: 96px;
    padding: 6px 8px;
    border: 1px solid rgba(120, 92, 44, 0.22);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 246, 224, 0.96), rgba(233, 218, 181, 0.94));
    color: rgba(86, 61, 20, 0.96);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
    z-index: 3;
    transform: translate(-50%, -50%) rotate(var(--label-angle, 0deg)) translateX(var(--label-radius, 146px));
    transform-origin: center;
}

.emotion-wheel-label.is-selected {
    background: linear-gradient(180deg, rgba(255, 250, 235, 0.99), rgba(244, 225, 180, 0.98));
    color: #40280b;
    border-color: rgba(164, 118, 34, 0.32);
    box-shadow:
        0 0 0 2px rgba(255, 236, 192, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.emotion-wheel-result {
    margin: 22px 0 0;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.emotion-wheel-label.label-1 { --label-angle: -90deg; --label-radius: 144px; }
.emotion-wheel-label.label-2 { --label-angle: -45deg; --label-radius: 144px; }
.emotion-wheel-label.label-3 { --label-angle: 0deg; --label-radius: 144px; }
.emotion-wheel-label.label-4 { --label-angle: 45deg; --label-radius: 144px; }
.emotion-wheel-label.label-5 { --label-angle: 90deg; --label-radius: 144px; }
.emotion-wheel-label.label-6 { --label-angle: 135deg; --label-radius: 144px; }
.emotion-wheel-label.label-7 { --label-angle: 180deg; --label-radius: 144px; }
.emotion-wheel-label.label-8 { --label-angle: -135deg; --label-radius: 144px; }

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.story-card,
.form-card,
.reply-card,
.success-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(17, 26, 58, 0.88), rgba(9, 15, 35, 0.94));
    box-shadow: var(--shadow);
}

.story-card {
    padding: 28px;
}

.emphasis-card {
    background: linear-gradient(180deg, rgba(247, 191, 114, 0.14), rgba(14, 20, 44, 0.94));
}

.concept-footnote,
.section-cta {
    margin: 28px 0 0;
    color: var(--gold);
    font-size: 1.16rem;
    line-height: 1.8;
    max-width: 100%;
}

.concept-footnote {
    white-space: nowrap;
}

.vote-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
    gap: 34px;
    align-items: start;
}

.vote-highlights {
    margin: 28px 0 0;
    padding-left: 20px;
}

.vote-highlights li + li {
    margin-top: 10px;
}

.form-card,
.success-panel {
    padding: 34px;
}

.form-card form {
    display: grid;
    gap: 24px;
}

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

.form-field {
    display: grid;
    gap: 10px;
}

.form-field label,
.form-field legend {
    font-size: 0.98rem;
    line-height: 1.6;
    font-weight: 700;
}

.form-field input,
.form-field select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field select option {
    color: #10131c;
}

.form-field input:focus,
.form-field select:focus {
    border-color: rgba(244, 191, 114, 0.74);
    box-shadow: 0 0 0 4px rgba(244, 191, 114, 0.14);
    background: rgba(255, 255, 255, 0.08);
}

.field-hint,
.form-note {
    color: rgba(213, 196, 170, 0.82);
    font-size: 0.9rem;
}

.consent-field {
    gap: 0;
}

.checkbox-label {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    cursor: pointer;
    font-size: 0.94rem;
    line-height: 1.7;
    color: rgba(247, 240, 228, 0.88);
}

.checkbox-label input {
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    accent-color: var(--gold-strong);
}

.checkbox-label a {
    color: var(--gold);
}

.form-note span {
    color: var(--gold);
}

.radio-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

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

.choice-pill {
    position: relative;
    display: flex;
}

.choice-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-pill span {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 600;
    text-align: center;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.choice-pill input:checked + span {
    border-color: rgba(244, 191, 114, 0.72);
    background: rgba(244, 191, 114, 0.16);
    color: var(--gold);
    transform: translateY(-1px);
}

.form-actions {
    display: grid;
    gap: 12px;
}

.success-panel {
    display: grid;
    gap: 14px;
}

.footer {
    display: grid;
    gap: 18px;
    padding: 28px 0 56px;
    color: rgba(247, 240, 228, 0.72);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    justify-items: center;
    text-align: center;
}

.footer a {
    color: var(--gold);
}

.footer-social,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 18px;
}

.footer-company {
    margin: 0;
    text-align: center;
}

.footer-social span {
    color: rgba(247, 240, 228, 0.72);
}

.footer-links a,
.footer-social a {
    text-decoration: none;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex: 0 0 auto;
}

.footer-social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        background-position: 60% top;
        aspect-ratio: 16 / 11;
    }

    .two-column,
    .vote-layout,
    .story-grid,
    .form-row,
    .radio-grid {
        grid-template-columns: 1fr;
    }

    .hero-intro-card {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 28px;
    }

    .intro {
        padding: 34px 30px;
    }

    .trophy {
        padding: 34px 30px;
    }

    .emphasis-card {
        transform: none;
    }

    .section {
        padding: 56px 0;
    }

    .concept-footnote {
        white-space: normal;
    }

    .emotion-wheel {
        width: min(380px, 82vw);
    }

    .emotion-wheel-pointer {
        top: -12px;
        border-left-width: 15px;
        border-right-width: 15px;
        border-top-width: 24px;
    }

    .emotion-wheel-label {
        font-size: 0.7rem;
        min-width: 94px;
        padding: 6px 8px;
    }

    .emotion-wheel-label.label-1,
    .emotion-wheel-label.label-2,
    .emotion-wheel-label.label-3,
    .emotion-wheel-label.label-4,
    .emotion-wheel-label.label-5,
    .emotion-wheel-label.label-6,
    .emotion-wheel-label.label-7,
    .emotion-wheel-label.label-8 {
        --label-radius: 130px;
    }
}

@media (max-width: 720px) {
    :root {
        --container: calc(100vw - 32px);
    }

    .hero {
        background-image:
            linear-gradient(180deg, rgba(3, 7, 20, 0.02), rgba(3, 7, 20, 0.14)),
            linear-gradient(90deg, rgba(4, 8, 24, 0.1) 0%, rgba(4, 8, 24, 0.02) 42%, rgba(4, 8, 24, 0.08) 100%),
            url("mobile.png");
        background-position: center top;
        aspect-ratio: 1 / 1;
    }

    .hero-intro {
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .hero-intro-card {
        padding: 24px 20px;
        gap: 20px;
        border-radius: 24px;
        text-align: center;
        justify-items: center;
    }

    .hero-intro-copy,
    .hero-intro-aside {
        justify-items: center;
    }

    .hero-copy {
        max-width: 32ch;
    }

    .hero-actions {
        width: 100%;
        justify-content: center;
    }

    .footer {
        gap: 16px;
    }

    .footer-social {
        gap: 10px 14px;
    }

    .footer-social-link span:last-child {
        display: none;
    }

    .footer-social-icon {
        width: 22px;
        height: 22px;
    }

    .button {
        width: 100%;
        text-align: center;
    }

    .eyebrow,
    .section-kicker {
        font-size: 0.7rem;
        letter-spacing: 0.14em;
    }

    .hero-copy {
        font-size: 1.02rem;
    }

    .hero-copy,
    .section-body p,
    .story-card p,
    .vote-copy p,
    .vote-highlights li {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .section h2,
    .success-panel h3 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .section {
        padding: 48px 0;
    }

    .intro {
        padding: 28px 22px;
        gap: 24px;
    }

    .trophy {
        padding: 28px 22px;
        gap: 24px;
    }

    .highlighted {
        padding: 40px 0;
    }

    .story-card {
        padding: 22px;
    }

    .vote-copy {
        margin-bottom: 12px;
    }

    .form-card,
    .success-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .form-field input,
    .form-field select {
        padding: 14px 16px;
        border-radius: 14px;
    }

    .choice-pill span {
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 0.92rem;
    }

    .checkbox-label {
        font-size: 0.88rem;
        gap: 10px;
    }

    .hero-location {
        justify-content: center;
        text-align: center;
        font-size: 0.92rem;
    }

    .concept-footnote,
    .section-cta {
        font-size: 1rem;
    }

    .emotion-wheel-wrap {
        margin: 30px 0 14px;
    }

    .emotion-wheel {
        width: min(320px, 86vw);
    }

    .emotion-wheel-pointer {
        top: -10px;
        border-left-width: 13px;
        border-right-width: 13px;
        border-top-width: 20px;
    }

    .emotion-wheel-core {
        width: 46%;
        height: 46%;
    }

    .emotion-wheel-core span {
        font-size: clamp(1.15rem, 5vw, 1.5rem);
    }

    .emotion-wheel-label {
        font-size: 0.64rem;
        min-width: 82px;
        padding: 5px 7px;
    }

    .emotion-wheel-label.label-1,
    .emotion-wheel-label.label-2,
    .emotion-wheel-label.label-3,
    .emotion-wheel-label.label-4,
    .emotion-wheel-label.label-5,
    .emotion-wheel-label.label-6,
    .emotion-wheel-label.label-7,
    .emotion-wheel-label.label-8 {
        --label-radius: 108px;
    }

    .emotion-wheel-result {
        margin-top: 18px;
        font-size: 0.92rem;
    }


    .footer-company {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .footer-links {
        gap: 10px 16px;
        font-size: 0.88rem;
    }
}

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

    body::before,
    body::after,
    .page-shell::before,
    .page-shell::after {
        animation: none;
    }

    .button,
    .choice-pill span,
    .form-field input,
    .form-field select {
        transition: none;
    }
}

/*add*/
.vote-message {
    white-space: pre-line;
}