/* ============================================================
   CONCORD — core design system
   "Precision instrument" : cool silver plate + hot ember signal
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Geist+Mono:wght@400;500&family=Geist:wght@300;400;500;600&display=swap");

/* ---------- tokens ---------- */
:root {
  /* plate */
  --sil-0: #fbfcfc;
  --sil-1: #f0f3f4;
  --sil-2: #e3e8ea;
  --sil-3: #cfd7da;
  --sil-4: #b3bec3;

  /* ink */
  --ink: #0b0f12;
  --ink-2: #2c353b;
  --ink-3: #56626a;
  --steel: #7d8891;

  /* signal — lamplight gold: the desk lamp that never goes off */
  --ember: #e0912a;
  --ember-2: #f7bb5c;
  --ember-ink: #6b4407;
  --ok: #12784e;
  --warn: #b8860b;
  --cool: #2f6f8f;

  /* market semantics */
  --up: #12784e;
  --up-soft: rgba(18, 120, 78, 0.12);
  --down: #d0402c;
  --down-soft: rgba(208, 64, 44, 0.12);
  --flat: #7d8891;

  /* surfaces that flip at dusk */
  --panel: rgba(255, 255, 255, 0.72);
  --panel-2: #ffffff;
  --panel-line: rgba(11, 15, 18, 0.1);

  /* lines */
  --hair: rgba(11, 15, 18, 0.1);
  --hair-2: rgba(11, 15, 18, 0.18);
  --hair-3: rgba(11, 15, 18, 0.06);

  /* type */
  --display: "Bricolage Grotesque", "Helvetica Neue", sans-serif;
  --sans: "Geist", "Helvetica Neue", Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* motion */
  --ease: cubic-bezier(0.22, 0.68, 0.24, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.32, 0.44, 1);

  /* metrics */
  --gut: clamp(18px, 4vw, 56px);
  --maxw: 1280px;
  --nav-h: 64px;
  --r: 14px;
  --r-lg: 22px;
}

/* ---------- after hours: the page follows the session ---------- */
body.night {
  --sil-0: #0d1219;
  --sil-1: #0a0e14;
  --sil-2: #131a24;
  --sil-3: #1e2733;
  --sil-4: #2c3846;

  --ink: #eef3f8;
  --ink-2: #b3c0cd;
  --ink-3: #8492a1;
  --steel: #66727f;

  --ember: #f5a524;
  --ember-2: #ffc65c;
  --ember-ink: #ffd68a;
  --up: #2bd68c;
  --up-soft: rgba(43, 214, 140, 0.14);
  --down: #ff5b45;
  --down-soft: rgba(255, 91, 69, 0.14);

  --hair: rgba(230, 240, 250, 0.12);
  --hair-2: rgba(230, 240, 250, 0.2);
  --hair-3: rgba(230, 240, 250, 0.07);

  --panel: rgba(19, 26, 36, 0.72);
  --panel-2: #131a24;
  --panel-line: rgba(230, 240, 250, 0.1);
}
body {
  transition: background-color 1.1s var(--ease), color 1.1s var(--ease);
}
body.night .plate {
  background:
    radial-gradient(120% 80% at 50% -10%, #16202c 0%, #0b1018 45%, #06090d 100%),
    #06090d;
}
body.night .plate::before {
  background: conic-gradient(
    from 210deg at 60% 30%,
    rgba(245, 165, 36, 0.12),
    rgba(0, 0, 0, 0) 25%,
    rgba(80, 130, 190, 0.16) 45%,
    rgba(0, 0, 0, 0) 70%,
    rgba(245, 165, 36, 0.08)
  );
  opacity: 0.9;
}
body.night .grain {
  mix-blend-mode: overlay;
  opacity: 0.22;
}
body.night .nav-inner {
  border-color: rgba(230, 240, 250, 0.12);
  background: rgba(16, 22, 31, 0.76);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 14px 40px -20px rgba(0, 0, 0, 0.9);
}
body.night .card {
  background: linear-gradient(170deg, rgba(24, 32, 43, 0.92), rgba(16, 22, 30, 0.7));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 24px 50px -38px rgba(0, 0, 0, 0.9);
}
body.night .btn {
  --bg: #f5f7fa;
  --fg: #0a0e14;
}
body.night .btn.ghost {
  --bg: transparent;
  --fg: var(--ink);
}
body.night .mobile-menu {
  background: rgba(10, 14, 20, 0.97);
}
body.night ::selection {
  background: var(--ember);
  color: #0a0e14;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--sil-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg,
canvas {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
h1,
h2,
h3,
h4,
p,
figure,
ul,
ol {
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
::selection {
  background: var(--ember);
  color: #fff;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
::-webkit-scrollbar-track {
  background: var(--sil-2);
}
::-webkit-scrollbar-thumb {
  background: var(--sil-4);
  border: 3px solid var(--sil-2);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ink-3);
}

/* ---------- plate background ---------- */
.plate {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 50% -10%, #ffffff 0%, var(--sil-1) 42%, var(--sil-2) 100%),
    var(--sil-1);
}
.plate::before {
  /* brushed sweep */
  content: "";
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 210deg at 60% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 25%, rgba(120, 140, 150, 0.14) 45%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.7));
  filter: blur(40px);
  opacity: 0.85;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.34;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}
.gridlines {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--hair-3) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  mask-image: linear-gradient(to bottom, #000 0, #000 70%, transparent 100%);
  opacity: 0.9;
}

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
section {
  position: relative;
}
.sec {
  padding-block: clamp(72px, 11vw, 156px);
}
.rule {
  height: 1px;
  background: var(--hair);
  position: relative;
}
.rule::after {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--ember);
}

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ember);
}
.h-xl {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 10.5vw, 156px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.h-lg {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.038em;
  text-wrap: balance;
}
.h-md {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.028em;
}
.h-sm {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.lede {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 60ch;
}
.muted {
  color: var(--ink-3);
}
.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hot {
  color: var(--ember);
}

/* ---------- (the black announcement bar was removed — CA and X live in the header) ---------- */

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  width: min(calc(100% - 28px), var(--maxw));
  transition: top 0.45s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--nav-h);
  padding: 0 10px 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(250, 252, 252, 0.72);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 34px -18px rgba(11, 15, 18, 0.4),
    0 1px 2px rgba(11, 15, 18, 0.06);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.stuck .nav-inner {
  background: rgba(250, 252, 252, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 44px -20px rgba(11, 15, 18, 0.5);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 18px;
  padding-right: 6px;
}
.brand svg,
.brand img {
  width: 26px;
  height: 26px;
  flex: none;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(11, 15, 18, 0.05);
}
.nav-links a.on {
  color: var(--ink);
}
.nav-links a.on::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 1.5px;
  background: var(--ember);
}
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 15px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s var(--ease);
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 15px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.nav-burger span::before {
  top: -5px;
}
.nav-burger span::after {
  top: 5px;
}
body.menu-open .nav-burger span {
  background: transparent;
}
body.menu-open .nav-burger span::before {
  transform: translateY(5px) rotate(45deg);
}
body.menu-open .nav-burger span::after {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 880;
  background: rgba(240, 243, 244, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 var(--gut);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 8px 0;
  border-bottom: 1px solid var(--hair);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
body.menu-open .mobile-menu a {
  transform: none;
  opacity: 1;
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--bg);
  color: var(--fg);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
  box-shadow: 0 8px 22px -14px rgba(11, 15, 18, 0.8);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, var(--ember), var(--ember-2));
  transform: translateY(101%);
  transition: transform 0.42s var(--ease-out);
}
.btn:hover::before {
  transform: translateY(0);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(240, 78, 35, 0.75);
}
.btn:active {
  transform: translateY(0);
}
.btn .arw {
  width: 15px;
  height: 15px;
  transition: transform 0.35s var(--ease-out);
}
.btn:hover .arw {
  transform: translateX(4px);
}
.btn.ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--hair-2);
  box-shadow: none;
}
.btn.ghost:hover {
  --fg: #fff;
  border-color: transparent;
}
.btn.sm {
  height: 38px;
  padding: 0 15px;
  font-size: 13.5px;
}
.link-u {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--hair-2);
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-u:hover {
  color: var(--ember);
  border-color: var(--ember);
}

/* ---------- cards ---------- */
.card {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--hair);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.55));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 44px -34px rgba(11, 15, 18, 0.55);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
}
.card::after {
  /* cursor spotlight */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(240, 78, 35, 0.11), transparent 62%);
}
.card:hover::after {
  opacity: 1;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--hair-2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 34px 60px -40px rgba(11, 15, 18, 0.6);
}
.card-pad {
  padding: clamp(20px, 2.4vw, 30px);
}

/* ---------- reveal ---------- */
[data-rv] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-rv].in {
  opacity: 1;
  transform: none;
}
[data-rv="fade"] {
  transform: none;
}
[data-rv="left"] {
  transform: translateX(-26px);
}
[data-rv="scale"] {
  transform: scale(0.965);
}

/* char-split hero */
.split .ch {
  display: inline-block;
  transform: translateY(0.95em) rotate(3deg);
  opacity: 0;
  transition: transform 1s var(--ease-out), opacity 0.7s var(--ease-out);
  transition-delay: var(--cd, 0ms);
}
.split.in .ch {
  transform: none;
  opacity: 1;
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  border-block: 1px solid var(--hair);
  padding-block: 15px;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 44px;
  animation: mq 34s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track span {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 44px;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--ember);
  border-radius: 50%;
  flex: none;
}
@keyframes mq {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- misc bits ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--hair-2);
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(18, 120, 78, 0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 7px rgba(18, 120, 78, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(18, 120, 78, 0);
  }
}
.kbd {
  font-family: var(--mono);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 5px;
  border: 1px solid var(--hair-2);
  border-bottom-width: 2px;
  background: #fff;
}

/* ---------- footer ---------- */
.foot {
  border-top: 1px solid var(--hair);
  padding-block: 54px 30px;
  margin-top: 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 34px;
}
.foot h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
  font-weight: 400;
}
.foot li a {
  display: inline-block;
  padding: 4px 0;
  font-size: 14.5px;
  color: var(--ink-2);
  transition: color 0.22s var(--ease), transform 0.22s var(--ease);
}
.foot li a:hover {
  color: var(--ember);
  transform: translateX(3px);
}
.foot-word {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(58px, 15vw, 210px);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--hair-2);
  margin-top: 46px;
  user-select: none;
  overflow: hidden;
}
.foot-word span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.9s var(--ease-out);
  transition-delay: var(--cd, 0ms);
}
.foot-word.in span {
  transform: none;
}
.foot-base {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--hair-3);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: inline-flex;
    margin-left: auto;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* ---------- header: contract pill + X ---------- */
.nav-ca {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 13px;
  margin-left: 4px;
  border-radius: 999px;
  border: 1px solid var(--hair-2);
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-ca:hover {
  border-color: var(--ember);
  color: var(--ember);
}
.nav-ca em {
  font-style: normal;
  color: var(--ember);
}
.nav-x {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: 6px;
  color: var(--ink);
  flex: none;
  transition: color 0.22s var(--ease), transform 0.22s var(--ease-spring), opacity 0.22s var(--ease);
}
.nav-x svg {
  width: 19px;
  height: 19px;
}
.nav-x:hover {
  color: var(--ember);
  transform: translateY(-1px) scale(1.06);
}
@media (max-width: 1240px) {
  .nav-ca { display: none; }
}
@media (max-width: 900px) {
  .nav-x { display: none; }
}

/* ---------- footer social ---------- */
.foot-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.foot-social a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 40px;
  padding: 0 16px 0 13px;
  border-radius: 999px;
  border: 1px solid var(--hair-2);
  font-size: 14px;
  transition: all 0.28s var(--ease);
}
.foot-social a svg {
  width: 15px;
  height: 15px;
}
.foot-social a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.foot-social .ca {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.foot-social .ca svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}
.cta-x {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.25s var(--ease);
}
.cta-x svg {
  width: 13px;
  height: 13px;
}
.cta-x:hover {
  color: #fff;
}
