:root {
    --bg: #ffffff;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --surface-soft: #f5f8ff;
    --ink: #13203b;
    --ink-soft: #72809c;
    --line: rgba(95, 119, 255, 0.12);
    --line-strong: rgba(95, 119, 255, 0.18);
    --shadow: 0 26px 60px rgba(84, 110, 175, 0.14);
    --shadow-soft: 0 18px 34px rgba(84, 110, 175, 0.1);
    --team: #ffffff;
    --team-border: rgba(95, 119, 255, 0.16);
    --total: #ffffff;
    --total-border: rgba(95, 119, 255, 0.18);
    --high: linear-gradient(135deg, #fff1be 0%, #ffe2a0 100%);
    --high-ink: #60421a;
    --low: linear-gradient(135deg, #9edcff 0%, #74c3ff 100%);
    --low-ink: #123d67;
    --purple: #5b4dff;
    --purple-strong: #4337df;
    --blue-soft: #74c3ff;
    --blue-strong: #2d7ce9;
    --violet-soft: #eef0ff;
    --mint: #57d8a2;
    --mint-soft: #ddfaee;
    --accent: #5f77ff;
    --signal-high: #4337df;
    --signal-low: #2d7ce9;
    --mono: "IBM Plex Mono", "SFMono-Regular", monospace;
    --display: "Newsreader", "Iowan Old Style", "Palatino Linotype", serif;
    --sans: "Manrope", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: var(--sans);
    background:
        radial-gradient(circle at 18% 22%, rgba(95, 119, 255, 0.08), transparent 20rem),
        radial-gradient(circle at 82% 18%, rgba(116, 195, 255, 0.1), transparent 21rem),
        radial-gradient(circle at 78% 72%, rgba(87, 216, 162, 0.08), transparent 20rem),
        linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    background-color: var(--bg);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(95, 119, 255, 0.03), transparent 24%),
        linear-gradient(135deg, rgba(95, 119, 255, 0.025), transparent 40%);
}

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

button {
    font: inherit;
}

.shell {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.backdrop {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(95, 119, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(95, 119, 255, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 88%);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.65rem 0 0;
}

.topbar__actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.brand__lockup {
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
    line-height: 1;
}

.brand__name {
    color: var(--ink);
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.brand__descriptor {
    color: var(--ink-soft);
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topbar__tag,
.eyebrow {
    font-family: var(--mono);
}

.topbar__tag {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0 0.92rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--purple-strong);
    box-shadow: 0 10px 24px rgba(95, 119, 255, 0.08);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.topbar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7rem;
    padding: 0 1.08rem;
    border: 0;
    border-radius: 8px;
    background: var(--purple);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(91, 77, 255, 0.24);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.topbar__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(91, 77, 255, 0.28);
}

.main {
    min-height: calc(100vh - 90px);
    padding: 2rem 0 4rem;
}

.hero {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 140px);
}

.heroGrid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 380px);
    align-items: center;
    gap: clamp(2.2rem, 6vw, 6rem);
    width: 100%;
}

.heroCopy {
    max-width: 820px;
}

.eyebrow {
    margin: 0 0 1.05rem;
    color: var(--purple-strong);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.headlineWrap {
    max-width: 860px;
}

.headline {
    margin: 0;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(2.7rem, 4.8vw, 4.95rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    min-height: 2.85em;
}

.headline__text {
    display: inline-block;
    margin: 0 0.12em 0.1em 0;
    color: inherit;
}

.headline__value,
.headline__verdict,
.headline__teamGroup {
    display: inline-flex;
    align-items: center;
    margin: 0 0.12em 0.1em 0;
    transition: color 240ms ease, transform 240ms ease, opacity 240ms ease;
}

.headline__value {
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}

.headline__verdict.is-high {
    color: var(--signal-high);
}

.headline__verdict.is-low {
    color: var(--signal-low);
}

.headline__teamGroup {
    gap: 0.18em;
    color: inherit;
    white-space: nowrap;
}

.headline__logo {
    width: 0.98em;
    height: 0.98em;
    flex: 0 0 auto;
    object-fit: contain;
    transform: translateY(0.02em);
}

.headline__break {
    display: block;
    height: 0.08em;
}

.headline__break--teams {
    height: 0.02em;
}

.headline__value.is-updating,
.headline__verdict.is-updating,
.headline__teamGroup.is-updating,
.supportingCopy.is-updating {
    animation: heroSwap 460ms cubic-bezier(0.18, 0.88, 0.28, 1);
}

.heroLead {
    max-width: 34rem;
    margin: 1.35rem 0 0;
    color: #33415e;
    font-size: clamp(1.06rem, 1.55vw, 1.28rem);
    font-weight: 600;
    line-height: 1.45;
}

.supportingCopy {
    max-width: 38rem;
    margin: 1rem 0 0;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.6;
}

.heroMeta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.45rem;
}

.heroMeta__pill {
    display: inline-flex;
    align-items: center;
    min-height: 2.15rem;
    padding: 0 0.92rem;
    border: 1px solid rgba(87, 216, 162, 0.22);
    border-radius: 999px;
    background: var(--mint-soft);
    color: #158154;
    font-family: var(--mono);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.heroMeta__detail {
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.heroActions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.72rem;
    margin-top: 1rem;
}

.heroActions__primary,
.heroActions__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0 1.4rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.heroActions__primary {
    background: var(--purple);
    color: #ffffff;
}

.heroActions__secondary {
    border: 2px solid var(--purple);
    background: transparent;
    color: var(--purple-strong);
}

.heroActions__primary:hover,
.heroActions__secondary:hover {
    transform: translateY(-1px);
}

.resultsStrip {
    padding: 2.35rem 0 2.25rem;
}

.resultsStrip__header {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.resultsStrip__title {
    max-width: 18ch;
    margin: 0.16rem 0 0;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(1.55rem, 2.4vw, 2.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.resultsStrip__lead {
    max-width: 30rem;
    margin: 0;
    color: #586784;
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: left;
}

.resultsStrip__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}

.resultStatCard,
.resultMiniCard {
    border: 1px solid rgba(95, 119, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
}

.resultStatCard {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.95rem 1rem;
}

.resultStatCard__label,
.resultMiniCard__date {
    color: var(--ink-soft);
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.resultStatCard__value {
    color: var(--ink);
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.resultStatCard__value.is-positive,
.resultMiniCard__units.is-positive {
    color: #148156;
}

.resultStatCard__value.is-negative,
.resultMiniCard__units.is-negative {
    color: var(--purple-strong);
}

.resultsStrip__cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.7rem;
}

.resultMiniCard {
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
    padding: 0.9rem 0.95rem;
}

.resultMiniCard__topline,
.resultMiniCard__betline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
}

.resultMiniCard__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.55rem;
    padding: 0 0.52rem;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.resultMiniCard__badge.is-win {
    background: rgba(87, 216, 162, 0.14);
    color: #148156;
}

.resultMiniCard__badge.is-loss {
    background: rgba(19, 32, 59, 0.08);
    color: #52617d;
}

.resultMiniCard__matchup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.resultMiniCard__logo {
    width: 1.55rem;
    height: 1.55rem;
    object-fit: contain;
    flex: 0 0 auto;
}

.resultMiniCard__at {
    color: var(--ink-soft);
    font-family: var(--mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.resultMiniCard__pick,
.resultMiniCard__score {
    color: #586784;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.resultMiniCard__pick {
    color: var(--purple-strong);
}

.resultMiniCard__units {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.resultMiniCard__betline--subtle {
    justify-content: flex-start;
}

.conceptStrip {
    position: relative;
    padding: 4.25rem 0 3.4rem;
    margin-top: 0;
}

.conceptStrip::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.68);
    border-top: 1px solid rgba(95, 119, 255, 0.08);
    border-bottom: 1px solid rgba(95, 119, 255, 0.08);
    z-index: -1;
}

.conceptStrip__inner {
    padding: 0 0.35rem;
}

.conceptStrip__header {
    margin-bottom: 2.4rem;
}

.conceptStrip__title {
    max-width: 24ch;
    margin: 0;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(2.1rem, 3vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.conceptGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.25rem;
}

.conceptCard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    padding-right: 1rem;
}

.conceptCard__iconWrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border: 1px solid rgba(95, 119, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
}

.conceptCard__icon {
    color: var(--purple-strong);
    width: 1.55rem;
    height: 1.55rem;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.conceptCard__title {
    margin: 0;
    max-width: 16ch;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.conceptCard__copy {
    max-width: 28ch;
    margin: 0;
    color: #63718f;
    font-size: 1rem;
    line-height: 1.62;
}

.modelStory {
    position: relative;
    padding: 4.6rem 0 3.2rem;
    margin-top: 0;
}

.modelStory::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 18% 14%, rgba(91, 77, 255, 0.22), transparent 24rem),
        radial-gradient(circle at 82% 22%, rgba(87, 216, 162, 0.14), transparent 28rem),
        linear-gradient(180deg, #101527 0%, #0a0f1d 100%);
    z-index: -1;
}

.modelStory > * {
    position: relative;
    z-index: 1;
}

.sectionHeader {
    display: grid;
    justify-items: center;
    gap: 1.15rem;
    margin-bottom: 1.9rem;
    padding-top: 1rem;
    text-align: center;
}

.modelStory .eyebrow {
    color: rgba(194, 203, 255, 0.78);
}

.sectionTitle {
    max-width: 21ch;
    margin: 0 auto;
    color: #f6f8ff;
    font-family: var(--display);
    font-size: clamp(2.1rem, 3vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.sectionLead {
    max-width: 63rem;
    margin: 0 auto;
    color: rgba(200, 210, 235, 0.76);
    font-size: 1rem;
    line-height: 1.7;
}

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

.stepCard {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-height: 100%;
    padding: 1.55rem;
    border: 1px solid rgba(158, 176, 255, 0.14);
    border-radius: 30px;
    background: rgba(17, 25, 46, 0.72);
    box-shadow: 0 26px 48px rgba(3, 6, 18, 0.24);
    backdrop-filter: blur(14px);
}

.stepCard__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
}

.stepCard__index,
.summaryPill,
.factorTag {
    font-family: var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stepCard__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.55rem;
    min-height: 2.05rem;
    padding: 0 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(158, 176, 255, 0.16);
    background: rgba(122, 132, 255, 0.14);
    color: #c8d3ff;
    font-size: 0.74rem;
    font-weight: 700;
}

.stepCard__title {
    margin: 0;
    color: #f4f7ff;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.stepCard__copy,
.auditNote p {
    margin: 0;
    color: rgba(188, 199, 225, 0.74);
    font-size: 1rem;
    line-height: 1.7;
}

.paceRows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.35rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(158, 176, 255, 0.1);
}

.paceRow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(96px, 1fr) auto;
    align-items: center;
    gap: 0.95rem;
}

.paceRow__identity,
.projectionTeam__identity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    color: #f0f4ff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.stepTeam__logo {
    width: 2.2rem;
    height: 2.2rem;
    flex: 0 0 auto;
    object-fit: contain;
}

.paceRow__track {
    position: relative;
    height: 0.82rem;
    border-radius: 999px;
    background: rgba(137, 154, 214, 0.12);
    overflow: hidden;
}

.paceRow__fill {
    display: block;
    height: 100%;
    width: 60%;
    border-radius: inherit;
}

.paceRow__fill--away {
    background: linear-gradient(90deg, #5b4dff 0%, #7a6eff 100%);
}

.paceRow__fill--home {
    background: linear-gradient(90deg, #57d8a2 0%, #7ee5ba 100%);
}

.paceRow__value {
    min-width: 2.75rem;
    color: #f4f7ff;
    font-size: 1.08rem;
    font-weight: 800;
    text-align: right;
    letter-spacing: -0.03em;
}

.stepCard__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(158, 176, 255, 0.12);
}

.summaryPill {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    padding: 0 0.76rem;
    border-radius: 999px;
    background: rgba(95, 119, 255, 0.14);
    color: #c8d3ff;
    font-size: 0.67rem;
    font-weight: 700;
}

.stepCard__summary strong,
.marketBoard__metric strong,
.projectionTeam__value {
    color: #f4f7ff;
    letter-spacing: -0.04em;
}

.stepCard__summary strong {
    font-size: 1rem;
    font-weight: 800;
}

.projectionBoard {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 0.35rem;
}

.projectionTeam {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem;
    border: 1px solid rgba(158, 176, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.projectionTeam__value {
    font-size: 2.05rem;
    font-weight: 800;
}

.projectionTeam__meta,
.marketBoard__metric span,
.edgeBanner__label {
    color: rgba(191, 201, 232, 0.68);
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.factorCluster {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.3rem;
}

.factorTag {
    display: inline-flex;
    align-items: center;
    min-height: 1.85rem;
    padding: 0 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(158, 176, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(191, 201, 232, 0.72);
    font-size: 0.64rem;
    font-weight: 700;
}

.marketBoard {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(158, 176, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.marketBoard__metric {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.marketBoard__metric strong {
    font-size: 2rem;
    font-weight: 800;
}

.marketBoard__divider {
    width: 1px;
    height: 3rem;
    background: rgba(158, 176, 255, 0.14);
}

.edgeBanner {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.05rem;
    border-radius: 24px;
}

.edgeBanner strong {
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.edgeBanner.is-high {
    background: rgba(116, 195, 255, 0.18);
    color: var(--blue-strong);
}

.edgeBanner.is-low {
    background: rgba(91, 77, 255, 0.1);
    color: var(--purple-strong);
}

.edgeBanner.is-high .edgeBanner__label,
.edgeBanner.is-low .edgeBanner__label {
    color: currentColor;
    opacity: 0.7;
}

.auditNote {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding-top: 0.15rem;
}

.breakdownPreview {
    position: relative;
    padding: 4.6rem 0 3.1rem;
    margin-top: 0;
}

.breakdownPreview::before {
    content: "";
    position: absolute;
    inset: 0 50%;
    width: 100vw;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 18% 18%, rgba(91, 77, 255, 0.1), transparent 24rem),
        radial-gradient(circle at 82% 20%, rgba(87, 216, 162, 0.1), transparent 24rem),
        linear-gradient(180deg, #f8faff 0%, #f2f6ff 100%);
    z-index: -1;
}

.breakdownPreview__shell {
    position: relative;
    z-index: 1;
}

.breakdownPreview__header {
    display: grid;
    justify-items: center;
    gap: 1rem;
    margin-bottom: 1.65rem;
    text-align: center;
}

.breakdownPreview__title {
    max-width: 18ch;
    margin: 0.08rem auto 0;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.breakdownPreview__lead {
    max-width: 51rem;
    margin: 0 auto;
    color: #4d5d7b;
    font-size: 1rem;
    line-height: 1.72;
}

.breakdownPreview__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
}

.breakdownPreview__content {
    min-width: 0;
}

.breakdownList {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breakdownList__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.95rem;
    align-items: flex-start;
}

.breakdownList__dot {
    width: 0.78rem;
    height: 0.78rem;
    margin-top: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #5b4dff 0%, #7f73ff 100%);
    box-shadow: 0 0 0 8px rgba(91, 77, 255, 0.08);
}

.breakdownList__title {
    margin: 0 0 0.36rem;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.breakdownList__copy {
    margin: 0;
    color: #586783;
    font-size: 0.98rem;
    line-height: 1.66;
}

.factorFloatScene {
    position: relative;
    min-height: 31rem;
}

.factorFloat {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: min(15.5rem, 100%);
    padding: 1rem 1rem 1.05rem;
    border: 1px solid rgba(95, 119, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 38px rgba(63, 78, 135, 0.09);
}

.factorFloat--primary {
    top: 1.2rem;
    left: 0.2rem;
    transform: rotate(-4deg);
}

.factorFloat--secondary {
    top: 0;
    right: 1.1rem;
    transform: rotate(5deg);
}

.factorFloat--tertiary {
    top: 10.8rem;
    left: 2.4rem;
    transform: rotate(2deg);
}

.factorFloat--quaternary {
    top: 12.8rem;
    right: 0;
    transform: rotate(-5deg);
}

.factorFloat--accent {
    bottom: 0.8rem;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
}

.factorFloat__iconWrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 12px;
    background: rgba(91, 77, 255, 0.08);
}

.factorFloat__icon {
    width: 1.3rem;
    height: 1.3rem;
    stroke: var(--purple-strong);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.factorFloat__title {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.factorFloat__copy {
    margin: 0;
    color: #5e6d8a;
    font-size: 0.9rem;
    line-height: 1.58;
}

.finalCta {
    position: relative;
    padding: 4.4rem 0 5rem;
    margin-top: 0;
}

.finalCta::before {
    content: "";
    position: absolute;
    inset: 0 50%;
    width: 100vw;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 18% 20%, rgba(91, 77, 255, 0.22), transparent 22rem),
        radial-gradient(circle at 82% 26%, rgba(87, 216, 162, 0.14), transparent 20rem),
        linear-gradient(180deg, #101527 0%, #0a0f1d 100%);
    z-index: -2;
}

.finalCta::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(920px, 92%);
    height: min(320px, 78%);
    transform: translate(-50%, -50%);
    border-radius: 36px;
    background:
        linear-gradient(rgba(158, 176, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(158, 176, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 22% 30%, rgba(91, 77, 255, 0.08), transparent 16rem),
        radial-gradient(circle at 78% 70%, rgba(87, 216, 162, 0.08), transparent 16rem);
    background-size: 26px 26px, 26px 26px, auto, auto;
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
}

.finalCta__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    overflow: hidden;
    padding: 2.4rem;
    border: 1px solid rgba(121, 140, 255, 0.18);
    border-radius: 36px;
    background:
        radial-gradient(circle at 18% 16%, rgba(118, 104, 255, 0.2), transparent 18rem),
        radial-gradient(circle at 82% 18%, rgba(87, 216, 162, 0.16), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 255, 0.96) 100%);
    text-align: center;
}

.finalCta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.finalCta__intro {
    max-width: 44rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.finalCta__title {
    max-width: 13ch;
    margin: 0.12rem 0 0;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(2.4rem, 4vw, 4.25rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.finalCta__copy {
    max-width: 38rem;
    margin: 1rem 0 0;
    color: #435272;
    font-size: 1.04rem;
    line-height: 1.7;
}

.finalCta__buttons {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.finalCta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0 1.25rem;
    border-radius: 8px;
    background: var(--purple);
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, background 180ms ease;
}

.finalCta__button:hover {
    transform: translateY(-1px);
    background: var(--purple-strong);
}

.finalCta__button--secondary {
    border: 2px solid rgba(91, 77, 255, 0.16);
    background: rgba(91, 77, 255, 0.04);
    color: var(--purple-strong);
}

.finalCta__button--secondary:hover {
    background: rgba(91, 77, 255, 0.08);
}


.heroRail {
    width: min(100%, 420px);
    position: relative;
    overflow: hidden;
    padding: 0.2rem 0 0.7rem;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 9%, rgba(0, 0, 0, 1) 90%, transparent 100%);
}

.heroRail::before {
    content: none;
}

.heroRail__stack {
    height: 39rem;
    overflow: hidden;
}

.heroRail__marquee {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: railDrift 28s linear infinite;
}

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

.railCard {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 0;
    border-radius: 26px;
    background: transparent;
    text-align: left;
    color: inherit;
}

.railCard__frame {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 100%;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #ffffff;
}

.railCard:nth-child(3n + 2) .railCard__frame {
    background: rgba(248, 250, 255, 0.96);
}

.railLogo {
    width: 2.7rem;
    height: 2.7rem;
    object-fit: contain;
}

.railMatchup {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.55rem;
    min-height: 3.15rem;
}

.railMatchup__divider {
    width: 1.6rem;
    height: 1px;
    background: rgba(95, 119, 255, 0.18);
}

.railTeam {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 0;
    text-align: center;
}

.railTeam__name {
    color: #4f5e7c;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.railTotalWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    flex: 1 1 auto;
}

.railMeta {
    color: var(--ink-soft);
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.railTotal {
    display: block;
    text-align: center;
    color: var(--ink);
    font-size: 1.92rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.railVerdict {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.9rem;
    margin: 0 auto;
    padding: 0 0.82rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.railVerdict.is-high {
    background: rgba(116, 195, 255, 0.18);
    color: var(--blue-strong);
}

.railVerdict.is-low {
    background: rgba(91, 77, 255, 0.1);
    color: var(--purple-strong);
}

@keyframes heroSwap {
    0% {
        opacity: 0.12;
        transform: translateY(16px) scale(0.985);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes railDrift {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-50% - 0.5rem));
    }
}

@media (max-width: 960px) {
    .hero {
        min-height: auto;
    }

    .heroGrid {
        grid-template-columns: 1fr;
        gap: 2.6rem;
    }

    .resultsStrip__stats,
    .resultsStrip__cards {
        grid-template-columns: 1fr;
    }

    .conceptGrid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .breakdownPreview__layout {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .factorFloatScene {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .factorFloat {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
    }

    .heroRail {
        width: min(100%, 460px);
    }
}

@media (max-width: 540px) {
    .shell {
        width: min(100% - 24px, 1320px);
    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.85rem;
    }

    .topbar__actions {
        width: 100%;
    }

    .topbar__cta {
        width: 100%;
    }

    .resultsStrip {
        padding-top: 1.4rem;
        padding-bottom: 1.5rem;
    }

    .topbar__tag {
        min-height: 2.3rem;
        font-size: 0.72rem;
    }

    .headline {
        font-size: clamp(2.85rem, 11vw, 4.2rem);
        min-height: 2.9em;
    }

    .headline__logo {
        width: 0.88em;
        height: 0.88em;
    }

    .conceptStrip {
        padding-top: 3.4rem;
        padding-bottom: 2.4rem;
    }

    .breakdownPreview {
        padding-top: 3.4rem;
        padding-bottom: 2.4rem;
    }

    .finalCta {
        padding-top: 3.4rem;
        padding-bottom: 3.8rem;
    }

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

    .sectionTitle {
        font-size: clamp(2rem, 8vw, 2.55rem);
    }

    .conceptStrip__title {
        font-size: clamp(2rem, 8vw, 2.55rem);
    }

    .breakdownPreview__title {
        font-size: clamp(1.95rem, 8vw, 2.5rem);
    }

    .sectionLead {
        max-width: 48rem;
    }

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

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

    .marketBoard__divider {
        width: 100%;
        height: 1px;
    }

    .heroRail__stack {
        height: 31rem;
    }

    .heroRail__grid {
        gap: 0.75rem;
    }

    .railCard__frame {
        padding: 0.8rem;
    }

    .railLogo {
        width: 1.95rem;
        height: 1.95rem;
    }

    .railTotal {
        font-size: 1.6rem;
    }

    .railTeam__name {
        font-size: 0.7rem;
    }

    .heroMeta__detail {
        font-size: 0.84rem;
    }

    .finalCta__card {
        padding: 1.8rem 1rem;
        border-radius: 24px;
    }

    .finalCta::after {
        width: min(94%, 520px);
        height: 82%;
        border-radius: 28px;
    }

    .finalCta__title {
        max-width: 11ch;
        font-size: clamp(2.15rem, 10vw, 3rem);
    }

    .finalCta__copy {
        max-width: 30rem;
    }

    .finalCta__button {
        width: 100%;
    }

    .finalCta__buttons {
        width: 100%;
        flex-direction: column;
    }
}

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

    .headline__value,
    .headline__verdict,
    .headline__teamGroup {
        animation: none;
        transition: none;
    }

    .heroRail__marquee {
        animation: none;
    }
}
