

:root {
  --font-geist-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --obsidian: #060908;
  --obsidian-soft: #0b100e;
  --obsidian-card: #101612;
  --ivory: #f1ede3;
  --ivory-deep: #dfd7c7;
  --ink: #111613;
  --gold: #c8a766;
  --gold-light: #e4ca8e;
  --emerald: #0b5d45;
  --emerald-deep: #073c2f;
  --emerald-light: #2bc58d;
  --white: #faf8f2;
  --muted: #a6aea8;
  --line: rgba(200, 167, 102, 0.28);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: var(--font-geist-sans), "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-is-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--obsidian);
}

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

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 12px 18px;
  background: var(--ivory);
  color: var(--ink);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  min-height: 100vh;
  background: var(--obsidian);
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--emerald-light));
  box-shadow: 0 0 18px rgba(43, 197, 141, 0.5);
}

.container,
.header-inner {
  width: min(100% - 112px, 1420px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(200, 167, 102, 0.16);
  background: rgba(6, 9, 8, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-premium,
.brand-energy {
  font-family: var(--serif);
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1;
}

.brand-premium {
  color: var(--white);
}

.brand-energy {
  color: var(--gold);
}

.brand-tld {
  margin-left: 2px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 0.66em;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 54px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(250, 248, 242, 0.8);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switch :is(button, a) {
  position: relative;
  border: 0;
  padding: 9px 0;
  background: transparent;
  color: rgba(250, 248, 242, 0.56);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.language-switch :is(button, a)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.language-switch :is(button, a).active {
  color: var(--gold-light);
}

.language-switch :is(button, a).active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--ivory);
  transition:
    transform 180ms ease,
    margin 180ms ease;
}

.menu-toggle.active span:first-child {
  margin-bottom: -1px;
  transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
  margin-top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 110px 28px 40px;
  background:
    radial-gradient(circle at 75% 20%, rgba(11, 93, 69, 0.32), transparent 35%),
    var(--obsidian);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  font-family: var(--serif);
  font-size: clamp(34px, 9vw, 52px);
}

.mobile-menu nav span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.mobile-menu-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding-top: 96px;
  background: var(--obsidian);
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: 3;
  top: 96px;
  bottom: 126px;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, var(--line) 14%, var(--line) 86%, transparent);
  content: "";
  opacity: 0.58;
}

.hero-grid,
.launch-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 167, 102, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 167, 102, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black 15%, transparent 95%);
}

.hero-glow,
.launch-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-one {
  top: 28%;
  right: 18%;
  width: 340px;
  height: 340px;
  background: rgba(11, 93, 69, 0.22);
}

.hero-glow-two {
  bottom: 8%;
  left: 25%;
  width: 220px;
  height: 220px;
  background: rgba(200, 167, 102, 0.08);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  width: min(100% - 112px, 1420px);
  margin: 0 auto 126px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 705px;
  padding: 52px 68px 56px 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  border: 1px solid rgba(200, 167, 102, 0.7);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-light);
  box-shadow: 0 0 14px rgba(43, 197, 141, 0.95);
  animation: status-pulse 2.6s ease-in-out infinite;
}

.hero-kicker {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(250, 248, 242, 0.55);
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(60px, 5.9vw, 102px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-body {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(250, 248, 242, 0.68);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 350;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  min-width: 245px;
  padding: 18px 22px;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition:
    background 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

.button svg,
.text-link svg,
.hero-audiences > a > svg:last-child,
.launch-actions > a > svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms ease;
}

.button-gold {
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold);
  color: var(--obsidian);
  box-shadow: 0 0 40px rgba(200, 167, 102, 0.16);
}

.button:hover svg,
.text-link:hover svg,
.hero-audiences > a:hover > svg:last-child,
.launch-actions > a:hover > svg {
  transform: translateX(5px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(250, 248, 242, 0.38);
  padding: 10px 0;
  color: rgba(250, 248, 242, 0.82);
  font-size: 14px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 30px;
}

.hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(250, 248, 242, 0.68);
  font-size: 13px;
  transition: color 180ms ease;
}

.hero-contact a:hover {
  color: var(--gold-light);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.contact-icon svg {
  width: 15px;
  height: 15px;
}

.hero-art {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  z-index: 1;
  top: 96px;
  right: -4vw;
  bottom: 126px;
  left: 43%;
  display: grid;
  place-items: center;
  transform: translate(var(--parallax-x), var(--parallax-y));
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-art::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--obsidian) 0%,
    rgba(6, 9, 8, 0.72) 12%,
    transparent 38%,
    transparent 88%,
    rgba(6, 9, 8, 0.78) 100%
  );
  content: "";
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
  opacity: 0.98;
  filter: saturate(0.92) contrast(1.05);
  animation: art-breathe 16s ease-in-out infinite alternate;
}

.art-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(200, 167, 102, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.art-orbit-one {
  right: 7%;
  width: min(42vw, 680px);
  aspect-ratio: 1;
  animation: orbit-spin 32s linear infinite;
}

.art-orbit-two {
  right: 16%;
  width: min(28vw, 430px);
  aspect-ratio: 1;
  border-color: rgba(43, 197, 141, 0.16);
  animation: orbit-spin 24s linear infinite reverse;
}

.hero-audiences {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 126px;
  border-top: 1px solid var(--line);
  background: rgba(6, 9, 8, 0.78);
  backdrop-filter: blur(14px);
}

.hero-audiences > a {
  display: grid;
  grid-template-columns: 60px 1fr 22px;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--line);
  padding: 0 clamp(28px, 4vw, 68px);
  transition: background 220ms ease;
}

.hero-audiences > a:last-child {
  border-right: 0;
}

.hero-audiences > a:hover {
  background: rgba(200, 167, 102, 0.06);
}

.hero-audiences > a > svg:first-child {
  width: 42px;
  height: 42px;
  color: var(--gold);
  stroke-width: 1.2;
}

.hero-audiences span {
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 36px);
}

.hero-audiences > a > svg:last-child {
  color: var(--gold);
}

.hero-enter {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-enter 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-enter-one {
  animation-delay: 100ms;
}

.hero-enter-two {
  animation-delay: 180ms;
}

.hero-enter-three {
  animation-delay: 260ms;
}

.hero-enter-four {
  animation-delay: 360ms;
}

.hero-enter-five {
  animation-delay: 460ms;
}

.hero-enter-six {
  animation-delay: 560ms;
}

section {
  position: relative;
}

.section-number {
  position: absolute;
  top: 46px;
  right: 48px;
  color: currentColor;
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.38;
}

.section-number::before {
  display: inline-block;
  width: 38px;
  height: 1px;
  margin-right: 12px;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

.section-dark {
  background: var(--obsidian-soft);
  color: var(--ivory);
}

.section-ivory {
  background: var(--ivory);
  color: var(--ink);
}

.section-emerald {
  background:
    radial-gradient(circle at 84% 12%, rgba(43, 197, 141, 0.12), transparent 26%),
    var(--emerald-deep);
  color: var(--ivory);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.statement {
  padding: 150px 0;
  border-top: 1px solid rgba(200, 167, 102, 0.12);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 80px;
}

.statement h2,
.section-heading h2,
.audience-heading h2,
.vision-copy h2,
.launch-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.statement h2 {
  max-width: 900px;
  font-size: clamp(48px, 5.2vw, 82px);
}

.statement-grid > div:last-child > p {
  max-width: 760px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.focus-section,
.audience-section,
.vision-section,
.process-section {
  padding: 150px 0 160px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 80px;
}

.section-heading h2 {
  max-width: 790px;
  font-size: clamp(48px, 5.1vw, 80px);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  border-top: 1px solid rgba(17, 22, 19, 0.25);
  border-bottom: 1px solid rgba(17, 22, 19, 0.25);
}

.pillar-card {
  min-height: 390px;
  border-right: 1px solid rgba(17, 22, 19, 0.2);
  padding: 34px 36px 42px;
  transition:
    background 260ms ease,
    transform 260ms ease;
}

.pillar-card:last-child {
  border-right: 0;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

.pillar-top {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--emerald);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.mini-line {
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.pillar-card h3,
.audience-card h3,
.process-track h3 {
  margin: 75px 0 0;
  font-family: var(--serif);
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pillar-card p,
.audience-card p,
.process-track p {
  margin: 28px 0 0;
  color: rgba(17, 22, 19, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.audience-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.audience-heading h2 {
  max-width: 820px;
  margin-top: 26px;
  font-size: clamp(48px, 5.1vw, 80px);
}

.audience-heading > p {
  max-width: 500px;
  margin: 0;
  color: rgba(241, 237, 227, 0.62);
  font-size: 16px;
  line-height: 1.75;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 88px;
}

.audience-card {
  min-height: 470px;
  border: 1px solid rgba(228, 202, 142, 0.24);
  padding: 34px;
  background: rgba(6, 22, 16, 0.28);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.audience-card:hover {
  border-color: rgba(228, 202, 142, 0.58);
  background: rgba(6, 22, 16, 0.48);
  transform: translateY(-5px);
}

.audience-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--gold-light);
}

.audience-card-top svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.1;
}

.audience-card-top span {
  font-size: 10px;
  letter-spacing: 0.13em;
}

.audience-card h3 {
  margin-top: 64px;
  color: var(--ivory);
}

.audience-card p {
  color: rgba(241, 237, 227, 0.63);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.tag-list span {
  border: 1px solid rgba(228, 202, 142, 0.2);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(241, 237, 227, 0.66);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 110px;
}

.vision-copy h2 {
  max-width: 800px;
  margin-top: 28px;
  font-size: clamp(50px, 5.5vw, 86px);
}

.vision-copy > p {
  max-width: 720px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.principle-list {
  margin: 65px 0 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 27px 0;
}

.principle-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-list span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.principle-list p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.1vw, 34px);
  letter-spacing: -0.025em;
}

.process-heading h2 {
  max-width: 890px;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin-top: 100px;
}

.process-track::before {
  position: absolute;
  top: 51px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(17, 22, 19, 0.22);
  content: "";
}

.process-track article {
  position: relative;
  padding-top: 85px;
}

.process-index {
  position: absolute;
  top: 0;
  color: var(--emerald);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.process-node {
  position: absolute;
  z-index: 1;
  top: 43px;
  left: 0;
  width: 17px;
  height: 17px;
  border: 5px solid var(--ivory);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(17, 22, 19, 0.3);
}

.process-track h3 {
  margin: 0;
}

.process-track p {
  max-width: 350px;
}

.launch-section {
  padding: 150px 0 80px;
  border-top: 1px solid var(--line);
  background: var(--obsidian);
  overflow: hidden;
}

.launch-grid {
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  opacity: 0.5;
}

.launch-glow {
  top: -160px;
  left: 50%;
  width: 620px;
  height: 420px;
  background: rgba(11, 93, 69, 0.26);
  transform: translateX(-50%);
}

.launch-inner {
  position: relative;
  z-index: 2;
}

.launch-copy {
  max-width: 930px;
  margin-inline: auto;
  text-align: center;
}

.launch-copy .status-pill {
  margin-inline: auto;
}

.launch-copy h2 {
  margin-top: 42px;
  font-size: clamp(62px, 7.5vw, 116px);
}

.launch-copy > p {
  max-width: 680px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.launch-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 970px;
  margin: 80px auto 0;
  border: 1px solid var(--line);
}

.launch-actions > a {
  display: grid;
  grid-template-columns: 52px 1fr 26px;
  align-items: center;
  gap: 20px;
  min-height: 124px;
  padding: 24px 32px;
  transition: background 220ms ease;
}

.launch-actions > a:first-child {
  border-right: 1px solid var(--line);
}

.launch-actions > a:hover {
  background: rgba(200, 167, 102, 0.06);
}

.launch-action-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
}

.launch-action-icon svg {
  width: 20px;
  height: 20px;
}

.launch-actions small {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-actions strong {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.launch-notice {
  max-width: 720px;
  margin: 30px auto 0;
  color: rgba(166, 174, 168, 0.65);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--obsidian);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 64px;
  padding-bottom: 52px;
}

.footer-tagline {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  border-top: 1px solid rgba(200, 167, 102, 0.18);
  padding-top: 32px;
  padding-bottom: 42px;
  color: rgba(166, 174, 168, 0.62);
  font-size: 10px;
  line-height: 1.7;
}

.footer-bottom p {
  max-width: 850px;
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pillar-grid [data-reveal]:nth-child(2),
.audience-grid [data-reveal]:nth-child(2),
.process-track [data-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.pillar-grid [data-reveal]:nth-child(3),
.audience-grid [data-reveal]:nth-child(3),
.process-track [data-reveal]:nth-child(3) {
  transition-delay: 180ms;
}

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes art-breathe {
  from {
    transform: scale(1.01);
  }
  to {
    transform: scale(1.035);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .container,
  .header-inner,
  .hero-inner {
    width: min(100% - 64px, 1120px);
  }

  .desktop-nav {
    gap: 26px;
  }

  .hero-title {
    font-size: clamp(54px, 6.6vw, 78px);
  }

  .hero-copy {
    padding-right: 34px;
  }

  .hero-audiences > a {
    grid-template-columns: 42px 1fr 18px;
    gap: 14px;
    padding-inline: 28px;
  }

  .hero-audiences > a > svg:first-child {
    width: 34px;
    height: 34px;
  }

  .statement-grid,
  .section-heading {
    grid-template-columns: 0.48fr 1.52fr;
    gap: 40px;
  }

  .pillar-card,
  .audience-card {
    padding: 28px;
  }
}

@media (max-width: 900px) {
  .container,
  .header-inner,
  .hero-inner {
    width: min(100% - 48px, 820px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 80px;
  }

  .site-header.is-scrolled {
    min-height: 80px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions > .language-switch {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: 940px;
    padding-top: 80px;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    display: block;
    margin-bottom: 180px;
  }

  .hero-copy {
    max-width: 680px;
    padding: 78px 0 0;
  }

  .hero-title {
    max-width: 660px;
    font-size: clamp(54px, 10vw, 86px);
  }

  .hero-body {
    max-width: 600px;
  }

  .hero-art {
    top: 355px;
    right: -36%;
    bottom: 126px;
    left: 20%;
    opacity: 0.66;
  }

  .hero-art::before {
    background:
      linear-gradient(180deg, var(--obsidian) 0%, transparent 28%, transparent 78%, var(--obsidian) 100%),
      linear-gradient(90deg, var(--obsidian), transparent 35%);
  }

  .hero-audiences {
    height: 126px;
  }

  .hero-audiences > a {
    grid-template-columns: 32px 1fr;
    padding-inline: 20px;
  }

  .hero-audiences > a > svg:last-child {
    display: none;
  }

  .hero-audiences span {
    font-size: 24px;
  }

  .statement,
  .focus-section,
  .audience-section,
  .vision-section,
  .process-section {
    padding: 112px 0 120px;
  }

  .statement-grid,
  .section-heading,
  .audience-heading,
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pillar-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 22, 19, 0.2);
    padding: 40px 8px 46px;
  }

  .pillar-card:last-child {
    border-bottom: 0;
  }

  .pillar-card h3 {
    margin-top: 50px;
  }

  .audience-grid {
    gap: 14px;
  }

  .audience-card {
    min-height: 420px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-track::before {
    top: 0;
    bottom: 0;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .process-track article {
    padding: 8px 0 70px 50px;
  }

  .process-index {
    position: static;
  }

  .process-node {
    top: 8px;
    left: 0;
  }

  .process-track h3 {
    margin-top: 24px;
  }

  .launch-section {
    padding-top: 115px;
  }

  .launch-actions {
    grid-template-columns: 1fr;
  }

  .launch-actions > a:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom > div {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .container,
  .header-inner,
  .hero-inner {
    width: min(100% - 36px, 560px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-premium,
  .brand-energy {
    font-size: 26px;
  }

  .hero {
    min-height: 920px;
    padding-top: 74px;
  }

  .hero-grid,
  .launch-grid {
    background-size: 48px 48px;
  }

  .hero-copy {
    padding-top: 52px;
  }

  .status-pill {
    padding: 9px 14px;
    font-size: 11px;
  }

  .hero-kicker {
    margin-top: 22px;
    font-size: 9px;
    line-height: 1.6;
  }

  .hero-title {
    margin-top: 16px;
    font-size: clamp(49px, 14vw, 66px);
    line-height: 0.97;
  }

  .hero-body {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

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

  .hero-contact {
    flex-direction: column;
    margin-top: 25px;
  }

  .hero-art {
    top: 430px;
    right: -70%;
    bottom: 124px;
    left: -8%;
    opacity: 0.52;
  }

  .art-orbit {
    display: none;
  }

  .hero-audiences {
    height: 124px;
  }

  .hero-audiences > a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 14px 6px;
    text-align: center;
  }

  .hero-audiences > a > svg:first-child {
    width: 27px;
    height: 27px;
  }

  .hero-audiences span {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .section-number {
    top: 24px;
    right: 18px;
  }

  .statement,
  .focus-section,
  .audience-section,
  .vision-section,
  .process-section {
    padding: 88px 0 94px;
  }

  .statement h2,
  .section-heading h2,
  .audience-heading h2,
  .vision-copy h2 {
    font-size: clamp(41px, 12vw, 58px);
  }

  .statement-grid > div:last-child > p,
  .vision-copy > p,
  .launch-copy > p {
    margin-top: 28px;
    font-size: 15px;
  }

  .pillar-grid,
  .audience-grid,
  .process-track {
    margin-top: 62px;
  }

  .audience-card {
    min-height: auto;
    padding: 26px;
  }

  .audience-card h3 {
    margin-top: 46px;
  }

  .vision-grid {
    gap: 22px;
  }

  .principle-list {
    margin-top: 34px;
  }

  .principle-list p {
    font-size: 24px;
  }

  .launch-section {
    padding: 90px 0 62px;
  }

  .launch-copy h2 {
    margin-top: 34px;
    font-size: clamp(54px, 15vw, 80px);
  }

  .launch-actions {
    margin-top: 56px;
  }

  .launch-actions > a {
    grid-template-columns: 42px minmax(0, 1fr) 22px;
    gap: 14px;
    min-height: 108px;
    padding: 20px;
  }

  .launch-action-icon {
    width: 42px;
    height: 42px;
  }

  .launch-actions strong {
    font-family: var(--sans);
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
    padding-top: 48px;
  }

  .footer-bottom {
    padding-bottom: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
