:root {
  --ink: #162119;
  --paper: #f5efdf;
  --cream: #fff9eb;
  --leaf: #1f5838;
  --lime: #b9d66b;
  --sun: #f3b51b;
  --orange: #e9682e;
  --line: rgba(22, 33, 25, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-header {
  width: min(1440px, 100%);
  min-height: 88px;
  margin: 0 auto;
  padding: 15px clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  object-fit: cover;
}

.site-header nav {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  inset: auto 100% -7px 0;
  height: 2px;
  background: var(--orange);
  transition: inset 180ms ease;
}

.site-header nav a:hover::after {
  inset-right: 0;
}

.language-switch {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
}

.language-switch button {
  border: 0;
  padding: 8px 4px;
  background: transparent;
  color: rgba(22, 33, 25, 0.45);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--ink);
}

.hero {
  min-height: calc(100svh - 88px);
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 110px) clamp(20px, 4vw, 64px) 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  grid-template-rows: 1fr auto;
  gap: 45px 30px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-bottom: 4vw;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(5.1rem, 11vw, 11rem);
  line-height: 0.78;
  letter-spacing: -0.085em;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-line {
  width: max-content;
  max-width: 100%;
  margin: 30px 0 22px;
  padding: 10px 15px;
  background: var(--sun);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 900;
  transform: rotate(-1.5deg);
}

.hero-body {
  max-width: 570px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.4vw, 1.26rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--leaf);
  color: white;
  box-shadow: 7px 7px 0 var(--ink);
}

.button-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--ink);
}

.text-link {
  padding: 12px 0 8px;
  border-bottom: 2px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 600px;
  position: relative;
  align-self: stretch;
}

.sun-disc {
  position: absolute;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  right: -4vw;
  top: -6vw;
  border-radius: 50%;
  background: var(--sun);
}

.photo-frame {
  position: absolute;
  inset: 4% 0 0 5%;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 93% 100%, 0 92%);
  background: #d7ccb5;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.93) contrast(1.03);
}

.sticker {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  box-shadow: 5px 5px 0 var(--ink);
}

.sticker-birth {
  width: 108px;
  aspect-ratio: 1;
  left: -10px;
  top: 2%;
  border-radius: 50%;
  background: var(--cream);
  transform: rotate(-8deg);
}

.sticker-grip {
  right: -5px;
  bottom: 12%;
  padding: 13px 17px;
  background: var(--orange);
  color: white;
  transform: rotate(5deg);
}

.photo-caption {
  position: absolute;
  left: 8%;
  bottom: 1%;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats div {
  min-height: 92px;
  padding: 17px clamp(16px, 3vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  letter-spacing: -0.05em;
}

.hero-stats span {
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: right;
}

.ticker {
  overflow: hidden;
  padding: 18px 0;
  background: var(--ink);
  color: var(--paper);
  transform: rotate(-1deg) scale(1.015);
}

.ticker div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 36px;
  animation: marquee 18s linear infinite;
}

.ticker span {
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  font-weight: 950;
  letter-spacing: -0.03em;
}

.ticker i {
  color: var(--sun);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-pad {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(100px, 12vw, 190px) clamp(20px, 5vw, 76px);
}

.section-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.intro {
  display: grid;
  grid-template-columns: 0.2fr 1fr 0.78fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
}

.intro-heading h2,
.growth-heading h2,
.facts-title h2,
.purpose h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.intro-heading h2 span,
.growth-heading h2 span,
.facts-title h2 span,
.purpose h2 span {
  display: block;
}

.intro-story > p {
  margin: 44px 0 55px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  line-height: 1.75;
}

.name-block {
  padding: 28px;
  background: var(--lime);
  border-left: 8px solid var(--leaf);
  transform: rotate(1deg);
}

.name-block > span {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.name-block h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  letter-spacing: -0.04em;
}

.name-block p {
  margin: 0;
  line-height: 1.65;
}

.chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  min-height: 720px;
  background: var(--leaf);
  color: white;
}

.chapter-poster {
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.chapter-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 30, 18, 0.74));
  pointer-events: none;
}

.chapter-poster video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.chapter-poster span {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 5vw, 70px);
  bottom: 50px;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 950;
  line-height: 0.84;
  letter-spacing: -0.07em;
  pointer-events: none;
}

.chapter-poster span b {
  display: block;
}

.chapter-content {
  padding: clamp(70px, 9vw, 130px) clamp(30px, 7vw, 110px);
}

.chapter-content ol {
  list-style: none;
  margin: 60px 0 0;
  padding: 0;
}

.chapter-content li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.chapter-content li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.chapter-content time {
  color: var(--sun);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.chapter-content h3 {
  margin: -6px 0 8px;
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  letter-spacing: -0.04em;
}

.chapter-content li p {
  margin: 0;
  color: rgba(255,255,255,0.73);
  line-height: 1.55;
}

.growth {
  max-width: 1500px;
}

.growth-heading {
  display: grid;
  grid-template-columns: 0.18fr 1fr 0.62fr;
  gap: clamp(24px, 5vw, 76px);
  align-items: start;
}

.growth-heading > p {
  margin: 48px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.7;
}

.growth-grid {
  margin-top: clamp(70px, 9vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(45px, 7vw, 105px);
  align-items: start;
}

.growth-photo {
  margin: 0;
}

.growth-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.growth-photo figcaption {
  padding-top: 18px;
  display: grid;
  grid-template-columns: 70px minmax(110px, 0.42fr) 1fr;
  gap: 18px;
  align-items: baseline;
  border-top: 2px solid var(--ink);
}

.growth-photo figcaption > span {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.growth-photo figcaption strong {
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  letter-spacing: -0.06em;
}

.growth-photo figcaption p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

.growth-540 {
  margin-top: clamp(60px, 10vw, 145px);
  grid-row: 1 / span 2;
}

.growth-540 img {
  aspect-ratio: 4 / 5;
  object-position: 50% 45%;
}

.growth-1286 img {
  aspect-ratio: 4 / 5;
  object-position: 50% 50%;
}

.growth-1286 > a {
  width: max-content;
  max-width: 100%;
  margin-top: 24px;
  padding-bottom: 8px;
  display: block;
  border-bottom: 2px solid var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.growth-now {
  width: 72%;
  justify-self: end;
}

.growth-now img {
  aspect-ratio: 1;
}

.growth-now figcaption {
  grid-template-columns: 58px 1fr;
}

.growth-now figcaption p {
  grid-column: 2;
}

.media-credit {
  margin: 55px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts {
  display: grid;
  grid-template-columns: 0.16fr 0.84fr 1fr;
  gap: clamp(24px, 4vw, 64px);
}

.facts-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fact {
  min-height: 210px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 42px 0.8fr 1fr;
  align-items: center;
  gap: 18px;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.fact > span {
  align-self: start;
  font-size: 0.7rem;
  font-weight: 900;
}

.fact strong {
  font-size: clamp(2.4rem, 4.6vw, 5.3rem);
  letter-spacing: -0.06em;
}

.fact p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.93rem;
}

.fact-yellow { background: var(--sun); transform: rotate(-1deg); }
.fact-green { background: var(--leaf); color: white; transform: rotate(0.6deg); }
.fact-cream { background: var(--cream); transform: rotate(-0.4deg); }

.purpose {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  background: var(--sun);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.purpose-art {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border-right: 2px solid var(--ink);
}

.purpose-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.purpose-copy {
  align-self: center;
  padding: clamp(65px, 9vw, 140px) clamp(30px, 7vw, 110px);
}

.purpose-body {
  max-width: 720px;
  margin: 38px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.72;
}

.purpose-note {
  max-width: 700px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(22,33,25,0.34);
  font-size: 0.72rem;
  line-height: 1.65;
  opacity: 0.75;
}

.token-section {
  padding: clamp(90px, 12vw, 170px) clamp(20px, 7vw, 110px);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.token-topline {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(245,239,223,0.3);
}

.token-topline > span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.token-section h2 {
  margin: 48px 0 0;
  color: var(--sun);
  font-size: clamp(4.6rem, 15vw, 14rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.token-body {
  margin: 35px 0 45px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.ca-bar {
  width: min(1040px, 100%);
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 12px 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(245,239,223,0.55);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.ca-value {
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: monospace;
  font-size: clamp(0.74rem, 1.4vw, 0.96rem);
  white-space: nowrap;
}

.ca-bar strong {
  min-width: 125px;
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0 15px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.token-links {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 45px;
}

.token-links a {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245,239,223,0.55);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

footer {
  padding: 45px clamp(20px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 20px;
}

.footer-mark {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.footer-mark span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

footer p {
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

footer > a {
  justify-self: end;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-top: 70px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(5rem, 20vw, 9rem);
  }

  .hero-visual {
    min-height: min(120vw, 700px);
  }

  .sun-disc {
    width: 75vw;
  }

  .photo-frame {
    inset: 5% 0 0;
  }

  .intro,
  .growth-heading,
  .facts {
    grid-template-columns: 0.15fr 0.85fr;
  }

  .intro-story,
  .growth-heading > p,
  .facts-list {
    grid-column: 2;
  }

  .growth-heading > p {
    margin-top: 0;
  }

  .growth-grid {
    grid-template-columns: 1fr 1fr;
    gap: 55px 34px;
  }

  .growth-540 {
    margin-top: 70px;
  }

  .growth-now {
    width: 84%;
  }

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

  .chapter-poster {
    min-height: 560px;
  }

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

  .purpose-art {
    min-height: 600px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    padding: 10px 18px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding: 54px 16px 16px;
    gap: 28px;
  }

  .hero h1 {
    font-size: 5rem;
    line-height: 0.84;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .text-link {
    width: max-content;
  }

  .hero-visual {
    min-height: 128vw;
  }

  .photo-frame {
    inset: 7% 0 4%;
  }

  .sticker-birth {
    width: 88px;
    left: 2px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section-pad {
    padding: 95px 18px;
  }

  .intro,
  .growth-heading,
  .facts {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .intro-story,
  .growth-heading > p,
  .facts-list {
    grid-column: auto;
  }

  .intro-heading h2,
  .growth-heading h2,
  .facts-title h2,
  .purpose h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .intro-story > p {
    margin-top: 0;
  }

  .chapter-poster {
    min-height: 520px;
  }

  .chapter-poster video {
    object-position: 50% 50%;
  }

  .chapter-content {
    padding: 70px 20px;
  }

  .chapter-content li {
    grid-template-columns: 76px 1fr;
  }

  .growth-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .growth-540 {
    margin-top: 0;
    grid-row: auto;
  }

  .growth-now {
    width: 86%;
  }

  .growth-photo figcaption {
    grid-template-columns: 54px 0.45fr 1fr;
    gap: 12px;
  }

  .growth-now figcaption {
    grid-template-columns: 48px 1fr;
  }

  .fact {
    min-height: 270px;
    grid-template-columns: 35px 1fr;
    align-items: start;
  }

  .fact strong {
    align-self: center;
  }

  .fact p {
    grid-column: 2;
  }

  .purpose-art {
    min-height: 100vw;
  }

  .purpose-copy {
    padding: 75px 20px;
  }

  .token-section {
    padding: 90px 18px;
  }

  .token-topline > span {
    display: none;
  }

  .token-section h2 {
    font-size: 21vw;
  }

  .ca-bar {
    min-height: 116px;
    padding: 14px;
    flex-direction: column;
  }

  .ca-value {
    width: 100%;
    padding: 8px 2px;
  }

  .ca-bar strong {
    width: 100%;
    min-height: 48px;
  }

  .token-links {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  footer p {
    text-align: left;
  }

  footer > a {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker div { animation: none; }
}
