:root {
  --ink: #0c0d0d;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --gold: #d99a45;
  --gold-bright: #f2b85e;
  --teal: #7ea6a6;
  --line: rgba(255, 255, 255, 0.18);
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }

.hero {
  position: relative;
  min-height: max(100svh, 56.25vw);
  overflow: hidden;
  isolation: isolate;
  background: #141311;
}
.hero-scene, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-scene { object-fit: cover; object-position: center top; z-index: -3; }
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .995) 0%, rgba(8, 8, 8, .99) 24%, rgba(8, 8, 8, .93) 34%, rgba(8, 8, 8, .75) 44%, rgba(8, 8, 8, .42) 55%, rgba(8, 8, 8, .04) 75%),
    linear-gradient(0deg, rgba(6, 6, 6, .7) 0%, transparent 35%);
}
.hero-book-cover {
  position: absolute;
  z-index: -2;
  left: 64.42%;
  top: 44.6%;
  width: 9.55%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .38);
}
.site-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border: 1px solid #dbaa64; border-radius: 50%;
  box-shadow: inset 0 0 0 5px #8e5c2d, inset 0 0 0 7px #efbc67;
}
.brand-mark i { width: 12px; height: 12px; border-radius: 50%; background: #f5bc5b; box-shadow: 0 0 16px #efae49; }
.brand strong { display: block; font-family: Georgia, serif; letter-spacing: .12em; font-size: 16px; font-weight: 500; }
.brand small { display: block; color: #e3b56e; letter-spacing: .26em; font-size: 8px; margin-top: 3px; }
.header-link { text-decoration: none; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; }

.hero-copy {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(90px, 13vh, 150px) 0 150px;
}
.hero-copy > * { max-width: 690px; }
.eyebrow { color: var(--gold-bright); text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 700; }
h1 {
  margin: 22px 0 24px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero-lede { color: rgba(255, 253, 248, .82); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.6; max-width: 650px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 28px; border-radius: 999px; text-decoration: none; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
.button-primary { color: #17100a; background: linear-gradient(135deg, #f4c16f, #ca8134); box-shadow: 0 12px 36px rgba(213, 143, 57, .28); }
.text-link { text-decoration: none; font-size: 13px; letter-spacing: .04em; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; }
.hero-note { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); margin: 0; width: max-content; max-width: 90%; color: rgba(255,255,255,.64); font-family: Georgia, serif; font-style: italic; font-size: 15px; letter-spacing: .025em; }

@media (max-width: 820px) {
  .hero { min-height: 940px; }
  .hero-scene { object-position: 66% center; opacity: .88; }
  .hero-shade { background: linear-gradient(180deg, rgba(8,8,8,.28), rgba(8,8,8,.6) 48%, rgba(8,8,8,.94) 79%); }
  .hero-book-cover { left: 60.5%; top: 44.7%; width: 12.4%; }
  .site-header, .hero-copy { width: calc(100% - 36px); }
  .header-link { display: none; }
  .hero-copy { position: absolute; left: 18px; bottom: 54px; padding: 0; }
  .hero-copy > * { max-width: 620px; }
  h1 { font-size: clamp(43px, 12vw, 68px); }
  .hero-lede { font-size: 17px; }
  .hero-note { display: none; }
}

@media (max-width: 520px) {
  .hero { min-height: 880px; }
  .hero-scene { height: 58%; object-position: 66% center; opacity: .9; filter: brightness(1.06) saturate(1.03); }
  .hero-shade { background: linear-gradient(180deg, rgba(8,8,8,.22), rgba(8,8,8,.55) 44%, rgba(8,8,8,.92) 72%); }
  .hero-book-cover { left: 60.4%; top: 26.2%; width: 12.4%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .button { width: 100%; }
}

.section-shell { width: min(1240px, calc(100% - 64px)); margin: 0 auto; }
.section-light { background: #f2eee5; color: #171817; }
.section-paper { background: #e5e0d5; color: #171817; }
.section-dark { position: relative; overflow: hidden; background: #101211; color: var(--white); }
.section-number { margin: 0 0 24px; color: #9a682f; font-size: 11px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.section-dark .section-number { color: var(--gold-bright); }
h2 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(42px, 4.8vw, 72px); font-weight: 400; line-height: 1.05; letter-spacing: -.035em; text-wrap: balance; }
.lead { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(24px, 2.3vw, 34px); line-height: 1.35; letter-spacing: -.018em; }

.opening { padding: 140px 0; }
.opening-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(70px, 10vw, 150px); }
.opening-copy { font-size: 17px; line-height: 1.75; color: #4f504c; }
.opening-copy .lead { margin-top: 0; color: #161714; }
.pull-quote { margin: 46px 0 0; padding: 26px 0 0 28px; border-top: 1px solid #b9a98d; border-left: 3px solid #c78a3e; color: #1d1e1b; font-family: Georgia, serif; font-size: 21px; line-height: 1.55; }

.system-section { padding: 140px 0 160px; }
.system-section::before { content: ''; position: absolute; width: 900px; height: 900px; left: -450px; top: -430px; border-radius: 50%; background: radial-gradient(circle, rgba(33,92,91,.2), transparent 65%); }
.section-heading { max-width: 850px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading > p:last-child { max-width: 650px; margin: 28px auto 0; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.7; }
.system-layout { display: grid; grid-template-columns: 1fr .95fr; gap: 100px; align-items: center; margin-top: 100px; }
.system-orbit { position: relative; width: min(520px, 42vw); aspect-ratio: 1; margin: auto; }
.orbit { position: absolute; display: grid; place-items: center; inset: 0; border: 1px solid rgba(227,177,103,.42); border-radius: 50%; box-shadow: 0 0 40px rgba(203,126,47,.05); }
.orbit::before { content: ''; position: absolute; inset: 10px; border: 1px dashed rgba(138,170,171,.22); border-radius: inherit; }
.orbit span { position: absolute; top: 7%; padding: 0 12px; color: #e7bb79; background: #101211; font-size: 9px; font-weight: 800; letter-spacing: .28em; }
.orbit-middle { inset: 18%; border-color: rgba(133,171,171,.55); }
.orbit-middle span { top: 6%; color: #9dbbbc; }
.orbit-inner { inset: 36%; background: radial-gradient(circle, rgba(217,153,69,.22), transparent 70%); border-color: rgba(232,177,95,.75); }
.orbit-inner span { top: 5%; font-size: 8px; }
.orbit-inner i { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 45px 14px rgba(221,142,57,.38); }
.layer-list article { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.13); }
.layer-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.layer-list article > span { color: #d69646; font-size: 11px; letter-spacing: .12em; }
.layer-list h3 { margin: 0 0 10px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.layer-list p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.65; }

.states { padding: 140px 0; }
.states .section-heading { max-width: 1000px; }
.state-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 70px; }
.state-card { position: relative; overflow: hidden; min-height: 570px; padding: 52px; border: 1px solid rgba(25,25,22,.12); }
.state-card::after { content: ''; position: absolute; inset: auto -120px -180px auto; width: 360px; height: 360px; border-radius: 50%; opacity: .45; }
.state-card.reactive { color: #eeece7; background: #262928; }
.state-card.reactive::after { background: repeating-radial-gradient(circle, rgba(200,112,61,.26) 0 2px, transparent 3px 15px); }
.state-card.regulated { color: #f7f3e9; background: linear-gradient(145deg, #15413f, #122c2c); }
.state-card.regulated::after { background: repeating-radial-gradient(circle, rgba(113,180,177,.32) 0 1px, transparent 2px 22px); }
.card-kicker { margin: 0; color: #e9ad61; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.state-card h3 { margin: 24px 0 34px; font-family: Georgia, serif; font-size: clamp(34px, 3.2vw, 48px); font-weight: 400; }
.state-card ul { position: relative; z-index: 1; display: grid; gap: 19px; margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.7); line-height: 1.5; }
.state-card li { padding-left: 25px; }
.state-card li::before { content: ''; display: inline-block; width: 7px; height: 7px; margin: 0 17px 2px -25px; border: 1px solid #e9ad61; border-radius: 50%; }
.state-meter { position: relative; height: 3px; margin: 52px 0 12px; background: rgba(255,255,255,.12); }
.state-meter span { position: absolute; inset: 0 15% 0 0; background: linear-gradient(90deg, #b45f43, #e7ad5d); }
.regulated .state-meter span { inset: 0 0 0 45%; background: linear-gradient(90deg, #7ab2af, #e7ad5d); }
.state-card small { color: rgba(255,255,255,.45); letter-spacing: .17em; font-size: 9px; }

.map-section { padding: 150px 0; }
.map-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px, 9vw, 130px); align-items: center; }
.map-copy > p:not(.section-number) { color: #575852; font-size: 17px; line-height: 1.7; }
.map-copy .lead { color: #1b1b18 !important; }
.map-key { display: grid; gap: 14px; margin-top: 40px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.map-key span { display: flex; align-items: center; gap: 13px; }
.map-key i { display: inline-block; width: 22px; }
.key-line { height: 2px; background: #bf7936; }
.key-dot { width: 8px !important; height: 8px; margin-left: 7px; margin-right: 7px; border-radius: 50%; background: #bf7936; }
.key-ring { width: 12px !important; height: 12px; margin-left: 5px; margin-right: 5px; border: 1px solid #3e7e7d; border-radius: 50%; }
.terrain-map { position: relative; min-height: 0; aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid #cfc5b4; background: #e7e1d5; box-shadow: 0 25px 70px rgba(58,44,27,.12); }
.terrain-map::after { content: 'SELF-LOCATION / FIELD MAP'; position: absolute; right: 24px; top: 24px; color: #9c8e78; font-size: 8px; letter-spacing: .25em; }
.road-segment { position: absolute; z-index: 1; height: 4px; transform-origin: 0 50%; border-radius: 999px; background: linear-gradient(90deg, #b96e2c, #d18b3c); box-shadow: 0 0 0 1px rgba(255,255,255,.25), 0 4px 9px rgba(163,94,34,.16); }
.road-1 { left: 23%; top: 13%; width: 20.6%; transform: rotate(39deg); }
.road-2 { left: 39%; top: 26%; width: 17.5%; transform: rotate(121deg); }
.road-3 { left: 30%; top: 41%; width: 26.6%; transform: rotate(20deg); }
.road-4 { left: 55%; top: 50%; width: 18.4%; transform: rotate(131deg); }
.road-5 { left: 43%; top: 64%; width: 21.9%; transform: rotate(24deg); }
.road-6 { left: 63%; top: 73%; width: 16.1%; transform: rotate(60deg); }
.map-stop { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; color: #6f6251; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.map-stop i { width: 13px; height: 13px; border: 3px solid #e7e1d5; border-radius: 50%; background: #bb7332; box-shadow: 0 0 0 1px #bb7332; }
.stop-1 { left: 22%; top: 12%; }.stop-2 { left: 38%; top: 25%; }.stop-3 { left: 29%; top: 40%; }.stop-4 { left: 54%; top: 49%; }.stop-5 { left: 42%; top: 63%; }.stop-6 { left: 62%; top: 72%; }.stop-7 { left: 70%; top: 86%; }
.map-stop.destination i { width: 18px; height: 18px; background: #e6ae59; box-shadow: 0 0 0 1px #ba742f, 0 0 28px 8px rgba(213,140,56,.35); }
.contour { position: absolute; border: 1px solid rgba(59,116,113,.21); border-radius: 45%; transform: rotate(18deg); }
.contour-a { width: 390px; height: 260px; left: -130px; bottom: 30px; box-shadow: 0 0 0 18px rgba(59,116,113,.04), 0 0 0 40px rgba(59,116,113,.035), 0 0 0 68px rgba(59,116,113,.03); }
.contour-b { width: 290px; height: 180px; right: -80px; top: 70px; box-shadow: 0 0 0 15px rgba(59,116,113,.04), 0 0 0 35px rgba(59,116,113,.035); }
.contour-c { width: 170px; height: 110px; left: 37%; top: 40%; box-shadow: 0 0 0 13px rgba(59,116,113,.04), 0 0 0 28px rgba(59,116,113,.035); }

.book-section { padding: 150px 0; }
.book-glow { position: absolute; width: 900px; height: 900px; left: -280px; top: -50px; border-radius: 50%; background: radial-gradient(circle, rgba(205,133,53,.25), transparent 66%); }
.book-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(80px, 12vw, 180px); align-items: center; }
.book-visual { position: relative; justify-self: center; perspective: 1200px; }
.book-visual img { position: relative; z-index: 2; display: block; width: min(360px, 32vw); border-radius: 2px 8px 8px 2px; box-shadow: -22px 30px 55px rgba(0,0,0,.55); transform: rotateY(-8deg) rotateZ(-1deg); }
.book-visual::before { content: ''; position: absolute; z-index: 1; inset: 6px -14px 6px 12px; background: #d6c9ad; border-radius: 3px 11px 11px 3px; transform: rotateY(-8deg) rotateZ(-1deg); }
.book-shadow { position: absolute; width: 120%; height: 30px; left: -15%; bottom: -35px; border-radius: 50%; background: rgba(0,0,0,.52); filter: blur(13px); }
.book-copy { max-width: 680px; }
.book-copy h2 { font-size: clamp(54px, 6vw, 88px); }
.book-subtitle { margin: 22px 0 30px; color: #e6b66f; font-family: Georgia, serif; font-size: 23px; line-height: 1.4; }
.book-copy > p:not(.section-number):not(.book-subtitle):not(.store-note) { color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.75; }
.book-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 38px 0; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.book-details span { color: #f5f0e7; font-size: 13px; }
.book-details small { display: block; margin-bottom: 8px; color: rgba(255,255,255,.38); font-size: 8px; letter-spacing: .18em; }
.button-large { min-height: 60px; padding: 0 38px; }
.store-note { display: inline-block; margin-left: 18px; color: rgba(255,255,255,.36); font-size: 11px; }

.author-section { padding: 150px 0; background: #071a20; }
.author-section::before { content: ''; position: absolute; width: 760px; height: 760px; right: -360px; top: -360px; border-radius: 50%; background: radial-gradient(circle, rgba(47,112,113,.2), transparent 68%); }
.author-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 9vw, 130px); align-items: center; }
.author-portrait { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 12px; background: linear-gradient(160deg, #b3c7cd, #716c59); box-shadow: 0 28px 80px rgba(0,0,0,.34); }
.author-portrait img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.experience-badge { position: absolute; left: 28px; bottom: 28px; display: grid; gap: 4px; width: min(390px, calc(100% - 56px)); padding: 22px 26px; border-radius: 8px; background: rgba(245,237,219,.96); color: #10272b; box-shadow: 0 14px 34px rgba(0,0,0,.24); }
.experience-badge strong { color: #16727a; font-family: Georgia, serif; font-size: 42px; font-weight: 400; line-height: 1; }
.experience-badge span { font-size: 11px; font-weight: 800; line-height: 1.35; letter-spacing: .05em; text-transform: uppercase; }
.author-copy { max-width: 720px; }
.author-copy h2 { margin-bottom: 32px; color: #fff5df; font-size: clamp(52px, 5.3vw, 82px); }
.author-copy > p:not(.section-number) { color: rgba(255,245,223,.78); font-size: 19px; line-height: 1.72; }
.author-copy > p:last-child { margin-top: 26px; }

.closing { padding: 140px 0; }
.closing-inner { display: flex; flex-direction: column; align-items: center; max-width: 920px; text-align: center; }
.brand-mark-large { width: 64px; height: 64px; margin-bottom: 30px; }
.closing h2 { margin-top: 12px; font-size: clamp(52px, 6vw, 82px); }
.closing p:not(.eyebrow) { margin: 28px auto; color: #585951; font-family: Georgia, serif; font-size: 22px; }
.dark-link { margin-top: 18px; color: #4b4b46; border-color: #8d877b; }
footer { background: #0b0c0c; color: rgba(255,255,255,.44); }
.footer-inner { display: flex; justify-content: space-between; padding: 32px 0; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

@media (max-width: 900px) {
  .section-shell { width: calc(100% - 40px); }
  .opening-grid, .system-layout, .map-grid, .book-grid { grid-template-columns: 1fr; }
  .opening, .system-section, .states, .map-section, .book-section, .author-section, .closing { padding: 100px 0; }
  .system-layout { gap: 70px; }
  .system-orbit { width: min(500px, 88vw); }
  .state-card { padding: 36px; }
  .terrain-map { min-height: 0; }
  .book-visual img { width: min(340px, 70vw); }
  .book-copy { margin: 0 auto; text-align: center; }
  .author-grid { grid-template-columns: 1fr; }
  .author-portrait { width: min(560px, 100%); margin: 0 auto; }
  .author-copy { margin: 0 auto; text-align: left; }
}

@media (max-width: 680px) {
  .state-grid { grid-template-columns: 1fr; }
  .state-card { min-height: auto; }
  .book-details { grid-template-columns: 1fr 1fr; text-align: left; }
  .store-note { display: block; margin: 14px 0 0; }
  .experience-badge { left: 18px; bottom: 18px; width: calc(100% - 36px); padding: 18px 20px; }
  .experience-badge strong { font-size: 36px; }
  .author-copy > p:not(.section-number) { font-size: 17px; }
  .footer-inner { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
}
