@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600&family=Playfair+Display:ital,wght@1,500&display=swap');

:root {
  --orange: #f4a51c;
  --orange-hot: #ffb11b;
  --cream: #f7f0df;
  --ink: #17130c;
  --brown: #2a1d0c;
  --line: rgba(23, 19, 12, 0.25);
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --mono: "DM Mono", "Courier New", monospace;
  --serif: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--orange);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--orange);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--orange-hot); }

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--cream);
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, transparent 0, rgba(23, 19, 12, 0.16) 0.45px, transparent 0.85px, transparent 4px),
    repeating-radial-gradient(circle at 71% 68%, transparent 0, rgba(23, 19, 12, 0.12) 0.35px, transparent 0.75px, transparent 5px);
  background-size: 11px 13px, 17px 19px;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  z-index: 15;
  inset: 0 0 auto;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(23, 19, 12, 0.22);
  transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 165, 28, 0.86);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mark {
  display: inline-flex;
  width: 28px;
  height: 24px;
  align-items: end;
  justify-content: space-between;
  transform: skewX(-10deg);
}

.mark i {
  width: 6px;
  background: currentColor;
  border-radius: 1px;
}

.mark i:nth-child(1) { height: 52%; }
.mark i:nth-child(2) { height: 100%; }
.mark i:nth-child(3) { height: 74%; }

.nav { display: flex; gap: clamp(1.25rem, 3vw, 3.5rem); }

.nav a {
  position: relative;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.4rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav a:hover::after, .nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-note {
  justify-self: end;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  padding: 126px var(--pad) 3rem;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
}

#capital-field {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 450px);
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.kicker-line { height: 1px; flex: 1; background: var(--ink); }

.hero-title {
  width: min(1100px, 88vw);
  margin: clamp(3rem, 8vh, 6.5rem) 0 auto;
  font-size: clamp(4.4rem, 10.8vw, 10.5rem);
  font-weight: 500;
  line-height: 0.79;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.title-line {
  display: block;
  overflow: hidden;
  padding: 0.06em 0 0.1em;
}

.title-line > span { display: inline-block; }
.title-line--indent { padding-left: 0.58em; }
.dot { color: var(--cream); }

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(240px, 390px) auto;
  align-items: end;
  gap: 3rem;
  margin-left: clamp(0px, 27vw, 380px);
}

.hero-bottom p {
  margin: 0;
  font-size: clamp(0.92rem, 1.25vw, 1.15rem);
  letter-spacing: -0.02em;
}

.round-link {
  width: 105px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.round-link:hover, .round-link:focus-visible {
  color: var(--orange);
  background: var(--ink);
  transform: rotate(-5deg);
}

.arrow { align-self: end; font-size: 1.25rem; }

.orbit-label {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

.orbit-label--one { right: 16%; top: 34%; transform: rotate(90deg); }
.orbit-label--two { left: 2%; bottom: 26%; transform: rotate(-90deg); }

.section { position: relative; padding: clamp(6rem, 11vw, 11rem) var(--pad); }

.section-index {
  margin-bottom: 3rem;
  font-family: var(--mono);
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.section-index--light { color: rgba(247, 240, 223, 0.62); }

.statement {
  background: var(--cream);
  border-radius: 2.4rem 2.4rem 0 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 7vw, 8rem);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--orange);
}

.eyebrow--light { color: var(--cream); }

.statement-title {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 6.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.statement-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  margin-top: clamp(3rem, 7vw, 6rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.statement-copy p { margin: 0; max-width: 42ch; }

.pillars { background: var(--orange); }

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 3rem;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.section-title {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.section-title em {
  font-family: var(--serif);
  font-weight: 500;
  text-transform: none;
}

.pillar-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.pillar {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 1.4rem clamp(1.2rem, 2.5vw, 2.5rem) 1.6rem;
  border-right: 1px solid var(--ink);
  transition: background 240ms ease, color 240ms ease;
}

.pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--ink); color: var(--orange); }

.pillar-number, .pillar-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pillar h3 {
  margin: auto 0 1.5rem;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pillar p { max-width: 34ch; margin: 0 0 2.5rem; font-size: 0.88rem; }
.pillar-tag { margin-top: auto; }

.perspective {
  min-height: 100svh;
  padding-top: clamp(6rem, 10vw, 10rem);
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}

.perspective-content { position: relative; z-index: 2; width: min(760px, 66vw); }

.perspective-title {
  margin: 2rem 0 2.5rem;
  font-size: clamp(3.5rem, 7.8vw, 8.2rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.perspective-copy { max-width: 48ch; color: rgba(247, 240, 223, 0.7); }

.perspective-orb {
  position: absolute;
  width: min(58vw, 780px);
  aspect-ratio: 1;
  top: 50%;
  right: -12vw;
  transform: translateY(-50%);
  perspective: 900px;
}

.orb-core {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 27%, #ffd970 0, #ffab16 38%, #a84c00 73%, #1a1006 100%);
  box-shadow: 0 0 100px rgba(244, 165, 28, 0.25);
}

.orb-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(244, 165, 28, 0.65);
  border-radius: 50%;
  animation: orbit 11s linear infinite;
}

.orb-ring--one { transform: rotateX(68deg) rotateZ(18deg); }
.orb-ring--two { inset: 15%; animation-duration: 15s; animation-direction: reverse; transform: rotateY(68deg) rotateZ(-12deg); }
.orb-ring--three { inset: 2%; animation-duration: 19s; transform: rotateX(56deg) rotateY(38deg); }

@keyframes orbit { to { rotate: 1 1 0 360deg; } }

.perspective-footer {
  position: absolute;
  z-index: 2;
  inset: auto var(--pad) 2.5rem;
  display: flex;
  justify-content: space-between;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(247, 240, 223, 0.24);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.principles { background: var(--cream); }

.principles-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.principles-head p { max-width: 36ch; margin: 0; }

.principle {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  min-height: 104px;
  border-top: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.principle:last-child { border-bottom: 1px solid var(--line); }
.principle:hover { padding: 0 1.5rem; background: var(--orange); }

.principle span {
  font-family: var(--mono);
  font-size: 0.63rem;
}

.principle h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.principle i { font-style: normal; font-size: 1.4rem; }

.site-footer {
  position: relative;
  color: var(--orange);
  background: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) var(--pad) 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  min-height: 38vh;
}

.wordmark--footer { font-size: clamp(2.2rem, 6vw, 6rem); letter-spacing: -0.06em; }
.wordmark--footer .mark { width: 0.8em; height: 0.72em; }

.footer-top p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 165, 28, 0.36);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible { opacity: 1; transform: none; }

.title-line:nth-child(2) { transition-delay: 80ms; }
.title-line:nth-child(3) { transition-delay: 160ms; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; height: 68px; }
  .header-note { display: none; }
  .nav { justify-self: end; }
  .hero { padding-top: 100px; min-height: 820px; }
  .hero-title { margin-top: 5rem; width: 100%; }
  .hero-bottom { margin-left: 15vw; }
  .statement-grid, .section-heading { grid-template-columns: 1fr; }
  .statement-grid { gap: 3rem; }
  .section-heading { gap: 0; }
  .pillar { min-height: 360px; }
  .perspective-content { width: 80vw; }
  .perspective-orb { opacity: 0.72; right: -24vw; }
}

@media (max-width: 680px) {
  .noise { opacity: 0.04; }
  .site-header { padding: 0 1rem; }
  .nav { display: none; }
  .hero { padding: 96px 1rem 2rem; min-height: 100svh; }
  .hero-kicker { width: 100%; font-size: 0.52rem; }
  .hero-title { margin-top: 15vh; font-size: clamp(3.4rem, 18vw, 6rem); line-height: 0.84; }
  .title-line--indent { padding-left: 0.18em; }
  .hero-bottom { grid-template-columns: 1fr auto; margin-left: 0; gap: 1rem; }
  .hero-bottom p { max-width: 25ch; font-size: 0.82rem; }
  .round-link { width: 82px; padding: 0.75rem; font-size: 0.52rem; }
  .orbit-label { display: none; }
  .section { padding: 5.5rem 1rem; }
  .statement { border-radius: 1.4rem 1.4rem 0 0; }
  .statement-copy { grid-template-columns: 1fr; gap: 1.5rem; }
  .statement-title { font-size: clamp(2.45rem, 12vw, 4rem); }
  .pillar-list { grid-template-columns: 1fr; }
  .pillar { min-height: 310px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .pillar:last-child { border-bottom: 0; }
  .perspective { min-height: 830px; }
  .perspective-content { width: 100%; }
  .perspective-title { font-size: clamp(3.2rem, 15vw, 5.5rem); }
  .perspective-orb { width: 110vw; right: -48vw; top: 68%; }
  .perspective-footer { inset: auto 1rem 1.8rem; }
  .principles-head { grid-template-columns: 1fr; gap: 2rem; }
  .principle { grid-template-columns: 44px 1fr auto; min-height: 88px; }
  .principle:hover { padding: 0 0.7rem; }
  .footer-top { flex-direction: column; gap: 3rem; min-height: 40vh; }
  .footer-bottom { flex-direction: column; gap: 0.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
