:root {
  --ink: #10100f;
  --paper: #f3f0e9;
  --acid: #ccff5a;
  --blue: #6874ff;
  --coral: #fa765b;
  --line: rgba(16, 16, 15, 0.22);
  --sans: "Space Grotesk", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--acid);
  transform: translateY(-200%);
}

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

.site-shell { overflow: clip; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.07em;
}

.brand strong {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: -0.1em;
}

.site-nav { display: flex; gap: 1.7rem; font-size: 0.9rem; }

.site-nav a,
.text-link,
.contact-link { position: relative; }

.site-nav a::after,
.text-link::after {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.site-nav a:hover::after,
.text-link:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-button { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  padding: 8.5rem 2rem 1.7rem;
  background:
    radial-gradient(circle at 91% 91%, rgba(204, 255, 90, 0.8) 0 4rem, transparent 4.1rem),
    linear-gradient(135deg, #f7f4ee, #e7e6dc);
}

.hero::before {
  position: absolute;
  right: -13vw;
  bottom: -23vw;
  width: min(64vw, 54rem);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 48% 52% 51% 49% / 47% 43% 57% 53%;
  content: "";
  opacity: 0.9;
}

.hero::after {
  position: absolute;
  right: 7vw;
  bottom: 11vw;
  width: min(43vw, 36rem);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  opacity: 0.9;
}

.hero-intro,
.hero-lower,
.hero-caption { position: relative; z-index: 2; }

.eyebrow,
.section-kicker,
.case-copy p,
.problem-type,
.problem-number,
.contact-index,
.hero-caption,
.site-footer { font-family: var(--mono); font-size: 0.69rem; letter-spacing: 0.01em; }

.eyebrow { margin: 0 0 1.5rem; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4.3rem, 12.5vw, 12.6rem);
  font-weight: 500;
  letter-spacing: -0.095em;
  line-height: 0.78;
}

h1 em { font-style: normal; color: var(--blue); }

.hero-lower {
  display: grid;
  max-width: 50rem;
  grid-template-columns: minmax(16rem, 1fr) auto;
  gap: 3rem;
  align-items: end;
  margin-top: 4rem;
}

.hero-copy { margin: 0; font-size: clamp(1.1rem, 1.7vw, 1.45rem); line-height: 1.25; }

.text-link { display: inline-flex; gap: 0.7rem; align-items: center; width: max-content; font-size: 0.85rem; font-weight: 600; }
.text-link span { display: inline-grid; width: 1.9rem; height: 1.9rem; place-items: center; border-radius: 50%; background: var(--ink); color: var(--paper); font-size: 1rem; }

.outcome-orbit {
  position: absolute;
  z-index: 1;
  right: 13vw;
  bottom: 17vw;
  display: grid;
  width: min(24vw, 20rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: drift 10s ease-in-out infinite alternate;
}

.outcome-orbit::before,
.outcome-orbit::after { position: absolute; border: 1px solid var(--ink); border-radius: 50%; content: ""; }
.outcome-orbit::before { width: 70%; height: 70%; }
.outcome-orbit::after { width: 35%; height: 35%; background: var(--acid); }
.orbit-core { position: relative; z-index: 1; font-family: var(--mono); font-size: clamp(1rem, 2.4vw, 2rem); }
.orbit-label { position: absolute; z-index: 1; font-family: var(--mono); font-size: 0.64rem; }
.orbit-label--one { top: -0.6rem; left: 14%; }
.orbit-label--two { right: -1.6rem; bottom: 23%; }
.orbit-label--three { bottom: -0.6rem; left: 23%; }

.hero-caption { display: flex; justify-content: space-between; margin-top: 4rem; }

.section-pad { padding: clamp(5rem, 10vw, 10rem) 2rem; }
.section-kicker { margin: 0; text-transform: uppercase; }

.statement { background: var(--ink); color: var(--paper); }
.statement-grid { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(15rem, 0.7fr); gap: 6vw; margin-top: 2.5rem; }

h2 { margin-bottom: 0; font-size: clamp(2.9rem, 7.4vw, 7.8rem); font-weight: 500; letter-spacing: -0.09em; line-height: 0.87; }
.statement-copy { align-self: end; font-size: 1rem; line-height: 1.4; }
.statement-copy p:last-child { margin-bottom: 0; color: var(--acid); }

.problem-field { background: var(--paper); }
.problem-field__top { display: grid; grid-template-columns: 1fr minmax(18rem, 0.82fr); gap: 2rem; border-bottom: 1px solid var(--line); }
.problem-field__lead { max-width: 25rem; margin: 0; font-size: 1.4rem; line-height: 1.2; }

.problem-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.problem-card { position: relative; min-height: 35rem; padding: 1.5rem 1.6rem; color: var(--ink); overflow: hidden; }
.problem-card + .problem-card { border-left: 1px solid var(--ink); }
.problem-card--lime { background: var(--acid); }
.problem-card--blue { background: var(--blue); }
.problem-card--coral { background: var(--coral); }
.problem-card::after { position: absolute; right: -6rem; bottom: -6rem; width: 19rem; height: 19rem; border: 1px solid var(--ink); border-radius: 50%; content: ""; }
.problem-number { display: block; }
.problem-type { margin: 7rem 0 1rem; text-transform: uppercase; }
.problem-card h3 { max-width: 11ch; margin-bottom: 2.3rem; font-size: clamp(1.8rem, 3vw, 3.4rem); font-weight: 500; letter-spacing: -0.07em; line-height: 0.93; }
.problem-detail { position: relative; z-index: 1; max-width: 22rem; margin: 0; font-size: 0.96rem; line-height: 1.35; }

.approach { display: grid; grid-template-columns: minmax(18rem, 1.15fr) minmax(20rem, 1fr); gap: 7vw; background: #ebe7dd; }
.approach-heading h2 { margin-top: 2.4rem; }
.approach-list { display: flex; flex-direction: column; align-self: end; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.approach-list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.5rem 0 1.7rem; border-bottom: 1px solid var(--ink); }
.approach-list span { font-family: var(--mono); font-size: 0.7rem; }
.approach-list h3 { margin: 0 0 0.75rem; font-size: clamp(1.35rem, 2.3vw, 2rem); font-weight: 500; letter-spacing: -0.06em; }
.approach-list p { max-width: 25rem; margin: 0; font-size: 0.93rem; line-height: 1.4; }

.work { background: var(--ink); color: var(--paper); }
.work-heading { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(243, 240, 233, 0.5); }
.case { min-height: 37rem; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; overflow: hidden; }
.case + .case { border-left: 1px solid rgba(243, 240, 233, 0.5); }
.case-visual { position: relative; min-height: 20rem; overflow: hidden; }
.case-copy { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: end; }
.case-copy p { grid-column: 1 / -1; margin: 0; color: var(--acid); text-transform: uppercase; }
.case-copy h3 { max-width: 10ch; margin: 0; font-size: clamp(1.7rem, 2.5vw, 2.8rem); font-weight: 500; letter-spacing: -0.075em; line-height: 0.92; }
.case-arrow { display: grid; width: 2.6rem; height: 2.6rem; place-items: center; border: 1px solid var(--paper); border-radius: 50%; font-size: 1.2rem; transition: transform 240ms ease, background 240ms ease, color 240ms ease; }
.case:hover .case-arrow { background: var(--acid); color: var(--ink); transform: rotate(45deg); }

.case-visual--district { background: var(--acid); }
.chat-dot { position: absolute; width: 1.15rem; height: 1.15rem; border-radius: 50%; background: var(--ink); }
.chat-dot--one { top: 25%; left: 20%; }.chat-dot--two { top: 46%; right: 17%; }.chat-dot--three { bottom: 17%; left: 42%; }
.chat-line { position: absolute; height: 1px; background: var(--ink); transform-origin: left; }
.chat-line--one { top: 30%; left: 24%; width: 57%; transform: rotate(18deg); }.chat-line--two { top: 51%; left: 47%; width: 38%; transform: rotate(-35deg); }.chat-line--three { top: 54%; left: 23%; width: 24%; transform: rotate(55deg); }

.case-visual--broker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; padding: 0.7rem; background: var(--blue); color: var(--ink); }
.case-visual--broker span { display: grid; min-height: 6.5rem; place-items: center; border: 1px solid var(--ink); font-family: var(--mono); font-size: 0.75rem; }
.case-visual--broker i { position: absolute; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--acid); }
.case-visual--broker i:nth-of-type(1) { top: 20%; left: 46%; }.case-visual--broker i:nth-of-type(2) { top: 48%; left: 25%; }.case-visual--broker i:nth-of-type(3) { top: 68%; right: 22%; }

.case-visual--venue { display: grid; place-items: center; background: var(--coral); color: var(--ink); }
.venue-time { position: relative; z-index: 1; font-family: var(--mono); font-size: clamp(2.2rem, 5vw, 4.7rem); letter-spacing: -0.1em; }
.venue-ripple { position: absolute; border: 1px solid var(--ink); border-radius: 50%; }.venue-ripple--one { width: 21%; aspect-ratio: 1; }.venue-ripple--two { width: 48%; aspect-ratio: 1; }.venue-ripple--three { width: 83%; aspect-ratio: 1; }
.venue-center { position: absolute; width: 0.8rem; aspect-ratio: 1; border-radius: 50%; background: var(--ink); }

.principle { background: var(--paper); }
.principle-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(15rem, 0.5fr); gap: 2rem; align-items: end; margin-top: 2.5rem; }
.principle-mark { position: relative; display: grid; width: min(100%, 20rem); aspect-ratio: 1; place-items: center; justify-self: end; border-radius: 45% 55% 62% 38% / 45% 35% 65% 55%; background: var(--acid); transform: rotate(-12deg); }
.principle-mark span { position: relative; z-index: 1; font-family: var(--mono); font-size: clamp(3.5rem, 8vw, 8rem); letter-spacing: -0.2em; }.principle-mark i { position: absolute; display: block; width: 1px; height: 145%; background: var(--ink); }.principle-mark i:nth-of-type(1) { transform: rotate(45deg); }.principle-mark i:nth-of-type(2) { transform: rotate(90deg); }.principle-mark i:nth-of-type(3) { transform: rotate(135deg); }.principle-mark i:nth-of-type(4) { transform: rotate(0deg); }

.contact { color: var(--paper); background: var(--blue); }
.contact-top { display: flex; justify-content: space-between; }
.contact h2 { max-width: 12ch; margin: clamp(5rem, 12vw, 10rem) 0 4rem; }
.contact-link { display: inline-flex; align-items: center; gap: 1rem; font-size: clamp(1.25rem, 2vw, 2rem); font-weight: 500; letter-spacing: -0.04em; }
.contact-link span { display: grid; width: 2.1rem; height: 2.1rem; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 1.15rem; transition: transform 240ms ease, background 240ms ease, color 240ms ease; }.contact-link:hover span { transform: translate(0.25rem, -0.25rem); background: var(--paper); color: var(--blue); }
.contact-note { margin: 5rem 0 0; font-size: 0.95rem; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: end; padding: 1.5rem 2rem; background: var(--ink); color: var(--paper); }.site-footer p { margin: 0; }.brand--footer strong { background: var(--acid); color: var(--ink); }

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.65,.2,1); }.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes drift { from { transform: rotate(-4deg) translateY(0); } to { transform: rotate(6deg) translateY(-0.8rem); } }

@media (max-width: 800px) {
  .site-header { padding: 1.1rem; }.site-nav { position: absolute; top: 4.2rem; right: 1rem; display: none; min-width: 12rem; padding: 1rem; flex-direction: column; gap: 1rem; background: var(--ink); color: var(--paper); }.site-nav.is-open { display: flex; }.menu-button { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0; border: 0; background: transparent; font-size: 0.83rem; }.menu-button i { display: block; width: 1.3rem; height: 1px; background: currentColor; box-shadow: 0 0.35rem 0 currentColor; }
  .hero { min-height: 54rem; padding: 7.4rem 1.1rem 1rem; }.hero::before, .hero::after { display: none; }.hero-lower { grid-template-columns: 1fr; gap: 1.6rem; padding-bottom: 10rem; }.outcome-orbit { right: 2.6rem; bottom: 3.9rem; width: 8.7rem; }.orbit-label { display: none; }.hero-caption { margin-top: 0; }.section-pad { padding: 4.5rem 1.1rem; }
  .statement-grid, .approach, .principle-layout, .work-heading, .problem-field__top { grid-template-columns: 1fr; gap: 2.5rem; }.statement-copy { max-width: 31rem; }.problem-list, .case-grid { grid-template-columns: 1fr; }.problem-card { min-height: 28rem; }.problem-card + .problem-card, .case + .case { border-top: 1px solid var(--ink); border-left: 0; }.case + .case { border-color: rgba(243, 240, 233, 0.5); }.case { min-height: 33rem; }.case-visual { min-height: 17rem; }.principle-mark { justify-self: start; width: 12rem; }.site-footer { grid-template-columns: 1fr; gap: 1rem; padding: 1.3rem 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
