:root {
  color-scheme: light;
  --ink: #141313;
  --ink-soft: #47433f;
  --paper: #f7f5ef;
  --paper-strong: #fffdf7;
  --acid: #dfff48;
  --coral: #ff704d;
  --teal: #00b69a;
  --violet: #6f4dff;
  --line: rgba(20, 19, 19, 0.16);
  --shadow: 0 28px 80px rgba(20, 19, 19, 0.18);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#about,
#roles,
#method,
#contact {
  scroll-margin-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 19, 19, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(20, 19, 19, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  overflow-x: hidden;
}

body::selection {
  color: var(--ink);
  background: var(--acid);
}

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

button,
input,
textarea {
  font: inherit;
}

#grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 30;
  opacity: 0.08;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 19, 19, 0.12);
  border-radius: 8px;
  background: rgba(247, 245, 239, 0.72);
  box-shadow: 0 14px 50px rgba(20, 19, 19, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 247, 0.88);
  border-color: rgba(20, 19, 19, 0.2);
  box-shadow: 0 18px 60px rgba(20, 19, 19, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--paper-strong);
  background: var(--ink);
  font-size: 13px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: clamp(18px, 2vw, 22px);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a,
.site-footer a,
.contact-copy a {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 200ms ease;
}

.main-nav a:hover,
.site-footer a:hover,
.contact-copy a:hover {
  background-size: 100% 1px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--acid);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  box-shadow: inset 0 -2px 0 rgba(20, 19, 19, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 19, 19, 0.16);
}

main {
  isolation: isolate;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  min-height: 88svh;
  padding: clamp(88px, 12vh, 126px) clamp(18px, 5vw, 72px) 52px;
  overflow: hidden;
  color: var(--paper-strong);
  background:
    radial-gradient(circle at 76% 16%, rgba(223, 255, 72, 0.42), transparent 22%),
    radial-gradient(circle at 18% 88%, rgba(255, 112, 77, 0.32), transparent 28%),
    #151413;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(118deg, rgba(255, 253, 247, 0.12), transparent 31%),
    repeating-linear-gradient(130deg, rgba(255, 253, 247, 0.035) 0 1px, transparent 1px 14px);
}

#talent-map {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.hero-copy {
  max-width: 920px;
  animation: rise-in 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  max-width: 100%;
  min-height: 78px;
  margin-bottom: 20px;
  padding: 7px 18px 7px 7px;
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.09);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-brand img {
  display: block;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 253, 247, 0.34), 0 12px 34px rgba(0, 182, 154, 0.26);
}

.hero-brand span {
  color: rgba(255, 253, 247, 0.84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.dark-band h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(38px, 4.3vw, 82px);
  font-weight: 950;
  text-transform: uppercase;
}

.hero-text {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.8);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  color: var(--ink);
  background: var(--acid);
}

.button.secondary {
  color: var(--paper-strong);
  background: rgba(255, 253, 247, 0.12);
  border: 1px solid rgba(255, 253, 247, 0.26);
}

.hero-visual {
  position: relative;
  min-height: min(520px, 62svh);
}

.orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(16deg);
  animation: spin-orbit 18s linear infinite;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 34px rgba(223, 255, 72, 0.82);
}

.orbit::before {
  top: 12%;
  left: 24%;
}

.orbit::after {
  right: 16%;
  bottom: 22%;
  background: var(--coral);
  box-shadow: 0 0 34px rgba(255, 112, 77, 0.82);
}

.orbit-two {
  inset: 20%;
  border-color: rgba(0, 182, 154, 0.35);
  animation-duration: 24s;
  animation-direction: reverse;
}

.signal-card {
  position: absolute;
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.19), rgba(255, 253, 247, 0.06)),
    rgba(20, 19, 19, 0.48);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.main-signal {
  top: 31%;
  right: 7%;
  width: min(360px, 78vw);
  min-height: 208px;
  padding: 24px;
  transform: rotate(-4deg);
}

.signal-label {
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-signal strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
}

.main-signal small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 15px;
}

.signal-card.mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 54px;
  padding: 0 18px;
  font-weight: 900;
  animation: float-chip 4s ease-in-out infinite;
}

.signal-card.mini.one {
  top: 10%;
  left: 4%;
}

.signal-card.mini.two {
  right: 2%;
  bottom: 10%;
  animation-delay: -1.2s;
}

.signal-card.mini.three {
  left: 4%;
  bottom: 13%;
  animation-delay: -2.1s;
}

.pulse-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 rgba(0, 182, 154, 0.55);
  animation: pulse 2.6s ease-out infinite;
}

.dot-one {
  top: 22%;
  right: 42%;
}

.dot-two {
  left: 20%;
  top: 42%;
  animation-delay: -0.8s;
}

.dot-three {
  right: 20%;
  bottom: 31%;
  animation-delay: -1.6s;
}

.ticker-section {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper-strong);
}

.ticker {
  display: flex;
  min-width: max-content;
  gap: 14px;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

.split,
.method-layout,
.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.section h2,
.dark-band h2,
.contact-copy h2 {
  font-size: clamp(42px, 5.4vw, 82px);
  font-weight: 950;
  text-transform: uppercase;
}

.intro-copy p,
.section-heading p,
.method-copy p,
.contact-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
}

.intro-copy {
  display: grid;
  gap: 18px;
  padding-top: 6px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.metric,
.role-card,
.process li,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.74);
  box-shadow: 0 18px 60px rgba(20, 19, 19, 0.07);
}

.metric {
  min-height: 158px;
  padding: 22px;
  overflow: hidden;
}

.metric strong {
  display: block;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.metric span {
  display: block;
  max-width: 260px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-weight: 700;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.95fr 0.8fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.role-card {
  position: relative;
  min-height: 290px;
  padding: 22px;
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.role-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -26% auto;
  width: 180px;
  height: 180px;
  border: 32px solid rgba(111, 77, 255, 0.18);
  border-radius: 50%;
  transition: transform 260ms ease;
}

.role-card:nth-child(2n)::before {
  border-color: rgba(255, 112, 77, 0.22);
}

.role-card:nth-child(3n)::before {
  border-color: rgba(0, 182, 154, 0.24);
}

.role-card:hover {
  background: #fffdf7;
  border-color: rgba(20, 19, 19, 0.28);
}

.role-card:hover::before {
  transform: scale(1.18) rotate(18deg);
}

.role-card span,
.process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--paper-strong);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.role-card h3 {
  position: relative;
  max-width: 290px;
  margin: 74px 0 14px;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.04;
}

.role-card p {
  position: relative;
  max-width: 310px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.48;
}

.dark-band {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 128px) clamp(18px, 5vw, 72px);
  color: var(--paper-strong);
  background:
    radial-gradient(circle at 18% 22%, rgba(223, 255, 72, 0.2), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(255, 112, 77, 0.22), transparent 28%),
    linear-gradient(135deg, #121110, #211d1a 64%, #141313);
}

.dark-band::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 253, 247, 0.11) 0 1px, transparent 1px 12px);
  transform: rotate(8deg);
  animation: band-drift 16s linear infinite;
}

.dark-band > * {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-kicker.inverted {
  color: var(--acid);
}

.open-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.open-role {
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.open-role:hover {
  transform: translateY(-4px);
  background: rgba(223, 255, 72, 0.12);
  border-color: rgba(223, 255, 72, 0.42);
}

.open-role strong {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.05;
}

.open-role span {
  color: rgba(255, 253, 247, 0.68);
}

.process {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: auto 0.42fr 1fr;
  gap: 18px;
  align-items: start;
  min-height: 124px;
  padding: 20px;
}

.process strong {
  font-size: 22px;
  line-height: 1.12;
}

.process p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.contact-section {
  padding-top: 0;
}

.contact-panel {
  padding: clamp(20px, 4vw, 38px);
  background:
    radial-gradient(circle at 4% 12%, rgba(0, 182, 154, 0.18), transparent 28%),
    radial-gradient(circle at 94% 94%, rgba(223, 255, 72, 0.2), transparent 28%),
    #fffdf7;
}

.contact-copy p {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(20, 19, 19, 0.18);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(247, 245, 239, 0.88);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(20, 19, 19, 0.68);
  background: #fffdf7;
  box-shadow: 0 0 0 4px rgba(223, 255, 72, 0.38);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  font-size: 22px;
  text-transform: uppercase;
}

.site-footer span {
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin-orbit {
  to {
    transform: rotateX(66deg) rotateZ(376deg);
  }
}

@keyframes float-chip {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-16px) rotate(-3deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 182, 154, 0.5);
  }
  76% {
    box-shadow: 0 0 0 22px rgba(0, 182, 154, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 182, 154, 0);
  }
}

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

@keyframes band-drift {
  to {
    transform: rotate(8deg) translate3d(-80px, 48px, 0);
  }
}

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

  .main-nav {
    display: none;
  }

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

  .hero-visual {
    min-height: 390px;
  }

  .main-signal {
    right: 50%;
    width: min(360px, 92vw);
    transform: translateX(50%) rotate(-3deg);
  }

  .split,
  .method-layout,
  .contact-panel,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .metrics,
  .role-grid,
  .open-roles {
    grid-template-columns: 1fr 1fr;
  }

  .process li {
    grid-template-columns: auto 1fr;
  }

  .process p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-brand {
    min-height: 66px;
    margin-bottom: 16px;
    padding: 6px 12px 6px 6px;
  }

  .hero-brand img {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .hero-brand span {
    font-size: 11px;
  }

  .brand-name {
    font-size: 17px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero {
    padding: 100px 16px 20px;
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 58px);
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .hero-visual {
    min-height: 190px;
    margin-top: 8px;
  }

  .main-signal {
    top: 18%;
    width: min(300px, 88vw);
    min-height: 154px;
    padding: 18px;
  }

  .main-signal strong {
    font-size: 34px;
  }

  .main-signal small {
    margin-top: 10px;
    font-size: 13px;
  }

  .signal-card.mini {
    min-width: 124px;
    min-height: 48px;
    font-size: 13px;
  }

  .signal-card.mini.one {
    top: 0;
    left: 4%;
  }

  .signal-card.mini.two {
    right: 0;
    bottom: 0;
  }

  .signal-card.mini.three {
    display: none;
  }

  .metrics,
  .role-grid,
  .open-roles,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding-block: 70px;
  }

  .section h2,
  .dark-band h2,
  .contact-copy h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .role-card {
    min-height: 250px;
  }

  .role-card h3 {
    margin-top: 56px;
  }

  .process li {
    grid-template-columns: 1fr;
  }

  .process p {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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