:root {
  --paper: #f0efe8;
  --ink: #151713;
  --muted: #66695f;
  --line: rgba(21, 23, 19, 0.2);
  --acid: #c8ff35;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(21, 23, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 19, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 10;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  content: "";
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 5rem, 1440px);
  margin: 0 auto;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font: 400 2rem/1 var(--serif);
  text-decoration: none;
  letter-spacing: -0.04em;
}

.wordmark span {
  color: #789e13;
}

.header-cta {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: #789e13;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: 2rem;
  width: min(100% - 5rem, 1440px);
  min-height: calc(100svh - 97px);
  margin: 0 auto;
  padding: 5rem 0 6rem;
}

.eyebrow,
.section-number {
  margin: 0 0 2.25rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  margin-right: 0.8rem;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

h1 {
  max-width: 800px;
  margin: 0;
  font: 400 clamp(4.8rem, 8.6vw, 9rem)/0.78 var(--serif);
  letter-spacing: -0.065em;
}

h1 span {
  display: block;
  margin: 0.13em 0 0 0.45em;
  font-style: italic;
}

.hero-intro {
  max-width: 32rem;
  margin: 3.5rem 0 2.25rem 23%;
  color: #363a32;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.7;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-width: 16.5rem;
  margin-left: 23%;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--acid);
  font: 600 0.72rem/1 var(--sans);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-3px);
}

.arrow {
  font-size: 1.2rem;
  font-weight: 400;
}

.hero-visual {
  position: relative;
  width: min(100%, 590px);
  aspect-ratio: 1;
  margin-left: auto;
}

.orbit {
  position: absolute;
  inset: 10%;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  position: absolute;
  content: "";
  background: var(--line);
}

.orbit::before {
  top: 50%;
  left: -12.5%;
  width: 125%;
  height: 1px;
}

.orbit::after {
  top: -12.5%;
  left: 50%;
  width: 1px;
  height: 125%;
}

.orbit-inner {
  inset: 26%;
  border-style: dashed;
  animation: spin 30s linear infinite;
}

.orbit-label {
  position: absolute;
  z-index: 1;
  padding: 0.25rem 0.45rem;
  color: var(--muted);
  background: var(--paper);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
}

.label-top {
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
}

.label-right {
  top: 50%;
  right: -1.5rem;
  transform: rotate(90deg);
}

.label-bottom {
  bottom: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
}

.visual-core {
  position: absolute;
  z-index: 2;
  inset: 35%;
  display: grid;
  place-content: center;
  border: 1px solid var(--ink);
  background: var(--acid);
  text-align: center;
  transform: rotate(-7deg);
  transition: transform 300ms ease;
}

.hero-visual:hover .visual-core {
  transform: rotate(0deg) scale(1.03);
}

.visual-core span {
  font: 400 4.8rem/0.8 var(--serif);
  letter-spacing: -0.07em;
}

.visual-core small {
  margin-top: 0.7rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.signal {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 8px var(--acid);
}

.signal-one {
  top: 19%;
  left: 21%;
  animation: pulse 2.3s ease-in-out infinite;
}

.signal-two {
  right: 13%;
  bottom: 28%;
  animation: pulse 2.3s 1.15s ease-in-out infinite;
}

.statement {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  width: 100%;
  padding: 8rem max(2.5rem, calc((100vw - 1440px) / 2));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.statement .section-number {
  color: #a8aa9f;
}

.statement-copy {
  max-width: 980px;
  margin: 0;
  font: 400 clamp(2.5rem, 5vw, 5.4rem)/1.02 var(--serif);
  letter-spacing: -0.035em;
}

.statement-copy em {
  color: var(--acid);
  font-weight: 400;
}

.path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  width: min(100% - 5rem, 1440px);
  margin: 0 auto;
  padding: 9rem 0;
}

.path h2,
.consultation h2 {
  margin: 0;
  font: 400 clamp(3.2rem, 5.6vw, 6rem)/0.92 var(--serif);
  letter-spacing: -0.05em;
}

.path-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}

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

.step-number {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.path-list h3 {
  margin: -0.3rem 0 0.8rem;
  font: 400 1.85rem/1 var(--serif);
}

.path-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.consultation {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: 8rem max(2.5rem, calc((100vw - 1440px) / 2));
  background: var(--acid);
}

.consultation h2 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  font-size: clamp(4rem, 7.8vw, 8rem);
}

.consultation h2 em {
  font-weight: 400;
}

.consultation .primary-cta {
  position: relative;
  z-index: 1;
  margin: 3.5rem 0 0;
  background: var(--paper);
}

.consultation .primary-cta:hover,
.consultation .primary-cta:focus-visible {
  background: var(--ink);
}

.consultation-marker {
  position: absolute;
  right: -0.06em;
  bottom: -0.25em;
  color: rgba(21, 23, 19, 0.08);
  font: 400 clamp(30rem, 62vw, 62rem)/0.7 var(--serif);
  pointer-events: none;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  padding: 3rem max(2.5rem, calc((100vw - 1440px) / 2));
  color: var(--paper);
  background: var(--ink);
}

footer p {
  margin: 0;
  color: #a8aa9f;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-email {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #a8aa9f;
  color: #a8aa9f;
  font-size: 0.65rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-email:hover,
.footer-email:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
}

footer p:last-child {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 700ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero h1 {
  animation-delay: 100ms;
}

.hero-intro {
  animation-delay: 200ms;
}

.hero .primary-cta {
  animation-delay: 300ms;
}

.hero-visual {
  animation-delay: 220ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  50% {
    transform: scale(1.35);
    box-shadow: 0 0 0 13px rgba(200, 255, 53, 0.55);
  }
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .path {
    width: min(100% - 2.5rem, 720px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 5rem 0;
  }

  .hero-visual {
    width: min(100%, 540px);
    margin: 2rem auto 0;
  }

  .statement,
  .path {
    grid-template-columns: 1fr;
  }

  .statement {
    gap: 1rem;
  }

  .path {
    gap: 5rem;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 1.35rem 0;
  }

  .header-cta {
    font-size: 0.63rem;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  h1 span {
    margin-left: 0.18em;
  }

  .hero-intro,
  .primary-cta {
    margin-left: 0;
  }

  .hero-intro {
    margin-top: 2.5rem;
  }

  .hero-visual {
    margin-top: 3rem;
  }

  .visual-core span {
    font-size: 3.2rem;
  }

  .statement,
  .consultation {
    padding: 6rem 1.25rem;
  }

  .path {
    padding: 6rem 0;
  }

  .consultation {
    min-height: 580px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem 1.25rem;
  }

  .footer-email {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 1rem;
  }

  footer p:last-child {
    grid-row: 1;
    grid-column: 2;
  }

}

@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;
  }
}
