@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,400..700,30..100&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --eg-bg: #fbf6ec;
    --eg-bg-sink: #f4ecd9;
    --eg-surface: #ffffff;
    --eg-surface-soft: #fdfaf1;
    --eg-ink: #0a1036;
    --eg-ink-2: #1a2150;
    --eg-muted: #5d5646;
    --eg-muted-2: #7a7361;
    --eg-line: rgba(10, 16, 54, 0.09);
    --eg-line-2: rgba(10, 16, 54, 0.16);
    --eg-nav: #070b33;
    --eg-nav-2: #0f143e;
    --eg-gold: #d4a03a;
    --eg-gold-bright: #e8c066;
    --eg-gold-pale: #f5e4b6;
    --eg-gold-glow: rgba(232, 192, 102, 0.14);
    --eg-blush: #c45a3a;
    --eg-blush-bg: #fbe0d2;
    --eg-blush-soft: #fdeee2;
    --eg-offwhite: #fbfaf5;
    --eg-shadow-sm: 0 4px 14px rgba(10, 16, 54, 0.05);
    --eg-shadow-md: 0 14px 34px rgba(10, 16, 54, 0.08);
    --eg-shadow-lg: 0 28px 60px rgba(10, 16, 54, 0.14);
    --eg-max: 1260px;
    --eg-nav-h: 78px;
    --eg-r-sm: 14px;
    --eg-r-md: 22px;
    --eg-r-lg: 30px;
    --eg-r-xl: 38px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 16px;
    color: var(--eg-ink);
    background:
        radial-gradient(ellipse at 0% 0%, rgba(232, 192, 102, 0.18), transparent 42%),
        radial-gradient(ellipse at 100% 8%, rgba(196, 90, 58, 0.08), transparent 40%),
        linear-gradient(180deg, #fdfaf1 0%, var(--eg-bg) 48%, var(--eg-bg-sink) 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.eg-locked {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button {
    font-family: inherit;
}

.eg-nav {
    position: sticky;
    top: 0;
    z-index: 120;
    background: linear-gradient(180deg, var(--eg-nav) 0%, var(--eg-nav-2) 100%);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.eg-nav-shell {
    width: min(calc(100% - 2rem), var(--eg-max));
    min-height: var(--eg-nav-h);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.eg-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    min-width: 0;
}

.eg-brand-mark {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.eg-brand-word {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.3rem, 1.7vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    white-space: nowrap;
}

.eg-brand-event {
    color: var(--eg-offwhite);
}

.eg-brand-gavel {
    color: var(--eg-gold-bright);
}

.eg-brand-event-dark {
    color: var(--eg-ink);
}

.eg-brand-gavel-dark {
    color: #9a7420;
}

.eg-nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.eg-nav-desktop a {
    position: relative;
    padding: 0.35rem 0.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(251, 250, 245, 0.82);
    text-decoration: none;
    transition: color 0.22s ease;
}

.eg-nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.05rem;
    height: 1px;
    background: var(--eg-gold-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.eg-nav-desktop a:hover,
.eg-nav-desktop a:focus-visible,
.eg-nav-desktop a[aria-current="page"] {
    color: #ffffff;
    outline: none;
}

.eg-nav-desktop a:hover::after,
.eg-nav-desktop a:focus-visible::after,
.eg-nav-desktop a[aria-current="page"]::after {
    transform: scaleX(1);
}

.eg-burger {
    display: none;
    width: 32px;
    height: 24px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
    appearance: none;
    -webkit-appearance: none;
}

.eg-burger span {
    position: absolute;
    left: 2px;
    right: 2px;
    height: 2px;
    border-radius: 999px;
    background: var(--eg-gold-bright);
    transition: transform 0.24s ease, opacity 0.22s ease, top 0.24s ease;
}

.eg-burger span:nth-child(1) {
    top: 3px;
}

.eg-burger span:nth-child(2) {
    top: 11px;
}

.eg-burger span:nth-child(3) {
    top: 19px;
}

.eg-nav.eg-open .eg-burger span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.eg-nav.eg-open .eg-burger span:nth-child(2) {
    opacity: 0;
}

.eg-nav.eg-open .eg-burger span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

.eg-drawer {
    position: fixed;
    inset: 0;
    z-index: 130;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.26s ease, visibility 0.26s ease;
}

.eg-drawer.eg-drawer-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.eg-drawer-scrim {
    position: absolute;
    inset: 0;
    background: rgba(7, 11, 51, 0.5);
    backdrop-filter: blur(10px);
}

.eg-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(94vw, 440px);
    height: 100%;
    background: linear-gradient(180deg, #fffdf7 0%, #faf0dc 100%);
    box-shadow: -22px 0 52px rgba(7, 11, 51, 0.22);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0.24, 1);
    display: flex;
    flex-direction: column;
}

.eg-drawer.eg-drawer-open .eg-drawer-panel {
    transform: translateX(0);
}

.eg-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.15rem 1rem 1.15rem;
    border-bottom: 1px solid var(--eg-line);
}

.eg-drawer-brandline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.eg-drawer-mark {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex: 0 0 auto;
}

.eg-drawer-copy {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.eg-drawer-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.eg-drawer-sub {
    font-size: 0.82rem;
    color: var(--eg-muted);
    line-height: 1.3;
}

.eg-drawer-close {
    width: 38px;
    height: 38px;
    padding: 0;
    margin: 0;
    border: 0;
    background: rgba(10, 16, 54, 0.06);
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
    appearance: none;
    -webkit-appearance: none;
}

.eg-drawer-close span {
    position: absolute;
    top: 18px;
    left: 10px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--eg-ink);
}

.eg-drawer-close span:nth-child(1) {
    transform: rotate(45deg);
}

.eg-drawer-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.eg-drawer-nav {
    display: grid;
    padding: 0.4rem 0;
    overflow-y: auto;
}

.eg-drawer-nav a {
    display: grid;
    gap: 0.24rem;
    padding: 1rem 1.15rem;
    border-top: 1px solid var(--eg-line);
    text-decoration: none;
    transition: background 0.2s ease;
}

.eg-drawer-nav a:first-child {
    border-top: 0;
}

.eg-drawer-nav a:hover,
.eg-drawer-nav a:focus-visible,
.eg-drawer-nav a[aria-current="page"] {
    background: rgba(212, 160, 58, 0.12);
    outline: none;
}

.eg-drawer-link-title {
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--eg-ink);
}

.eg-drawer-link-meta {
    font-size: 0.9rem;
    line-height: 1.48;
    color: var(--eg-muted);
}

.eg-drawer-foot {
    margin-top: auto;
    padding: 1rem 1.15rem 1.3rem 1.15rem;
    border-top: 1px solid var(--eg-line);
}

.eg-drawer-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212, 160, 58, 0.2) 0%, rgba(196, 90, 58, 0.12) 100%);
    color: #704812;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eg-main {
    width: min(calc(100% - 2rem), var(--eg-max));
    margin: 0 auto;
    padding: 2.5rem 0 4rem 0;
}

.eg-kicker {
    display: inline-block;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a6a1a;
}

.eg-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.46rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0a1036 0%, #1a2150 100%);
    color: var(--eg-gold-bright);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(10, 16, 54, 0.22);
}

.eg-hero {
    padding-top: 0.5rem;
}

.eg-hero-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.eg-hero-crumb {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--eg-muted);
    letter-spacing: 0.02em;
}

.eg-hero-title {
    margin: 0;
    font-family: 'Fraunces', 'Manrope', serif;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    font-weight: 500;
    font-size: clamp(2.6rem, 7vw, 6rem);
    line-height: 0.97;
    letter-spacing: -0.035em;
    color: var(--eg-ink);
    max-width: 18ch;
}

.eg-hero-title em {
    font-style: italic;
    font-weight: 400;
    color: #8a6a1a;
    font-variation-settings: "opsz" 144, "SOFT" 100;
}

.eg-hero-lead {
    margin: 1.4rem 0 1.5rem 0;
    max-width: 64ch;
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.68;
    color: var(--eg-ink-2);
    font-weight: 400;
}

.eg-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.eg-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: var(--eg-surface);
    border: 1px solid var(--eg-line);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--eg-ink);
    box-shadow: var(--eg-shadow-sm);
}

.eg-chip:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #fdf5e0 100%);
}

.eg-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.75fr);
    gap: 2.5rem;
    align-items: start;
    margin-top: 3.5rem;
    padding-top: 2.2rem;
    border-top: 1px solid var(--eg-line-2);
}

.eg-intro-body h2,
.eg-strategy-head h2,
.eg-band-head h2,
.eg-closing-main h2 {
    margin: 0.4rem 0 1.1rem 0;
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 40;
    font-weight: 500;
    font-size: clamp(1.85rem, 2.7vw, 2.9rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--eg-ink);
}

.eg-intro-body p,
.eg-strategy-main p,
.eg-closing-main p {
    margin: 0;
    line-height: 1.82;
    color: var(--eg-muted);
    font-size: 1rem;
}

.eg-intro-body p + p,
.eg-strategy-main p + p,
.eg-closing-main p + p {
    margin-top: 1rem;
}

.eg-intro-body em,
.eg-strategy-main em,
.eg-closing-main em {
    font-style: italic;
    color: var(--eg-ink-2);
}

.eg-intro-side {
    display: grid;
    gap: 1rem;
}

.eg-stat-card {
    padding: 1.5rem 1.4rem;
    border-radius: var(--eg-r-lg);
    background: linear-gradient(155deg, #0a1036 0%, #1a2150 100%);
    color: var(--eg-offwhite);
    box-shadow: var(--eg-shadow-lg);
    display: grid;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
}

.eg-stat-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(232, 192, 102, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.eg-stat-alt {
    background: linear-gradient(155deg, #fff8e8 0%, #fceac4 100%);
    color: var(--eg-ink);
}

.eg-stat-alt::before {
    background: radial-gradient(ellipse at center, rgba(196, 90, 58, 0.18) 0%, transparent 70%);
}

.eg-stat-num {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 60;
    font-weight: 500;
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--eg-gold-bright);
    position: relative;
}

.eg-stat-alt .eg-stat-num {
    color: #8a4820;
}

.eg-stat-unit {
    font-size: 0.6em;
    font-weight: 500;
    margin-left: 0.05em;
    opacity: 0.9;
}

.eg-stat-label {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
}

.eg-stat-alt .eg-stat-label {
    color: var(--eg-muted);
    opacity: 1;
}

.eg-strategy {
    margin-top: 3.8rem;
    padding-top: 2.4rem;
    border-top: 1px solid var(--eg-line-2);
}

.eg-strategy-head {
    display: flex;
    align-items: baseline;
    gap: 1.1rem;
    margin-bottom: 1.4rem;
}

.eg-strategy-idx {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.82;
    color: var(--eg-gold);
    flex: 0 0 auto;
    letter-spacing: -0.05em;
}

.eg-strategy-head > div {
    min-width: 0;
}

.eg-strategy-body {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.82fr);
    gap: 2rem;
    align-items: start;
}

.eg-strategy-main {
    max-width: 68ch;
}

.eg-strategy-side {
    display: grid;
    gap: 0.9rem;
    align-items: start;
}

.eg-note-card {
    padding: 1.1rem 1.15rem;
    border-radius: var(--eg-r-md);
    background: var(--eg-surface);
    border: 1px solid var(--eg-line);
    box-shadow: var(--eg-shadow-sm);
    display: grid;
    gap: 0.45rem;
}

.eg-note-card p {
    margin: 0;
    line-height: 1.6;
    color: var(--eg-muted);
    font-size: 0.95rem;
}

.eg-note-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a6a1a;
}

.eg-note-accent {
    background: linear-gradient(160deg, #fdf1e6 0%, #fbe5d2 100%);
    border-color: rgba(196, 90, 58, 0.22);
}

.eg-note-accent .eg-note-label {
    color: #8a4820;
}

.eg-note-accent p {
    color: #5a3820;
}

.eg-ladder,
.eg-decoy,
.eg-closing {
    margin-top: 4rem;
    padding-top: 2.4rem;
    border-top: 1px solid var(--eg-line-2);
}

.eg-band-head {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1.8rem;
    max-width: 62ch;
}

.eg-band-head h2 {
    margin: 0;
}

.eg-band-sub {
    margin: 0.3rem 0 0 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--eg-muted);
}

.eg-ladder-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
}

.eg-tier-card {
    padding: 1.3rem 1.25rem 1.4rem 1.25rem;
    border-radius: var(--eg-r-md);
    background: var(--eg-surface);
    border: 1px solid var(--eg-line);
    box-shadow: var(--eg-shadow-sm);
    display: grid;
    gap: 0.55rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eg-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eg-shadow-md);
}

.eg-tier-1 {
    min-height: 240px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf3df 100%);
}

.eg-tier-2 {
    min-height: 270px;
    background: linear-gradient(180deg, #ffffff 0%, #fce4c4 100%);
    border-color: rgba(212, 160, 58, 0.28);
}

.eg-tier-3 {
    min-height: 300px;
    background: linear-gradient(180deg, #ffffff 0%, #fccfa6 100%);
    border-color: rgba(196, 90, 58, 0.22);
}

.eg-tier-4 {
    min-height: 340px;
    background: linear-gradient(170deg, #0a1036 0%, #1a2150 100%);
    border-color: transparent;
    color: var(--eg-offwhite);
    box-shadow: var(--eg-shadow-md);
}

.eg-tier-4 .eg-tier-price {
    color: var(--eg-gold-bright);
}

.eg-tier-rung {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--eg-muted-2);
    opacity: 0.85;
}

.eg-tier-4 .eg-tier-rung {
    color: rgba(251, 250, 245, 0.55);
}

.eg-tier-label {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 40;
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.eg-tier-price {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 60;
    font-weight: 500;
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--eg-ink);
}

.eg-tier-window {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--eg-muted);
}

.eg-tier-4 .eg-tier-window {
    color: rgba(251, 250, 245, 0.75);
}

.eg-tier-note {
    margin: 0.4rem 0 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--eg-muted);
}

.eg-tier-4 .eg-tier-note {
    color: rgba(251, 250, 245, 0.82);
}

.eg-tier-badge {
    position: absolute;
    top: -12px;
    right: 14px;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    background: var(--eg-gold-bright);
    color: #2a1f08;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(232, 192, 102, 0.36);
}

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

.eg-decoy-card {
    position: relative;
    padding: 1.3rem 1.25rem;
    border-radius: var(--eg-r-md);
    background: var(--eg-surface);
    border: 1px solid var(--eg-line);
    box-shadow: var(--eg-shadow-sm);
    display: grid;
    gap: 0.55rem;
}

.eg-decoy-flag {
    display: inline-flex;
    align-items: center;
    align-self: start;
    padding: 0.28rem 0.66rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eg-decoy-label {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 40;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    line-height: 1.18;
}

.eg-decoy-price {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    font-weight: 500;
    font-size: 2.3rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.eg-decoy-body {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--eg-muted);
}

.eg-decoy-lose {
    background: linear-gradient(180deg, #fbf3df 0%, #f8e3b8 100%);
    border-color: rgba(212, 160, 58, 0.26);
    opacity: 0.82;
}

.eg-decoy-lose .eg-decoy-flag {
    background: rgba(196, 90, 58, 0.16);
    color: #8a4820;
}

.eg-decoy-lose .eg-decoy-price {
    color: #8a4820;
    text-decoration: line-through;
    text-decoration-color: rgba(138, 72, 32, 0.55);
    text-decoration-thickness: 3px;
}

.eg-decoy-win {
    background: linear-gradient(170deg, #0a1036 0%, #1a2150 100%);
    border-color: transparent;
    color: var(--eg-offwhite);
    box-shadow: var(--eg-shadow-md);
    transform: translateY(-6px);
}

.eg-decoy-win .eg-decoy-flag {
    background: var(--eg-gold-bright);
    color: #2a1f08;
}

.eg-decoy-win .eg-decoy-price {
    color: var(--eg-gold-bright);
}

.eg-decoy-win .eg-decoy-body {
    color: rgba(251, 250, 245, 0.82);
}

.eg-closing {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.78fr);
    gap: 2.5rem;
    align-items: start;
}

.eg-closing-main p {
    font-size: 1.05rem;
    line-height: 1.82;
}

.eg-closing-side {
    display: grid;
    gap: 1rem;
}

.eg-foot {
    margin-top: 4rem;
    padding: 1.8rem 0 2.2rem 0;
    border-top: 1px solid var(--eg-line-2);
    background: linear-gradient(180deg, transparent 0%, rgba(10, 16, 54, 0.04) 100%);
}

.eg-foot-shell {
    width: min(calc(100% - 2rem), var(--eg-max));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.eg-foot-brand {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.eg-foot-meta {
    font-size: 0.84rem;
    color: var(--eg-muted);
    font-weight: 500;
}

@media (max-width: 1120px) {
    .eg-ladder-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .eg-tier-card {
        min-height: auto;
    }

    .eg-tier-1,
    .eg-tier-2,
    .eg-tier-3,
    .eg-tier-4 {
        min-height: auto;
    }
}

@media (max-width: 980px) {
    .eg-intro,
    .eg-strategy-body,
    .eg-closing {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .eg-decoy-grid {
        grid-template-columns: 1fr;
    }

    .eg-decoy-win {
        transform: none;
    }

    .eg-strategy-idx {
        font-size: clamp(2.6rem, 9vw, 4rem);
    }
}

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

    .eg-burger {
        display: block;
    }

    .eg-nav-shell {
        width: min(calc(100% - 1rem), var(--eg-max));
        min-height: 72px;
    }

    .eg-main {
        width: min(calc(100% - 1rem), var(--eg-max));
        padding-top: 1.8rem;
    }
}

@media (min-width: 901px) {
    .eg-drawer {
        display: none !important;
    }
}

@media (max-width: 720px) {
    .eg-ladder-grid {
        grid-template-columns: 1fr;
    }

    .eg-hero-title {
        font-size: clamp(2.3rem, 10.5vw, 3.8rem);
        letter-spacing: -0.04em;
    }

    .eg-hero-lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .eg-strategy-head {
        gap: 0.85rem;
    }

    .eg-brand-mark {
        width: 38px;
        height: 38px;
    }

    .eg-brand-word {
        font-size: 1.24rem;
    }

    .eg-drawer-panel {
        width: 100vw;
    }

    .eg-foot-shell {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    .eg-nav-shell {
        gap: 0.6rem;
    }

    .eg-brand {
        gap: 0.65rem;
    }

    .eg-brand-mark {
        width: 34px;
        height: 34px;
    }

    .eg-brand-word {
        font-size: 1.12rem;
    }

    .eg-hero-chips {
        gap: 0.45rem;
    }

    .eg-chip {
        font-size: 0.82rem;
        padding: 0.42rem 0.8rem;
    }

    .eg-stat-card {
        padding: 1.25rem 1.15rem;
    }

    .eg-tier-card,
    .eg-decoy-card,
    .eg-note-card {
        padding: 1.1rem 1.05rem;
    }
}

@media (max-height: 520px) and (orientation: landscape) {
    .eg-drawer-panel {
        overflow-y: auto;
    }

    .eg-drawer-nav a {
        padding: 0.7rem 1.1rem;
    }

    .eg-drawer-link-meta {
        display: none;
    }

    .eg-main {
        padding-top: 1.2rem;
    }
}

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

:focus-visible {
    outline: 2px solid var(--eg-gold-bright);
    outline-offset: 3px;
    border-radius: 4px;
}

.eg-tier-card:focus-within,
.eg-note-card:focus-within,
.eg-decoy-card:focus-within {
    outline: 2px solid var(--eg-gold-bright);
    outline-offset: 3px;
}
