:root {
  --paper: #f2eadf;
  --paper-2: #e9dfd1;
  --ink: #111111;
  --muted: #655f58;
  --orange: #d85a0b;
  --orange-2: #f07a19;
  --line: rgba(17, 17, 17, 0.14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.72), transparent 32%),
    radial-gradient(circle at 85% 55%, rgba(216,90,11,.055), transparent 35%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(17,17,17,.07);
  border-radius: 50%;
  pointer-events: none;
}
body::before { left: -115px; top: 22vh; box-shadow: 0 0 0 24px rgba(17,17,17,.025), 0 0 0 54px rgba(17,17,17,.018); }
body::after { right: -140px; bottom: 10vh; box-shadow: 0 0 0 30px rgba(216,90,11,.025), 0 0 0 66px rgba(17,17,17,.018); }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .18;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17,17,17,.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 50%; }
.brand-copy { display: grid; font-family: Impact, "Arial Narrow", sans-serif; letter-spacing: .7px; line-height: .88; font-style: normal; font-size: 20px; }
.brand-copy strong { font-weight: 800; }
.brand-copy em { color: var(--orange); font-style: normal; font-size: 24px; }

.mini-cta {
  text-decoration: none;
  font-family: Impact, "Arial Narrow", sans-serif;
  letter-spacing: 1.2px;
  font-size: 13px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  transition: .2s ease;
}
.mini-cta:hover { background: var(--ink); color: var(--paper); }

.section-shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: center;
  padding: 70px 0 82px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.65px;
  text-transform: uppercase;
}
.eyebrow { border-left: 4px solid var(--orange); padding-left: 11px; margin-bottom: 22px; }
.section-kicker { color: var(--orange); margin-bottom: 12px; }

h1, h2, h3 { margin: 0; }
h1, h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  line-height: .9;
}
h1 { font-size: clamp(64px, 8.5vw, 118px); max-width: 780px; }
h1 span, h2 span { color: var(--orange); }
.hero-lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: #34302c;
  max-width: 620px;
  margin: 28px 0 30px;
}

.hero-actions { display: grid; gap: 10px; max-width: 560px; }
.social-button {
  min-height: 72px;
  border: 1px solid rgba(17,17,17,.35);
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 11px 16px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  background: rgba(255,255,255,.18);
}
.social-button:hover { transform: translateX(5px); border-color: var(--ink); }
.social-button.primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.social-button.primary:hover { background: var(--orange); border-color: var(--orange); }
.social-button span:nth-child(2) { font-family: Impact, "Arial Narrow", sans-serif; font-size: 22px; letter-spacing: .4px; }
.social-button small { display: block; font-family: ui-sans-serif, system-ui, sans-serif; font-size: 9px; letter-spacing: 1.6px; opacity: .72; margin-bottom: 1px; }
.social-button b { font-size: 23px; font-weight: 500; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid currentColor; font-size: 23px; }
.social-icon.play { font-size: 15px; }

.hero-art { min-height: 540px; display: grid; place-items: center; position: relative; }
.hero-logo-wrap {
  width: min(78vw, 420px);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}
.hero-logo {
  width: 80%;
  filter: drop-shadow(0 25px 24px rgba(0,0,0,.15));
  position: relative;
  z-index: 2;
  border-radius: 50%;
}
.orange-orbit {
  position: absolute;
  inset: 7%;
  border: 3px solid var(--orange);
  border-radius: 50%;
  opacity: .88;
}
.orange-orbit::before,
.orange-orbit::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50%;
}
.orange-orbit::before { top: 4%; left: 14%; }
.orange-orbit::after { right: 4%; bottom: 18%; }
.technical-ring { position: absolute; border: 1px dashed rgba(17,17,17,.22); border-radius: 50%; }
.ring-one { width: 490px; height: 490px; }
.ring-two { width: 390px; height: 390px; border-style: solid; opacity: .6; }
.micro-label { position: absolute; font-size: 10px; letter-spacing: 1.8px; font-weight: 800; color: rgba(17,17,17,.42); }
.label-a { top: 10%; left: 0; transform: rotate(-90deg); }
.label-b { right: 0; bottom: 11%; transform: rotate(90deg); }

.manifesto { padding: 90px 0; border-top: 1px solid rgba(17,17,17,.35); }
.manifesto h2, .about h2 { font-size: clamp(52px, 7vw, 88px); margin-bottom: 42px; }
.manifesto-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(17,17,17,.3); }
.manifesto-grid article { padding: 28px 28px 18px 0; min-height: 225px; border-right: 1px solid rgba(17,17,17,.18); }
.manifesto-grid article + article { padding-left: 28px; }
.manifesto-grid article:last-child { border-right: 0; }
.number { color: var(--orange); font-family: Impact, "Arial Narrow", sans-serif; font-size: 16px; }
.manifesto-grid h3 { font-family: Impact, "Arial Narrow", sans-serif; font-size: 34px; margin: 10px 0 13px; }
.manifesto-grid p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 15px; }

.about { padding: 30px 0 95px; }
.about-card {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  padding: 48px;
  overflow: hidden;
}
.about-card::after { content: ""; position: absolute; right: -120px; top: -140px; width: 330px; height: 330px; border: 1px solid rgba(242,234,223,.15); border-radius: 50%; box-shadow: 0 0 0 35px rgba(242,234,223,.025), 0 0 0 70px rgba(242,234,223,.025); }
.about-mark {
  width: 190px;
  height: 190px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 14px;
  background: radial-gradient(
    circle at 50% 38%,
    rgba(255,255,255,.05),
    rgba(255,255,255,.01)
  );
  box-shadow:
    inset 0 0 0 10px rgba(242,234,223,.03);
  position: relative;
  z-index: 2;
}
.about-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(
    0 10px 12px rgba(0,0,0,.22)
  );
}
.about-card .section-kicker { color: var(--orange-2); }
.about-card h2 { margin-bottom: 20px; }
.about-card p { max-width: 720px; color: rgba(242,234,223,.78); line-height: 1.65; margin: 0; }
.signature { margin-top: 18px !important; color: var(--paper) !important; font-weight: 700; }

.closing { padding-bottom: 85px; }
.closing-inner { border: 1px solid rgba(17,17,17,.3); padding: 40px; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.gear-dot { width: 52px; height: 52px; display: grid; place-items: center; background: var(--orange); color: white; border-radius: 50%; font-size: 25px; }
.closing p { margin: 0; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(24px, 3vw, 39px); line-height: 1.05; }
.closing p strong { color: var(--orange); font-weight: inherit; }
.closing a { text-decoration: none; font-size: 12px; font-weight: 900; letter-spacing: 1.3px; border-bottom: 2px solid var(--orange); padding-bottom: 4px; white-space: nowrap; }

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 26px 0 36px;
  border-top: 1px solid rgba(17,17,17,.35);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  font-size: 11px;
  color: var(--muted);
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: Impact, "Arial Narrow", sans-serif; color: var(--ink); letter-spacing: .4px; }
.footer-brand img { width: 35px; height: 35px; border-radius: 50%; }
.footer-brand em { color: var(--orange); font-style: normal; }
footer p { margin: 0; }
footer .domain { font-weight: 800; color: var(--ink); }

.reveal { opacity: 0; transform: translateY(15px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 850px) {
  .site-header { margin-top: 14px; width: min(calc(100% - 28px), var(--max)); }
  .brand-copy { font-size: 16px; }
  .brand-copy em { font-size: 20px; }
  .brand img { width: 46px; height: 46px; }
  .mini-cta { font-size: 11px; padding: 9px 11px; }
  .section-shell { width: min(calc(100% - 28px), var(--max)); }
  .hero { grid-template-columns: 1fr; gap: 30px; padding: 54px 0 65px; }
  .hero-art { order: -1; min-height: 390px; }
  .hero-logo-wrap { width: min(82vw, 360px); }
  .ring-one { width: 390px; height: 390px; }
  .ring-two { width: 310px; height: 310px; }
  h1 { font-size: clamp(62px, 18vw, 95px); }
  .hero-lead { font-size: 17px; }
  .manifesto { padding: 70px 0; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-grid article, .manifesto-grid article + article { padding: 25px 0; border-right: 0; border-bottom: 1px solid rgba(17,17,17,.16); min-height: auto; }
  .about { padding-bottom: 70px; }
  .about-card { grid-template-columns: 1fr; padding: 30px; gap: 24px; }
  .about-mark {
  width: 130px;
  height: 130px;
  padding: 10px;
}
  .closing { padding-bottom: 55px; }
  .closing-inner { grid-template-columns: auto 1fr; padding: 26px; }
  .closing a { grid-column: 1 / -1; justify-self: start; }
  footer { width: min(calc(100% - 28px), var(--max)); grid-template-columns: 1fr; gap: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .social-button { transition: none; }
}
