/* Freedom Compass Ventures — static site styles */

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #0b0c0d;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #cfd3d6;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

/* Keyframes */
@keyframes fcEnterRight {
  0% {
    opacity: 0;
    transform: translateX(52vw) scale(0.972);
  }
  16% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fcBezelIn {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fcLabelIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 0.72;
    transform: translateY(0);
  }
}

@keyframes fcFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fcFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fcRule {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes fcRing {
  from {
    stroke-dashoffset: 560;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fcNeedle {
  from {
    transform: rotate(225deg);
  }
  to {
    transform: rotate(45deg);
  }
}

@keyframes fcUp {
  from {
    opacity: 0.72;
  }
  to {
    opacity: 1;
  }
}

@keyframes fcDown {
  from {
    opacity: 0.72;
  }
  to {
    opacity: 0.58;
  }
}

@keyframes fcConnector {
  from {
    opacity: 0;
    transform: scaleX(0.2);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fcDrift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fcFloat {
  from {
    transform: translateY(-7px);
  }
  to {
    transform: translateY(7px);
  }
}

@keyframes fcSheen {
  0% {
    background-position: -140% 50%;
  }
  55%,
  100% {
    background-position: 240% 50%;
  }
}

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

  svg,
  g,
  circle,
  div,
  span,
  h1,
  h3,
  p,
  a,
  header,
  section,
  footer {
    animation: none !important;
    transition: none !important;
  }

  .fc-animate-hidden {
    opacity: 1 !important;
  }

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

  .fc-needle {
    transform: rotate(45deg) !important;
  }

  .fc-anim-up {
    opacity: 1 !important;
  }

  .fc-anim-down {
    opacity: 0.58 !important;
  }
}

/* Page shell */
.fc-page {
  background: #0b0c0d;
  color: #e9ebec;
  font-family: Archivo, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.fc-sprite {
  position: absolute;
  width: 0;
  height: 0;
}

/* Header */
.fc-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: 22px clamp(20px, 4.4vw, 64px) 24px;
  background: rgba(11, 12, 13, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: padding 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s ease;
}

.fc-header--dense {
  padding: 13px clamp(20px, 4.4vw, 64px) 15px;
  background: rgba(9, 10, 11, 0.93);
}

.fc-header__progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), #dfe3e6);
  pointer-events: none;
}

.fc-header__brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.fc-header__brand-text {
  line-height: 1.05;
}

.fc-header__brand-title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #eceef0;
}

.fc-header__brand-sub {
  display: block;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.46em;
  color: #7e848a;
  margin-top: 4px;
}

.fc-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px clamp(18px, 2.4vw, 38px);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #9ba1a6;
}

.fc-nav__link {
  color: #9ba1a6;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.fc-nav__link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.fc-nav__cta {
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #e9ebec;
  font-size: 11px;
  letter-spacing: 0.16em;
  white-space: nowrap;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.fc-nav__cta:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
  color: #e9ebec;
}

/* Hero */
.fc-hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 56px 48px;
  padding: clamp(72px, 9vw, 132px) clamp(20px, 4.4vw, 64px) clamp(52px, 5.6vw, 84px);
  background: radial-gradient(120% 90% at 78% 42%, #1b1d1f 0%, #101112 42%, #0a0b0c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

@media (min-width: 1200px) {
  .fc-hero {
    padding-left: clamp(52px, 5.8vw, 100px);
    padding-right: clamp(56px, 6.4vw, 112px);
  }

  .fc-hero-copy {
    flex: 1.55 1 560px;
    position: relative;
    left: clamp(14px, 1.5vw, 30px);
    margin-left: clamp(16px, 1.8vw, 40px);
  }

  .fc-hero-compass {
    flex: 1.15 1 560px;
    position: relative;
    left: calc(clamp(6px, 0.8vw, 16px) + clamp(48px, 3.33vw, 70px));
    margin-right: clamp(28px, 2.8vw, 56px);
    padding: 64px 0 0;
  }

  .fc-hero-compass__stage {
    transform: scale(1.12);
  }
}

@media (min-width: 1600px) {
  .fc-hero {
    padding-left: clamp(60px, 6.4vw, 112px);
    padding-right: clamp(60px, 6.6vw, 116px);
  }

  .fc-hero-copy {
    left: clamp(18px, 1.8vw, 36px);
  }

  .fc-hero-compass {
    left: calc(clamp(10px, 1.1vw, 22px) + clamp(55px, 3.65vw, 70px));
    margin-right: clamp(32px, 3vw, 60px);
  }

  .fc-hero-compass__stage {
    transform: scale(1.13);
  }
}

.fc-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 132px);
  pointer-events: none;
}

.fc-hero-copy {
  position: relative;
  flex: 1.7 1 600px;
  min-width: 0;
  max-width: 980px;
}

.fc-hero-copy__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.34em;
  color: #83898f;
  text-transform: uppercase;
  opacity: 0;
  animation: fcFadeIn 1s ease 0.2s forwards;
}

.fc-hero-copy__rule {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  display: block;
  transform-origin: left;
  animation: fcRule 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.45s backwards;
}

.fc-hero-copy__title {
  margin: clamp(24px, 3vw, 34px) 0 0;
  font-size: clamp(40px, 4.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #f3f5f6;
  text-wrap: pretty;
}

.fc-hero-copy__title-line {
  display: block;
  opacity: 0;
  animation: fcFadeUp 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fc-hero-copy__title-line--1 {
  animation-delay: 0.35s;
}

.fc-hero-copy__title-line--2 {
  animation-delay: 0.47s;
}

.fc-hero-copy__title-line--3 {
  animation-delay: 0.59s;
  color: #b6bcc1;
}

.fc-hero-copy__lede {
  margin: clamp(26px, 3vw, 36px) 0 0;
  max-width: 470px;
  font-size: clamp(15.5px, 1.2vw, 17px);
  line-height: 1.62;
  color: #9aa0a5;
  font-weight: 300;
  opacity: 0;
  animation: fcFadeUp 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  text-wrap: pretty;
}

.fc-hero-copy__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px clamp(20px, 2.4vw, 34px);
  margin-top: clamp(34px, 4vw, 46px);
  opacity: 0;
  animation: fcFadeUp 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.98s forwards;
}

.fc-hero-copy__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: #f2f4f5;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fc-hero-copy__cta:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.04));
  transform: translateY(-3px);
  color: #f2f4f5;
}

.fc-hero-copy__more {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: #9aa0a5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
  transition: color 0.35s ease, border-color 0.35s ease, gap 0.35s ease;
}

.fc-hero-copy__more:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  gap: 18px;
}

.fc-hero-copy__more-arrow {
  font-size: 14px;
}

.fc-hero-copy__accent {
  margin: clamp(34px, 4.4vw, 60px) 0 0 auto;
  width: clamp(110px, 15vw, 250px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(223, 227, 230, 0.3) 55%, rgba(255, 255, 255, 0));
  transform: rotate(-25deg);
  transform-origin: right center;
  opacity: 0;
  animation: fcFadeIn 1.8s ease 2.3s forwards;
  pointer-events: none;
}

/* Compass */
.fc-hero-compass {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 0 8px;
  flex: 1 1 540px;
  min-width: 0;
  margin-left: 0;
  opacity: 0;
  animation: fcEnterRight 1.85s cubic-bezier(0.21, 0.9, 0.24, 1) 0.3s forwards;
}

.fc-hero-compass__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(74px, 8vw, 96px);
  width: 100%;
  transform-origin: center center;
}

.fc-compass {
  position: relative;
  width: min(400px, 46vw);
  aspect-ratio: 1 / 1;
  animation: fcFloat 9s ease-in-out 3s infinite alternate;
}

.fc-compass__bezel {
  position: absolute;
  inset: -7%;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.5) 0deg 0.28deg, rgba(255, 255, 255, 0) 0.28deg 6deg);
  -webkit-mask-image: radial-gradient(circle, transparent 47.4%, #000 47.4%, #000 50%, transparent 50%);
  mask-image: radial-gradient(circle, transparent 47.4%, #000 47.4%, #000 50%, transparent 50%);
  opacity: 0;
  animation: fcBezelIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) 2.1s forwards, fcDrift 300s linear 2.1s infinite;
  pointer-events: none;
}

.fc-compass__ring-border {
  position: absolute;
  inset: -2.6%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.fc-compass__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.72));
  overflow: visible;
  display: block;
}

.fc-compass__outer-ring {
  animation: fcRing 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.55s backwards;
}

.fc-needle {
  transform-box: view-box;
  transform-origin: 100px 100px;
  animation: fcNeedle 2.7s cubic-bezier(0.42, 0, 0.22, 1) 3.9s both;
}

.fc-compass__labels {
  position: absolute;
  top: -62px;
  bottom: -62px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(46vw + 264px), 664px, calc(100vw - 44px));
  pointer-events: none;
  font-size: clamp(8.5px, 0.78vw, 10px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.fc-compass__label-pos {
  position: absolute;
}

.fc-compass__label-pos--n {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.fc-compass__label-pos--e {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  max-width: calc(min(calc(23vw + 132px), 332px, calc(50vw - 22px)) - min(23vw, 200px) - 8px);
}

.fc-compass__label-pos--s {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.fc-compass__label-pos--w {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: calc(min(calc(23vw + 132px), 332px, calc(50vw - 22px)) - min(23vw, 200px) - 8px);
}

.fc-compass__label {
  opacity: 0;
  animation: fcLabelIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fc-compass__label--n {
  animation-delay: 2.5s;
  animation-name: fcLabelIn, fcUp;
  animation-duration: 1s, 1.5s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1), cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both, forwards;
  animation-delay: 2.5s, 5.5s;
}

.fc-compass__label--e {
  animation-delay: 2.68s;
  animation-name: fcLabelIn, fcUp;
  animation-duration: 1s, 1.5s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1), cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both, forwards;
  animation-delay: 2.68s, 5.7s;
}

.fc-compass__label--s {
  animation-name: fcLabelIn, fcDown;
  animation-duration: 1s, 1.6s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1), cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both, forwards;
  animation-delay: 2.86s, 5.3s;
}

.fc-compass__label--w {
  animation-name: fcLabelIn, fcDown;
  animation-duration: 1s, 1.6s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1), cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both, forwards;
  animation-delay: 3.04s, 5.3s;
}

.fc-compass__label--n .fc-compass__label-dir,
.fc-compass__label--e .fc-compass__label-dir {
  color: #cfd4d8;
}

.fc-compass__label--s .fc-compass__label-dir,
.fc-compass__label--w .fc-compass__label-dir {
  color: #aeb4b9;
}

.fc-compass__label--n .fc-compass__label-text,
.fc-compass__label--e .fc-compass__label-text {
  color: #f0f2f4;
}

.fc-compass__label--s .fc-compass__label-text,
.fc-compass__label--w .fc-compass__label-text {
  color: #b9bfc4;
}

.fc-compass__label-dir {
  display: block;
  font-size: 13px;
  letter-spacing: 0.3em;
  margin-bottom: 9px;
}

.fc-anim-up {
  /* marker class for reduced-motion */
}

.fc-anim-down {
  /* marker class for reduced-motion */
}

.fc-compass__label--n,
.fc-compass__label--e {
  /* up highlight labels */
}

.fc-compass__label--s,
.fc-compass__label--w {
  /* down highlight labels */
}

.fc-hero-compass__wordmark {
  position: relative;
  text-align: center;
  width: 100%;
  opacity: 0;
  animation: fcFadeIn 1.6s ease 6.9s forwards;
}

.fc-hero-compass__title {
  font-size: clamp(19px, 2.35vw, 34px);
  letter-spacing: 0.3em;
  font-weight: 400;
  background: linear-gradient(100deg, #8f959a 0%, #ffffff 18%, #b6bcc1 34%, #8f959a 52%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fcSheen 12s ease-in-out 8.4s infinite;
}

.fc-hero-compass__subtitle {
  font-size: clamp(10px, 1.05vw, 14px);
  letter-spacing: 0.5em;
  color: #8d9398;
  margin-top: 15px;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].fc-reveal--delay {
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

[data-reveal].fc-reveal--slow {
  transition: opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1), transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].fc-reveal--slow-delay {
  transition: opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, transform 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}

[data-reveal].fc-reveal--approach {
  transition: opacity 1.15s cubic-bezier(0.16, 1, 0.3, 1), transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].fc-reveal--fade-only {
  transform: none;
  transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fc-who__traj {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(120px, 15vw, 240px);
  pointer-events: none;
}
.fc-who {
  position: relative;
  padding: clamp(66px, 6.8vw, 100px) clamp(20px, 4.4vw, 64px) clamp(68px, 8.5vw, 125px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.fc-who__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 4.2vw, 64px);
  max-width: 1360px;
  margin: 0 auto;
}

.fc-who__content--wide {
  grid-column: span 2;
  min-width: 0;
}

.fc-section-num {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #5e6368;
}

.fc-section-num--block {
  margin-bottom: 18px;
}

.fc-section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9aa0a5;
}

.fc-who__headline {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.34;
  letter-spacing: -0.02em;
  font-weight: 300;
  color: #e7e9eb;
  max-width: 900px;
  text-wrap: pretty;
}

.fc-who__body {
  margin: clamp(24px, 2.6vw, 34px) 0 0;
  max-width: 640px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #90969b;
  font-weight: 300;
}

/* Build */
.fc-build {
  padding: clamp(68px, 8.5vw, 125px) clamp(20px, 4.4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #0d0e0f, #0b0c0d);
}

.fc-build__inner {
  max-width: 1360px;
  margin: 0 auto;
}

.fc-section-heading {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 76px);
}

.fc-section-heading--work {
  margin-bottom: clamp(36px, 4.2vw, 64px);
}

.fc-product {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 20px clamp(28px, 4vw, 60px);
  padding: clamp(28px, 3vw, 40px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.fc-product__title-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: baseline;
}

.fc-product__num {
  font-size: 12px;
  color: #5e6368;
  letter-spacing: 0.2em;
}

.fc-product__title {
  margin: 0;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #eceef0;
  text-wrap: pretty;
}

.fc-product__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.68;
  color: #90969b;
  font-weight: 300;
}

.fc-build__footer-rule {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Approach */
.fc-approach {
  position: relative;
  padding: clamp(84px, 10.5vw, 155px) clamp(20px, 4.4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: radial-gradient(90% 70% at 50% 0%, #16181a, #0b0c0d 70%);
  overflow: hidden;
}

.fc-approach__bg-compass {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  animation: fcDrift 240s linear infinite;
}

.fc-approach__bg-compass svg {
  width: min(620px, 90vw);
  height: min(620px, 90vw);
}

.fc-approach__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.fc-approach__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9aa0a5;
}

.fc-approach__quote {
  margin: clamp(30px, 3.6vw, 46px) 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: #f1f3f4;
  text-wrap: pretty;
}

.fc-approach__body {
  margin: clamp(28px, 3.4vw, 42px) auto 0;
  max-width: 620px;
  font-size: 16.5px;
  line-height: 1.74;
  color: #90969b;
  font-weight: 300;
}

/* Work */
.fc-work {
  padding: clamp(68px, 8.5vw, 125px) clamp(20px, 4.4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.fc-work__inner {
  max-width: 1360px;
  margin: 0 auto;
}

.fc-work__register {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fc-work__grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .fc-work__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fc-initiative {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0 clamp(16px, 2vw, 28px);
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2.4vw, 32px);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.fc-initiative:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .fc-initiative {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    align-content: start;
  }

  .fc-initiative:last-child {
    border-right: none;
  }
}

.fc-initiative__index {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #5e6368;
  padding-top: 5px;
}

.fc-initiative__main {
  min-width: 0;
}

.fc-initiative__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(14px, 1.6vw, 18px);
}

.fc-initiative__status {
  flex-shrink: 0;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7e848a;
  white-space: nowrap;
}

.fc-initiative__title {
  margin: 0;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #eceef0;
  text-wrap: pretty;
}

.fc-initiative__body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.66;
  color: #90969b;
  font-weight: 300;
  max-width: 36ch;
}

/* Why */
.fc-why {
  position: relative;
  padding: clamp(78px, 9.5vw, 145px) clamp(20px, 4.4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #0b0c0d, #101112);
  overflow: hidden;
}

.fc-why__pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 148px);
  pointer-events: none;
}

.fc-why__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: end;
  max-width: 1360px;
  margin: 0 auto;
}

.fc-why__heading {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: clamp(26px, 3vw, 40px);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9aa0a5;
}

.fc-why__headline {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 400;
  color: #f1f3f4;
}

.fc-why__headline-muted {
  color: #8b9196;
}

.fc-why__body {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.74;
  color: #90969b;
  font-weight: 300;
}

/* Contact */
.fc-contact {
  padding: clamp(68px, 8.5vw, 125px) clamp(20px, 4.4vw, 64px) clamp(68px, 7vw, 100px);
}

.fc-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}

.fc-contact__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9aa0a5;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.fc-contact__title {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: #f1f3f4;
}

.fc-contact__lede {
  margin: 30px 0 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #90969b;
  font-weight: 300;
  max-width: 420px;
}

.fc-contact__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 30px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14.5px;
}

.fc-contact__row--last {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-contact__row-label {
  color: #7e848a;
  letter-spacing: 0.1em;
  font-size: 11px;
  text-transform: uppercase;
}

.fc-contact__row-value {
  color: #d6dade;
}

.fc-contact__link {
  color: #d6dade;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.fc-contact__link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* Footer */
.fc-footer {
  padding: 48px clamp(20px, 4.4vw, 64px) 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px 40px;
}

.fc-footer__copy {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #5e6368;
  text-transform: uppercase;
}

.fc-footer__credit {
  text-align: right;
  line-height: 1.7;
}

.fc-footer__credit-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #5e6368;
}

.fc-footer__credit-name {
  font-size: 12.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #b4babf;
  margin-top: 6px;
}

.fc-footer__credit-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7e848a;
  transition: color 0.35s ease;
}

.fc-footer__credit-link:hover {
  color: #ffffff;
}

/* Header logo needle (static) */
.fc-header__logo-needle {
  transform-box: view-box;
  transform-origin: 100px 100px;
  transform: rotate(45deg);
}

/* Responsive refinements — Audit 006 */

/* Medium desktop: keep approved side-by-side hero, prevent E/W label clip */
@media (min-width: 1200px) and (max-width: 1439px) {
  .fc-hero {
    flex-wrap: nowrap;
  }

  .fc-hero-copy {
    flex: 1 1 480px;
    max-width: min(560px, 48vw);
  }

  .fc-hero-compass {
    flex: 1 1 380px;
    min-width: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1919px) {
  .fc-compass__labels {
    width: min(600px, calc(100vw - 340px));
    font-size: clamp(7.5px, 0.58vw, 9px);
    letter-spacing: 0.2em;
  }

  .fc-compass__label-dir {
    font-size: 11px;
    margin-bottom: 7px;
  }

  .fc-compass__label-pos--e {
    right: clamp(6px, 1vw, 14px);
    max-width: min(148px, 20vw);
  }

  .fc-compass__label-pos--w {
    left: clamp(6px, 1vw, 14px);
    max-width: min(148px, 20vw);
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .fc-compass__labels {
    width: min(500px, calc(100vw - 420px));
  }

  .fc-compass__label-pos--e {
    right: 12px;
    max-width: min(118px, 16vw);
  }

  .fc-compass__label-pos--w {
    left: 12px;
    max-width: min(118px, 16vw);
  }
}

/* Tablet and below: reset desktop hero offsets, center stacked compass */
@media (max-width: 1199px) {
  .fc-hero-copy {
    flex: 1 1 100%;
    max-width: none;
  }

  .fc-hero-compass {
    flex: 1 1 100%;
    width: 100%;
    padding: 28px 0 8px;
  }

  .fc-hero-compass__stage {
    transform: none;
    width: min(100%, 400px);
    margin-inline: auto;
  }

  .fc-compass {
    width: min(360px, 78vw);
    margin-inline: auto;
  }

  .fc-hero {
    gap: clamp(36px, 6vw, 48px);
  }
}

@media (max-width: 1023px) {
  .fc-who__content--wide {
    grid-column: span 1;
  }

  .fc-initiative__header {
    flex-wrap: wrap;
  }
}

@media (max-width: 639px) {
  .fc-header {
    gap: 16px 12px;
  }

  .fc-nav {
    width: 100%;
    gap: 10px 12px;
    font-size: 10.5px;
    letter-spacing: 0.1em;
  }

  .fc-nav__cta {
    padding: 9px 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .fc-header__brand-title {
    font-size: 11.5px;
    letter-spacing: 0.24em;
  }

  .fc-header__brand-sub {
    font-size: 7.5px;
    letter-spacing: 0.38em;
  }

  .fc-contact__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .fc-contact__link {
    overflow-wrap: anywhere;
    max-width: 100%;
  }

  .fc-compass {
    width: min(320px, 84vw);
  }

  .fc-compass__labels {
    font-size: clamp(7px, 2.2vw, 9px);
    letter-spacing: 0.18em;
  }

  .fc-compass__label-dir {
    font-size: 11px;
    margin-bottom: 6px;
  }
}
