: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(1440px, 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 {
    margin: 0 0 16px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-family: "Nunito Sans", sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.3rem);
    font-weight: 800;
    line-height: 1.5;
}

.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;
}

.intro-kicker {
    font-size: 1.35rem;
    letter-spacing: 0.18em;
    color: var(--gold);
}

.section-subtitle {
    margin: 8px 0 0;
    font-family: "Caxton Book BT", "Playfair Display", serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    color: var(--text);
}

.section-body .section-subtitle {
    margin-top: 28px;
    padding-bottom: 6px;
    color: var(--gold);
}

.section h2:not(.eyebrow),
.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: none;
    font-size: 1.14rem;
    line-height: 1.85;
    color: rgba(247, 240, 228, 0.88);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 24px 48px;
    font: inherit;
    font-size: 1.18rem;
    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, 3fr) minmax(200px, 0.8fr);
    grid-template-rows: auto auto auto;
    gap: 0 48px;
    align-items: center;
    padding: 44px 48px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(15, 22, 50, 0.6), rgba(8, 13, 31, 0.7));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-intro-card > .eyebrow {
    grid-column: 1 / -1;
}

.hero-intro-copy {
    display: grid;
    gap: 16px;
    grid-column: 1;
    grid-row: 2 / 3;
}

.hero-intro-aside {
    display: grid;
    align-content: center;
    justify-items: stretch;
    gap: 16px;
    grid-column: 2;
    grid-row: 2 / 3;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    grid-column: 1 / -1;
    margin: 0;
    padding: 20px 0;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 180ms ease;
}

.hero-location:hover {
    color: var(--gold);
}

.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:not(.eyebrow),
.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: 1fr auto 1.2fr;
    gap: 0 32px;
    align-items: start;
}

.two-column::before {
    display: none;
}

.column-divider {
    grid-column: 2;
    grid-row: 1;
    width: 2px;
    align-self: stretch;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--gold) 8%,
        var(--gold) 92%,
        transparent 100%
    );
    opacity: 0.7;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(244, 191, 114, 0.3);
}

.intro .section-heading h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.25;
    max-width: 100%;
}

.intro .section-heading p:not(.section-kicker):not(.intro-kicker) {
    margin-top: 16px;
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(247, 240, 228, 0.82);
}

.intro-lineup {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(244, 191, 114, 0.35);
    box-shadow:
        0 0 20px rgba(244, 191, 114, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-lineup:hover {
    transform: scale(1.02);
    box-shadow:
        0 0 30px rgba(244, 191, 114, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.5);
}

.intro {
    position: relative;
    overflow: hidden;
    padding: 52px 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(16, 24, 54, 0.6), rgba(9, 14, 35, 0.7)),
        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;
}

/* Floating emotion decorations */
.emotion-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

@keyframes emotionDrift {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: var(--ei-opacity, 0.15);
    }
    80% {
        opacity: var(--ei-opacity, 0.15);
    }
    100% {
        transform: translateY(var(--ei-drift, -20px)) scale(var(--ei-scale-end, 1.1));
        opacity: 0;
    }
}

.emotion-icon {
    position: absolute;
    font-size: var(--ei-size, 1.6rem);
    opacity: 0;
    filter: blur(0.4px);
    animation: emotionDrift var(--ei-dur, 8s) ease-in-out infinite;
    animation-delay: var(--ei-delay, 0s);
}

.ei-1 {
    top: 12%;
    left: 32%;
    --ei-size: 1.8rem;
    --ei-opacity: 0.2;
    --ei-drift: -18px;
    --ei-dur: 7s;
    --ei-delay: 0s;
}

.ei-2 {
    top: 65%;
    left: 6%;
    --ei-size: 1.3rem;
    --ei-opacity: 0.12;
    --ei-drift: -14px;
    --ei-dur: 9s;
    --ei-delay: 1.2s;
}

.ei-3 {
    top: 8%;
    left: 18%;
    --ei-size: 1rem;
    --ei-opacity: 0.18;
    --ei-drift: -12px;
    --ei-dur: 6s;
    --ei-delay: 2.5s;
    color: var(--gold);
}

.ei-4 {
    bottom: 12%;
    left: 28%;
    --ei-size: 1.5rem;
    --ei-opacity: 0.14;
    --ei-drift: -22px;
    --ei-dur: 10s;
    --ei-delay: 3.8s;
}

.ei-5 {
    top: 42%;
    left: 4%;
    --ei-size: 2.2rem;
    --ei-opacity: 0.1;
    --ei-drift: -10px;
    --ei-scale-end: 1.15;
    --ei-dur: 12s;
    --ei-delay: 0.8s;
    color: var(--gold);
    font-weight: 300;
}

.ei-6 {
    top: 28%;
    left: 12%;
    --ei-size: 1.1rem;
    --ei-opacity: 0.16;
    --ei-drift: -16px;
    --ei-dur: 8s;
    --ei-delay: 5s;
}

.ei-7 {
    bottom: 22%;
    left: 38%;
    --ei-size: 1.6rem;
    --ei-opacity: 0.13;
    --ei-drift: -20px;
    --ei-dur: 9.5s;
    --ei-delay: 2s;
}

.ei-8 {
    top: 55%;
    left: 22%;
    --ei-size: 0.9rem;
    --ei-opacity: 0.2;
    --ei-drift: -8px;
    --ei-dur: 7.5s;
    --ei-delay: 4.2s;
    color: var(--gold);
}

.trophy {
    position: relative;
    overflow: visible;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.trophy::before {
    display: none;
}

.trophy-card {
    position: relative;
    padding: 56px 56px 52px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    background: linear-gradient(165deg, rgba(15, 22, 54, 0.6), rgba(8, 13, 31, 0.7));
    box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    isolation: isolate;
}

.trophy-card::before {
    content: "∞";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(20rem, 40vw, 38rem);
    font-weight: 300;
    color: rgba(244, 191, 114, 0.04);
    line-height: 1;
    pointer-events: none;
    z-index: -1;
}

.trophy-header {
    text-align: center;
    margin-bottom: 44px;
}

.trophy-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin: 0;
}

.trophy-infinity {
    display: inline-block;
    font-size: 1.3em;
    color: var(--gold);
}

.trophy-body {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.trophy-body p {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.85;
    color: rgba(247, 240, 228, 0.85);
}

.trophy-closing {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-style: italic;
    color: rgba(247, 240, 228, 0.65);
}

.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;
}

.two-column > .section-heading {
    grid-column: 1;
    grid-row: 1;
}

.two-column > .section-body {
    grid-column: 3;
    grid-row: 1;
}

.section-body p,
.story-card p,
.vote-copy p:not(.section-kicker),
.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;
}

.trophy-list {
    margin: 0;
    padding: 0 0 0 24px;
    display: grid;
    gap: 8px;
}

.trophy-list li {
    font-size: 1.04rem;
    line-height: 1.9;
    color: rgba(247, 240, 228, 0.85);
}

.trophy-list li::marker {
    color: var(--gold);
}

.highlighted {
    padding: 0;
    margin: 80px auto;
    width: min(1440px, calc(100vw - 40px));
}

.concept-card {
    position: relative;
    padding: 56px 56px 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    background: linear-gradient(165deg, rgba(15, 22, 54, 0.6), rgba(8, 13, 31, 0.7));
    box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    isolation: isolate;
}

.concept-card::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -8%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 191, 114, 0.07), transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

.concept-card::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 63, 75, 0.06), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.concept-divider {
    height: 1px;
    margin: 44px 0;
    background: linear-gradient(90deg, transparent, rgba(244, 191, 114, 0.2) 20%, rgba(244, 191, 114, 0.2) 80%, transparent);
}

.narrow {
    max-width: 780px;
}

.concept .section-heading h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.25;
}

.concept-intro {
    margin: 20px 0 0;
    max-width: 860px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(247, 240, 228, 0.85);
}

.concept-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    overflow: visible;
    isolation: auto;
}

.concept-hero::before,
.concept-hero::after {
    display: none;
}

.concept-hero::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 191, 114, 0.1), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.concept-hero::after {
    content: "";
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 63, 75, 0.08), transparent 65%);
    filter: blur(32px);
    pointer-events: none;
    z-index: -1;
}

.concept-hero .section-heading {
    min-width: 0;
}

.concept-hero .emotion-wheel-wrap {
    margin: 0;
}

.concept-body {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.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; }

.concept-bridge {
    margin: 0 auto;
    padding: 0;
    border-top: none;
    text-align: center;
    max-width: 860px;
}

.concept-bridge .section-subtitle {
    margin: 0 0 16px;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    line-height: 1.3;
    color: var(--gold);
}

.concept-bridge p {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.85;
    color: rgba(247, 240, 228, 0.85);
}

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

.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 {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 36px 32px 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg, 16px);
    background: linear-gradient(170deg, rgba(20, 28, 60, 0.5), rgba(10, 15, 36, 0.55));
    box-shadow: none;
    transition: transform 320ms ease, box-shadow 320ms ease, background 320ms ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    background: linear-gradient(170deg, rgba(26, 34, 68, 0.6), rgba(14, 20, 44, 0.65));
    border-color: rgba(244, 191, 114, 0.15);
}

.story-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    color: #1f1509;
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.story-card .section-subtitle {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.2;
    color: var(--gold);
}

.story-card p:last-child {
    margin: 0;
}

.story-card-subtitle {
    margin: 4px 0 0;
    color: var(--gold);
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
}

.music-card {
    position: relative;
    overflow: hidden;
}

.music-notes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

@keyframes noteFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-60px) rotate(18deg);
        opacity: 0;
    }
}

.note {
    position: absolute;
    color: var(--gold);
    font-size: 2rem;
    opacity: 0;
    animation: noteFloat 4s ease-in-out infinite;
}

.note-1 {
    top: 60%;
    left: 10%;
    font-size: 2.4rem;
    animation-delay: 0s;
    animation-duration: 3.8s;
}

.note-2 {
    top: 50%;
    right: 12%;
    font-size: 2rem;
    animation-delay: 0.8s;
    animation-duration: 4.2s;
}

.note-3 {
    top: 70%;
    left: 45%;
    font-size: 1.6rem;
    animation-delay: 1.6s;
    animation-duration: 3.5s;
}

.note-4 {
    top: 55%;
    right: 6%;
    font-size: 2.2rem;
    animation-delay: 2.4s;
    animation-duration: 4.5s;
}

.note-5 {
    top: 75%;
    left: 72%;
    font-size: 1.8rem;
    animation-delay: 3.2s;
    animation-duration: 3.2s;
}

.emphasis-card {
    background: linear-gradient(170deg, rgba(36, 30, 20, 0.45), rgba(14, 18, 40, 0.55));
    border-color: rgba(244, 191, 114, 0.1);
}

.concept-footnote,
.section-cta {
    margin: 36px 0 0;
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 100%;
    text-align: center;
    font-style: italic;
}

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

/* Gold divider */
.section-gold-divider {
    width: min(600px, 60%);
    height: 2px;
    margin: 32px auto;
    background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    border-radius: 2px;
}

/* Accord section */
.accord-card {
    position: relative;
    padding: 56px 56px 52px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    background: linear-gradient(165deg, rgba(15, 22, 54, 0.6), rgba(8, 13, 31, 0.7));
    box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    text-align: center;
}

.accord-header {
    margin-bottom: 36px;
}

.accord-body {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.accord-body p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(247, 240, 228, 0.85);
}

.accord-cta {
    margin-top: 8px;
    color: var(--gold) !important;
    font-size: 1.15rem !important;
}

.accord-body .button {
    justify-self: center;
}

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

.vote {
    padding-top: 120px;
}

.vote-copy {
    display: grid;
    gap: 20px;
}

.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,
    .concept-hero {
        grid-template-columns: 1fr;
    }

    .two-column::before {
        display: none;
    }

    .column-divider {
        display: none;
    }

    .two-column > .section-heading,
    .two-column > .section-body {
        grid-column: 1;
        grid-row: auto;
    }

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

    .hero-intro-copy {
        grid-column: 1;
        grid-row: auto;
    }

    .hero-intro-aside {
        grid-column: 1;
        grid-row: auto;
    }

    .hero-location {
        grid-column: 1;
        margin-top: 8px;
    }

    .intro {
        padding: 34px 30px;
    }

    .trophy-card {
        padding: 40px 30px 36px;
    }

    .accord-card {
        padding: 40px 30px 36px;
    }

    .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: 28px 20px 0;
        gap: 20px;
        border-radius: 24px;
        text-align: center;
        justify-items: center;
    }

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

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

    .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;
    }

    .eyebrow {
        font-size: 1rem;
    }

    .intro-kicker {
        font-size: 1rem;
    }

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

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

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

    .section {
        padding: 48px 0;
    }

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

    .trophy-card {
        padding: 32px 22px 28px;
    }

    .accord-card {
        padding: 32px 22px 28px;
    }

    .highlighted {
        margin: 48px auto;
    }

    .story-card {
        padding: 22px;
    }

    .concept-card {
        padding: 32px 24px 28px;
    }

    .concept-divider {
        margin: 28px 0;
    }

    .trophy-body,
    .accord-body {
        gap: 16px;
    }

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

    .section-gold-divider {
        width: 50%;
    }

    .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;
    }

    .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;
}
.vote-message a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 500;
}
.vote-message a:hover {
    color: #1d4ed8;
    text-decoration: none;
}