:root {
	--forest: #183e2b; --forest-dark: #102f22; --forest-light: #30543c;
	--paper: #f5f0e3; --paper-deep: #eae2cf; --ink: #203c2c; --muted: #67705e;
	--gold: #ae7d35; --gold-light: #d5b875; --line: #d4cebb;
	--serif: 'Cormorant Garamond', Georgia, serif; --sans: 'Manrope', sans-serif; --mono: 'DM Mono', monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body, button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--paper); background: var(--forest); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { touch-action: manipulation; }
button:not(:disabled), a { cursor: pointer; }
button:disabled { cursor: default; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
[hidden] { display: none !important; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; }
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.arrow-icon { width: 46px; }
.svg-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.page-noise { position: fixed; z-index: 10; inset: 0; opacity: .035; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' opacity='.7' filter='url(%23n)'/%3E%3C/svg%3E"); }
.skip-link { position: fixed; top: 8px; left: 16px; z-index: 30; padding: 14px 20px; background: var(--paper); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.announcement { display: flex; align-items: center; justify-content: center; gap: 24px; min-height: 33px; padding: 7px 20px; color: #e9dfc2; background: var(--forest); font: 400 10px/1.5 var(--mono); letter-spacing: .15em; }
.announcement-star { color: var(--gold-light); font-size: 15px; line-height: 1; }
.site-header { max-width: 1440px; min-height: 106px; margin: auto; padding: 20px 5.55%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark { width: 48px; height: 53px; display: grid; place-items: center; border: 1px solid #b8b397; border-radius: 3px 3px 22px 22px; background: #e9e7d4; }
.brand-mark img { width: 43px; height: 43px; object-fit: contain; }
.brand-name { font: 700 31px/.95 var(--serif); letter-spacing: .045em; }
.brand-name small { display: block; margin-top: 8px; font: 400 8px/1.3 var(--mono); letter-spacing: .19em; }
.nav { display: flex; gap: 34px; }
.nav a { position: relative; padding: 12px 0; font-size: 13px; font-weight: 600; }
.nav a::after { content: ''; position: absolute; bottom: 3px; left: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .2s; }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.top-buy { justify-self: end; display: inline-flex; align-items: center; gap: 18px; border: 1px solid #aab09d; padding: 11px 18px; font: 500 11px var(--mono); letter-spacing: .04em; transition: background .2s, color .2s; }
.top-buy:hover { color: var(--paper); background: var(--forest); }
.top-buy .arrow-icon { width: 32px; }

.hero-section { position: relative; display: grid; grid-template-columns: 1.06fr 1fr; align-items: center; column-gap: 45px; max-width: 1440px; margin: auto; padding: 64px 5.55% 83px; overflow: hidden; }
.hero-copy { position: relative; z-index: 2; animation: enter .8s both; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: #886126; font: 500 11px/1.6 var(--mono); letter-spacing: .13em; }
.eyebrow .arrow-icon { width: 42px; }
h1 { margin: 21px 0 22px; font-size: clamp(70px, 7.7vw, 112px); line-height: .87; letter-spacing: -.05em; }
h1 em { color: var(--gold); font-weight: 500; }
.title-period { color: var(--gold); }
.hero-motto { margin-bottom: 13px; font-size: 15px; font-weight: 700; }
.hero-text { color: var(--muted); font-size: 15px; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 53px; padding: 12px 18px; border: 1px solid var(--forest); font: 500 11px var(--mono); letter-spacing: .025em; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-3px); box-shadow: 0 5px 0 #183e2b12; }
.button-primary { color: var(--paper); background: var(--forest); }
.button-primary:hover { background: var(--forest-light); }
.button-primary .icon { width: 24px; height: 24px; color: var(--gold-light); }
.button-primary > span { margin-left: 12px; font-size: 19px; }
.button-outline { border-color: #babca9; }
.button-outline:hover { background: var(--paper-deep); }
.button-outline .arrow-icon { width: 34px; }
.social-links { display: flex; align-items: center; gap: 8px; margin-top: 25px; }
.social-links > span { margin-right: 9px; color: var(--muted); font: 400 10px var(--mono); letter-spacing: .075em; }
.social-links a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; transition: background .2s, border-color .2s; }
.social-links a:hover { border-color: var(--forest); background: var(--paper-deep); }
.social-links .icon { width: 15px; height: 15px; }
.contract { display: flex; align-items: center; gap: 11px; width: fit-content; max-width: 100%; margin-top: 23px; padding: 10px 0 0; border-top: 1px solid var(--line); font: 400 10px/1.5 var(--mono); }
.contract-label { color: var(--muted); letter-spacing: .035em; flex-shrink: 0; }
.contract code { min-width: 0; font: inherit; overflow-wrap: anywhere; }
.copy-contract { display: grid; place-items: center; flex-shrink: 0; border: 0; width: 30px; height: 30px; padding: 6px; color: var(--forest); background: transparent; }
.copy-contract:disabled { opacity: .35; }
.copy-contract .icon { width: 15px; height: 15px; }

.portrait-stage { position: relative; height: 594px; min-width: 0; animation: enter 1s .12s both; }
.forest-arch { position: absolute; inset: 25px 24px 49px; overflow: hidden; border-radius: 48% 48% 3px 3px; background: #254631; }
.arch-sky { position: absolute; inset: 0; background: radial-gradient(ellipse at 55% 25%, #9aab655c, transparent 56%), url('assets/sherwood-forest.svg') center bottom / cover; }
.forest-arch::after { content: ''; position: absolute; inset: 13px; border: 1px solid #ddcf9838; border-radius: 48% 48% 0 0; }
.arch-outline { position: absolute; inset: 11px 10px 36px; border: 1px solid #adb290; border-radius: 48% 48% 2px 2px; }
.arch-stars { position: absolute; top: 50px; left: 0; right: 0; display: flex; justify-content: center; gap: 65px; color: #d6bb80; font-size: 20px; }
.arch-stars span { transform: translateY(-19px); font-size: 11px; }
.arch-label { position: absolute; bottom: 18px; left: 0; right: 0; color: #bdc6aa; text-align: center; font: 400 8px var(--mono); letter-spacing: .2em; }
.hero-character { position: absolute; z-index: 1; width: 108%; max-width: none; height: 108%; top: -19px; left: -6%; object-fit: contain; filter: drop-shadow(9px 18px 14px #071b2363); transform: rotate(-6deg); }
.portrait-coordinate { position: absolute; right: -15px; top: 250px; color: var(--muted); writing-mode: vertical-rl; font: 400 8px var(--mono); letter-spacing: .2em; }
.portrait-caption { position: absolute; bottom: -22px; left: 34px; display: flex; align-items: center; gap: 16px; color: var(--muted); }
.caption-line { width: 33px; height: 1px; background: var(--gold); }
.portrait-caption p { font: 500 17px/1.3 var(--serif); }
.portrait-caption em { color: var(--gold); }
.scroll-cue { position: absolute; left: 5.55%; bottom: 25px; display: flex; align-items: center; gap: 18px; color: var(--muted); font: 400 8px var(--mono); letter-spacing: .14em; }
.scroll-cue > span:last-child { font-size: 20px; color: var(--gold); }
.forest-ribbon { display: flex; align-items: center; justify-content: center; gap: 37px; min-height: 61px; padding: 15px 24px; overflow: hidden; white-space: nowrap; border-top: 1px solid #b4a376; border-bottom: 1px solid #b4a376; background: #e9e3cd; color: var(--forest); }
.forest-ribbon > span { font: 600 14px var(--serif); letter-spacing: .1em; }
.forest-ribbon .icon { width: 49px; color: #a3894d; }

.roadmap-section { position: relative; overflow: hidden; padding: 90px max(5.55%, calc((100vw - 1280px)/2)); color: var(--paper); background: var(--forest-dark); }
.roadmap-section::before { content: ''; position: absolute; top: -220px; right: -300px; width: 850px; height: 850px; border: 1px solid #c0cb9220; border-radius: 50%; box-shadow: 0 0 0 65px #102f22, 0 0 0 66px #c0cb9214, 0 0 0 130px #102f22, 0 0 0 131px #c0cb9210; pointer-events: none; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.roadmap-heading { position: relative; }
.roadmap-heading .eyebrow { color: var(--gold-light); }
.small-star { font-size: 20px; line-height: 1; }
h2 { font-size: clamp(48px, 4.8vw, 69px); line-height: .98; letter-spacing: -.035em; }
h2 em { color: var(--gold); font-weight: 500; }
.roadmap-heading h2 { margin-top: 20px; }
.roadmap-heading h2 em { color: var(--gold-light); }
.roadmap-heading > p { margin-bottom: 6px; color: #bdc7b6; font-size: 15px; line-height: 1.85; }
.quest-list { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 55px; border-top: 1px solid #b2bf8f4a; }
.quest-card { min-width: 0; padding: 29px 32px 0; border-right: 1px solid #b2bf8f33; }
.quest-card:first-child { padding-left: 0; }
.quest-card:last-child { padding-right: 0; border-right: 0; }
.quest-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 31px; }
.quest-number { width: 37px; height: 44px; display: grid; place-items: center; border: 1px solid #85916a; border-radius: 2px 2px 18px 18px; color: var(--gold-light); font: 500 20px var(--serif); }
.quest-current .quest-number { border-color: var(--gold-light); background: var(--gold-light); color: var(--forest-dark); }
.quest-state { display: inline-flex; align-items: center; gap: 6px; color: #c1c6ae; font: 400 9px/1.5 var(--mono); letter-spacing: .025em; }
.quest-current .quest-state { color: var(--gold-light); }
.quest-state > span { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-light); }
.quest-chapter { margin-bottom: 10px; color: #bac2a5; font: 400 10px var(--mono); letter-spacing: .12em; }
.quest-card h3 { margin-bottom: 13px; font-size: 35px; letter-spacing: -.025em; }
.quest-card > p:not(.quest-chapter) { max-width: 330px; min-height: 101px; color: #bdc7b6; font-size: 14px; line-height: 1.85; }
.quest-footnote { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 28px; padding-top: 17px; border-top: 1px solid #b2bf8f33; color: #d0b675; font: 400 8px var(--mono); letter-spacing: .045em; }
.quest-footnote .icon { width: 35px; }
.roadmap-postscript { position: relative; display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 56px; color: #bbc5aa; font: italic 500 20px var(--serif); }
.roadmap-postscript .icon { width: 25px; height: 25px; color: var(--gold-light); }

.chart-section { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 70px; max-width: 1440px; margin: auto; padding: 105px 5.55%; }
.chart-intro h2 { margin: 20px 0 22px; }
.chart-intro > p:not(.eyebrow) { max-width: 320px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.text-link { display: inline-flex; align-items: center; gap: 25px; margin-top: 27px; padding: 0 0 10px; border-bottom: 1px solid var(--gold); font: 500 10px var(--mono); }
.text-link .icon { width: 40px; transition: transform .2s; }
.text-link:hover .icon { transform: translateX(5px); }
.lookout-note { display: flex; align-items: center; gap: 15px; margin-top: 36px; color: var(--muted); font: 500 18px/1.3 var(--serif); }
.lookout-note > .icon { width: 40px; height: 40px; color: var(--gold); }
.lookout-note em { color: var(--gold); }
.chart-panel { min-width: 0; padding: 5px; border: 1px solid #b8bda5; background: #eeebdd; box-shadow: 6px 6px 0 #e5dfcc; }
.chart-topline, .chart-bottomline { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 17px; border: 1px solid #cad0b9; font: 400 9px/1.5 var(--mono); }
.chart-topline > span:first-child { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.chart-topline > span:last-child { color: var(--muted); font-size: 8px; }
.chart-topline b { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.chart-topline b.is-live { background: #3c734b; }
.chart-frame-wrap { position: relative; display: grid; min-height: 324px; background: linear-gradient(#596a3810 1px, transparent 1px), linear-gradient(90deg, #596a3810 1px, transparent 1px), #e9ebdc; background-size: 35px 35px; border-left: 1px solid #cad0b9; border-right: 1px solid #cad0b9; }
.chart-frame-wrap iframe { width: 100%; height: 470px; border: 0; background: #e9ebdc; }
.chart-placeholder { display: grid; place-items: center; min-height: 324px; margin: 0; color: var(--muted); font: 500 11px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.chart-frame-wrap [hidden] { display: none; }
.chart-bottomline { padding: 10px 17px; color: var(--muted); font-size: 8px; }
.chart-bottomline b { margin-left: 5px; color: var(--forest); font-weight: 500; }
.chart-bottomline > .icon { width: 18px; height: 18px; color: var(--gold); }
.site-footer { background: var(--forest-dark); color: var(--paper); padding: 42px max(5.55%, calc((100vw - 1280px)/2)) 24px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-bottom: 35px; }
.site-footer .brand-mark { background: #d7d9bd; border-color: #a7af84; }
.footer-top > p { color: #dfdfc7; font: 500 25px var(--serif); }
.footer-top > p em { color: var(--gold-light); }
.back-top { display: flex; align-items: center; gap: 22px; font: 400 9px var(--mono); }
.back-top > span { color: var(--gold-light); font-size: 24px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid #b2bf8f33; color: #b9c4ab; font: 400 8px/1.6 var(--mono); letter-spacing: .035em; }
.footer-bottom > div { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--gold-light); }
.toast { position: fixed; z-index: 20; bottom: 24px; left: 50%; width: max-content; max-width: calc(100% - 32px); padding: 14px 20px; border: 1px solid var(--gold-light); color: var(--paper); background: var(--forest-dark); font-size: 13px; line-height: 1.5; box-shadow: 0 8px 30px #102f2233; opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: opacity .2s, transform .2s; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
@keyframes enter { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

@media (min-width: 1441px) { .site-header, .hero-section, .chart-section { padding-left: 80px; padding-right: 80px; } }
@media (max-width: 1100px) {
	.site-header { padding-left: 4%; padding-right: 4%; }
	.nav { gap: 23px; }
	.hero-section { column-gap: 22px; padding: 55px 4% 75px; }
	h1 { font-size: clamp(70px, 8.5vw, 94px); }
	.portrait-stage { height: 540px; }
	.hero-character { height: 102%; top: 0; }
	.hero-text { font-size: 14px; }
	.desktop-break { display: none; }
	.button { padding: 11px 13px; font-size: 10px; gap: 9px; }
	.button-primary > span { margin-left: 0; }
	.hero-actions { gap: 9px; }
	.portrait-caption { left: 20px; }
	.forest-ribbon { gap: 23px; }
	.forest-ribbon > span { font-size: 12px; }
	.quest-card { padding-right: 23px; padding-left: 23px; }
	.quest-topline { flex-wrap: wrap; }
	.quest-card h3 { font-size: 30px; }
	.quest-card > p:not(.quest-chapter) { min-height: 108px; }
	.chart-section { gap: 40px; }
	.footer-top > p { font-size: 21px; }
}
@media (max-width: 800px) {
	.site-header { min-height: 100px; grid-template-columns: 1fr auto; padding: 18px 6% 0; }
	.brand-name { font-size: 28px; }
	.brand-mark { width: 42px; height: 46px; }
	.brand-mark img { width: 38px; height: 38px; }
	.top-buy { grid-column: 2; grid-row: 1; font-size: 10px; padding: 9px 12px; gap: 12px; }
	.nav { grid-column: 1 / -1; justify-content: center; gap: 45px; margin-top: 10px; padding-bottom: 8px; }
	.nav a { font-size: 12px; }
	.hero-section { grid-template-columns: 1fr; gap: 34px; padding: 44px 8% 70px; }
	.hero-copy { max-width: 560px; margin: auto; width: 100%; }
	h1 { font-size: clamp(78px, 13vw, 104px); }
	.hero-text { max-width: 440px; font-size: 15px; }
	.button { font-size: 11px; padding: 13px 18px; }
	.portrait-stage { width: min(100%, 490px); height: 570px; margin: 0 auto; }
	.hero-character { top: -12px; height: 106%; }
	.portrait-caption { bottom: -13px; }
	.scroll-cue { left: 8%; bottom: 17px; }
	.forest-ribbon { justify-content: flex-start; gap: 25px; min-height: 52px; }
	.forest-ribbon > span { font-size: 13px; }
	.roadmap-section { padding: 65px 8%; }
	.section-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
	.roadmap-heading > p br { display: none; }
	.roadmap-heading > p { max-width: 390px; }
	h2 { font-size: 60px; }
	.quest-list { grid-template-columns: 1fr; margin-top: 32px; }
	.quest-card, .quest-card:first-child, .quest-card:last-child { padding: 28px 0; border-right: 0; border-bottom: 1px solid #b2bf8f33; }
	.quest-topline { margin-bottom: 22px; }
	.quest-card h3 { font-size: 37px; }
	.quest-card > p:not(.quest-chapter) { min-height: 0; max-width: 440px; font-size: 14px; }
	.quest-state { font-size: 9px; }
	.quest-footnote { max-width: 440px; margin-top: 20px; padding-top: 0; border: 0; font-size: 9px; }
	.roadmap-postscript { margin-top: 32px; text-align: center; font-size: 19px; }
	.chart-section { grid-template-columns: 1fr; gap: 35px; padding: 65px 8%; }
	.chart-intro > p:not(.eyebrow) { max-width: 400px; }
	.lookout-note { display: none; }
	.chart-frame-wrap { min-height: 340px; }
	.site-footer { padding: 35px 8% 22px; }
	.footer-top { flex-wrap: wrap; gap: 25px; padding-bottom: 25px; }
	.footer-top > p { order: 3; width: 100%; font-size: 26px; }
	.footer-bottom { flex-wrap: wrap; gap: 16px; }
	.footer-bottom > span:nth-child(2) { display: none; }
}
@media (max-width: 480px) {
	.announcement { min-height: 29px; font-size: 8px; letter-spacing: .095em; padding: 7px 10px; }
	.announcement > span:last-child, .announcement-star { display: none; }
	.site-header { padding-left: 6%; padding-right: 6%; }
	.brand { gap: 8px; }
	.brand-name { font-size: 26px; }
	.brand-name small { font-size: 7px; margin-top: 6px; }
	.top-buy { font-size: 9px; gap: 9px; padding: 8px 10px; }
	.top-buy .arrow-icon { width: 26px; }
	.nav { gap: 36px; }
	.hero-section { gap: 27px; padding: 35px 6% 66px; }
	.eyebrow { font-size: 9px; gap: 9px; letter-spacing: .08em; }
	h1 { font-size: clamp(66px, 17.4vw, 84px); margin-top: 21px; margin-bottom: 23px; }
	.hero-motto { font-size: 13px; margin-bottom: 10px; }
	.hero-text { font-size: 14px; line-height: 1.85; }
	.hero-actions { display: grid; grid-template-columns: 1fr 1.12fr; gap: 8px; margin-top: 22px; }
	.button { min-height: 50px; gap: 7px; padding: 10px 8px; font-size: 9px; }
	.button-primary > .icon { width: 21px; height: 21px; }
	.button-primary > span { font-size: 16px; }
	.button-outline .arrow-icon { width: 25px; }
	.social-links { margin-top: 21px; }
	.social-links > span { font-size: 9px; margin-right: 5px; }
	.contract { gap: 8px; margin-top: 17px; font-size: 9px; }
	.portrait-stage { height: 465px; }
	.forest-arch { inset: 25px 20px 43px; }
	.arch-outline { inset: 13px 8px 31px; }
	.hero-character { top: -8px; height: 104%; left: -5%; }
	.arch-stars { gap: 45px; top: 41px; }
	.arch-label { font-size: 7px; }
	.portrait-caption { left: 22px; gap: 10px; bottom: -15px; }
	.portrait-caption p { font-size: 15px; }
	.portrait-coordinate { right: -4px; top: 190px; font-size: 7px; }
	.scroll-cue { left: 6%; font-size: 7px; }
	.roadmap-section, .chart-section { padding: 55px 6%; }
	h2 { font-size: clamp(43px, 12vw, 57px); }
	.roadmap-postscript { font-size: 17px; gap: 8px; }
	.chart-topline { padding: 14px 10px; font-size: 8px; }
	.chart-topline > span:last-child { font-size: 7px; }
	.chart-frame-wrap { min-height: 310px; }
	.chart-bottomline { padding: 10px; font-size: 7px; gap: 8px; }
	.site-footer { padding: 30px 6% 22px; }
	.back-top { gap: 10px; font-size: 8px; }
	.footer-top > p { font-size: 24px; }
	.footer-bottom { font-size: 7px; }
}
@media (max-width: 360px) {
	.hero-actions { grid-template-columns: 1fr; }
	.portrait-stage { height: 405px; }
	.social-links { gap: 6px; }
	.social-links > span { font-size: 7px; }
	.top-buy { gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}
