:root {
  --bg: #f3ebdf;
  --bg-soft: #ece3d5;
  --bg-dark: #11110f;
  --bg-dark-alt: #1a1714;
  --cream: #f7f0e6;
  --ink: #16120f;
  --ink-soft: #635950;
  --line: rgba(22, 18, 15, 0.12);
  --line-strong: rgba(22, 18, 15, 0.2);
  --line-light: rgba(247, 240, 230, 0.14);
  --gold: #a47a4b;
  --gold-soft: rgba(164, 122, 75, 0.18);
  --blue: #2f4b5a;
  --violet: #4730ca;
  --glass-fill: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.035)
  );
  --glass-fill-strong: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  --glass-fill-light: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.42) 100%
  );
  --glass-fill-light-strong: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86) 0%,
    rgba(255, 255, 255, 0.54) 100%
  );
  --glass-stroke: rgba(247, 240, 230, 0.14);
  --glass-stroke-light: rgba(255, 255, 255, 0.54);
  --glass-shadow-dark:
    0 28px 68px rgba(0, 0, 0, 0.22),
    0 10px 26px rgba(0, 0, 0, 0.18);
  --glass-shadow-light:
    0 26px 56px rgba(98, 75, 49, 0.12),
    0 10px 22px rgba(98, 75, 49, 0.08);
  --shadow: 0 32px 90px rgba(39, 27, 18, 0.14);
  --max-width: 1200px;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-light-x: 50%;
  --hero-light-y: 18%;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-soft);
}

body {
  margin: 0;
  min-height: 100vh;
  min-width: 320px;
  background-color: var(--bg-soft);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.contact-sheet-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  mix-blend-mode: soft-light;
  opacity: 0.28;
  pointer-events: none;
}

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

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
ol {
  margin: 0;
}

ol {
  padding: 0;
}

:focus-visible {
  outline: 2px solid rgba(47, 75, 90, 0.55);
  outline-offset: 4px;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.section-shell,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.35rem 0 0;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.7rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(247, 240, 230, 0.12) 22%,
    rgba(247, 240, 230, 0.12) 78%,
    transparent
  );
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0;
}

.brand-logo {
  width: auto;
  height: 2rem;
}

.site-header__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.45rem 0.58rem;
  border: 1px solid rgba(247, 240, 230, 0.1);
  border-radius: 999px;
  background:
    radial-gradient(
      circle at var(--hero-light-x) var(--hero-light-y),
      rgba(255, 255, 255, 0.16),
      transparent 44%
    ),
    var(--glass-fill);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 20px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  color: rgba(247, 240, 230, 0.76);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.site-header__meta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at var(--hero-light-x) var(--hero-light-y),
      rgba(255, 255, 255, 0.22),
      transparent 38%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 52%);
  opacity: 0.82;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.site-header__meta::after {
  content: "";
  position: absolute;
  inset: auto 10% 0.14rem;
  height: 42%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.28;
  pointer-events: none;
}

.site-nav {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  padding: 0.34rem 0.4rem;
  border-radius: 999px;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.045);
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 16%, rgba(164, 122, 75, 0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(47, 75, 90, 0.22), transparent 26%),
    linear-gradient(180deg, #0d0d0c 0%, #151311 65%, #191613 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(247, 240, 230, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 240, 230, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 88%);
  opacity: 0.32;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow,
.hero-line,
.hero-ring {
  position: absolute;
  transform: translate3d(
    calc(var(--hero-shift-x) * 0.3),
    calc(var(--hero-shift-y) * 0.3),
    0
  );
  transition: transform 180ms ease-out;
}

.hero-glow {
  border-radius: 999px;
  filter: blur(14px);
}

.hero-glow--gold {
  top: -9rem;
  right: 8%;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgba(164, 122, 75, 0.24), transparent 68%);
}

.hero-glow--blue {
  bottom: -12rem;
  left: -6rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(47, 75, 90, 0.22), transparent 70%);
}

.hero-line {
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(247, 240, 230, 0.18),
    transparent
  );
}

.hero-line--one {
  top: 0;
  right: 17%;
  height: 100%;
}

.hero-line--two {
  top: 14%;
  left: 9%;
  height: 72%;
}

.hero-ring {
  border: 1px solid rgba(247, 240, 230, 0.08);
  border-radius: 999px;
}

.hero-ring--one {
  top: 18%;
  right: -8rem;
  width: 28rem;
  height: 28rem;
}

.hero-ring--two {
  bottom: -8rem;
  left: 18%;
  width: 18rem;
  height: 18rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(18.5rem, 20.5rem);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem 2.35rem;
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 100svh;
  margin: 0 auto;
  padding: 5.8rem 0 2rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-heading--light .eyebrow {
  color: rgba(247, 240, 230, 0.68);
}

.hero-copy {
  max-width: 42rem;
  align-self: center;
  padding-bottom: 0;
}

.hero h1,
.support-intro h2,
.section-heading h2,
.closing-shell h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 11.4ch;
  font-size: clamp(3.7rem, 6.6vw, 5.85rem);
  line-height: 0.95;
}

.hero-text {
  max-width: 27rem;
  margin-top: 1rem;
  color: rgba(247, 240, 230, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.45rem;
}

.button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--hero-light-x) var(--hero-light-y),
    rgba(255, 255, 255, 0.24),
    transparent 42%
  );
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--solid {
  color: var(--ink);
  border-color: transparent;
  background: linear-gradient(145deg, #f8f1e7, #e9ddcf);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.button--ghost {
  border-color: rgba(247, 240, 230, 0.18);
  color: rgba(247, 240, 230, 0.9);
  background: var(--glass-fill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.button--solid::before {
  opacity: 0.26;
}

.button--ghost::before {
  opacity: 0.56;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(247, 240, 230, 0.24);
  background: var(--glass-fill-strong);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translate3d(
    calc(var(--hero-shift-x) * 0.06),
    calc(var(--hero-shift-y) * 0.06),
    0
  );
}

.hero-index {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 20.1rem);
  padding: 1.1rem 1.15rem 1rem;
  border: 1px solid var(--glass-stroke);
  border-radius: 1.6rem;
  background:
    radial-gradient(
      circle at var(--hero-light-x) var(--hero-light-y),
      rgba(255, 255, 255, 0.13),
      transparent 42%
    ),
    var(--glass-fill);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 24px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.hero-index::before,
.hero-index::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-index::before {
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at var(--hero-light-x) var(--hero-light-y),
      rgba(255, 255, 255, 0.24),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 48%);
  opacity: 0.7;
  transition: opacity 220ms ease;
}

.hero-index::after {
  top: -2.5rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.hero-index__label {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: rgba(247, 240, 230, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-index__list {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
}

.hero-index__list li {
  display: grid;
  gap: 0.45rem;
  padding: 0.88rem 0;
}

.hero-index__list li + li {
  border-top: 1px solid rgba(247, 240, 230, 0.1);
}

.hero-index__number {
  color: rgba(247, 240, 230, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-index__company-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.hero-index__company-copy strong {
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-index__company-copy em {
  color: rgba(247, 240, 230, 0.62);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.2;
}

.hero-foot {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(18.5rem, 20.5rem);
  align-items: end;
  gap: 1.25rem 2.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(247, 240, 230, 0.12);
  color: rgba(247, 240, 230, 0.68);
}

.hero-foot p:first-child {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-foot p:last-child {
  max-width: 20rem;
  justify-self: end;
  line-height: 1.62;
  text-align: left;
}

.support,
.closing {
  padding: 5rem 0;
}

.support-intro {
  max-width: 34rem;
}

.support-intro h2,
.section-heading h2,
.closing-shell h2 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.7rem, 3.2vw, 3.75rem);
  align-items: start;
  margin-top: 2rem;
}

.support-lead p {
  max-width: 15ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.9vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.support-structure {
  padding: 0.6rem 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.support-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.4rem;
  align-items: start;
  padding: 1.1rem 0;
}

.support-note + .support-note {
  border-top: 1px solid var(--line);
}

.support-note span {
  min-width: 2.2rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.support-note h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.support-note p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.companies {
  position: relative;
  --spotlight-opacity: 0;
  padding: 6rem 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 22%, rgba(71, 48, 202, 0.14), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(47, 75, 90, 0.18), transparent 24%),
    linear-gradient(180deg, #171412 0%, #100f0d 100%);
  overflow: hidden;
}

.companies::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(247, 240, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 240, 230, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
}

.companies::after {
  content: "";
  position: absolute;
  inset: -8%;
  opacity: var(--spotlight-opacity);
  pointer-events: none;
  transform: scale(1.04);
  transition:
    opacity 320ms ease,
    transform 420ms ease,
    background 320ms ease;
}

.companies[data-spotlight]::after {
  transform: scale(1);
}

.companies[data-spotlight="trc"] {
  --spotlight-opacity: 1;
}

.companies[data-spotlight="trc"]::after {
  background:
    radial-gradient(circle at 18% 54%, rgba(93, 67, 255, 0.22), transparent 20%),
    radial-gradient(circle at 26% 32%, rgba(71, 48, 202, 0.16), transparent 18%);
}

.companies[data-spotlight="resylr"] {
  --spotlight-opacity: 1;
}

.companies[data-spotlight="resylr"]::after {
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 120, 64, 0.18), transparent 20%),
    radial-gradient(circle at 45% 34%, rgba(188, 64, 255, 0.16), transparent 18%);
}

.companies[data-spotlight="evans"] {
  --spotlight-opacity: 1;
}

.companies[data-spotlight="evans"]::after {
  background:
    radial-gradient(circle at 82% 54%, rgba(89, 152, 255, 0.2), transparent 21%),
    radial-gradient(circle at 74% 32%, rgba(54, 109, 186, 0.16), transparent 18%);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.section-summary {
  max-width: 28rem;
  margin-top: 1rem;
  color: rgba(247, 240, 230, 0.7);
  line-height: 1.75;
}

.company-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.8rem;
  border: 1px solid var(--line-light);
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 32px 72px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease,
    background 320ms ease,
    transform 320ms ease;
}

.company-stage::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 22%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), transparent 90%);
  opacity: 0.7;
  pointer-events: none;
}

.company-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.2rem;
  min-height: 34rem;
  padding: 1.4rem;
  color: inherit;
  isolation: isolate;
  transition:
    background-color 240ms ease,
    transform 240ms ease,
    border-color 240ms ease,
    opacity 240ms ease,
    box-shadow 240ms ease;
}

.company-panel + .company-panel {
  border-left: 1px solid var(--line-light);
}

.company-panel::before,
.company-panel::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.company-panel::before {
  inset: 0;
  opacity: 0.95;
}

.company-panel::after {
  bottom: 1.4rem;
  right: 1.4rem;
  left: auto;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 240, 230, 0.08);
  opacity: 0.7;
}

.company-panel__index,
.company-panel__cta {
  position: relative;
  z-index: 1;
}

.company-panel__index {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(247, 240, 230, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-panel__body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  gap: 2rem;
  padding-top: 2.2rem;
  padding-bottom: 1rem;
  transition: transform 240ms ease;
}

.company-panel__mark {
  display: grid;
  place-items: center;
  width: fit-content;
}

.company-logo {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 240ms ease;
}

.company-panel__copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.company-panel__copy p {
  max-width: 22ch;
  margin-top: 0.9rem;
  color: rgba(247, 240, 230, 0.72);
  line-height: 1.7;
}

.company-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding-top: 1rem;
  border-top: 1px solid rgba(247, 240, 230, 0.12);
  font-size: 0.9rem;
  font-weight: 700;
}

.company-panel__cta::after {
  content: "->";
  transition: transform 220ms ease;
}

.company-panel:hover,
.company-panel:focus-visible {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.company-panel:hover .company-panel__body,
.company-panel:focus-visible .company-panel__body {
  transform: translateY(-0.45rem);
}

.company-panel:hover .company-logo,
.company-panel:focus-visible .company-logo {
  transform: scale(1.04);
}

.company-panel:hover .company-panel__cta::after,
.company-panel:focus-visible .company-panel__cta::after {
  transform: translateX(0.25rem);
}

.companies[data-spotlight] .company-stage {
  border-color: rgba(247, 240, 230, 0.18);
  transform: translateY(-0.12rem);
}

.companies[data-spotlight] .company-panel {
  opacity: 0.78;
}

.companies[data-spotlight="trc"] .company-panel--trc,
.companies[data-spotlight="resylr"] .company-panel--resylr,
.companies[data-spotlight="evans"] .company-panel--evans {
  opacity: 1;
  transform: translateY(-0.42rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.companies[data-spotlight="trc"] .company-stage {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 36px 88px rgba(20, 16, 49, 0.36);
}

.companies[data-spotlight="resylr"] .company-stage {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 36px 88px rgba(58, 23, 24, 0.34);
}

.companies[data-spotlight="evans"] .company-stage {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 36px 88px rgba(15, 28, 47, 0.36);
}

.companies[data-spotlight="trc"] .company-panel--trc .company-panel__mark {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 24px 56px rgba(71, 48, 202, 0.22);
}

.companies[data-spotlight="resylr"] .company-panel--resylr .company-panel__mark {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 48px rgba(160, 60, 96, 0.2);
}

.companies[data-spotlight="evans"] .company-panel--evans .company-panel__mark {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.24);
}

.company-panel--trc::before {
  background:
    radial-gradient(circle at 24% 24%, rgba(71, 48, 202, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(56, 38, 158, 0.08), rgba(13, 12, 24, 0));
}

.company-panel--trc::after {
  width: 8rem;
  height: 8rem;
  border-color: rgba(71, 48, 202, 0.22);
}

.company-panel--resylr::before {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 120, 64, 0.22), transparent 28%),
    radial-gradient(circle at 24% 84%, rgba(188, 64, 255, 0.18), transparent 34%);
}

.company-panel--resylr::after {
  border-color: rgba(255, 133, 82, 0.18);
}

.company-panel--evans::before {
  background:
    linear-gradient(140deg, rgba(54, 109, 186, 0.2), transparent 38%),
    radial-gradient(circle at 76% 22%, rgba(77, 144, 255, 0.2), transparent 26%);
}

.company-panel--evans::after {
  border-color: rgba(109, 164, 255, 0.18);
}

.company-panel__mark--trc {
  width: 7.2rem;
  aspect-ratio: 1;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  background: var(--glass-fill-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 44px rgba(71, 48, 202, 0.16);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.company-panel__mark--resylr {
  min-width: 11.4rem;
  min-height: 5.2rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.2), transparent 62%),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.company-panel__mark--evans {
  min-width: 12.6rem;
  min-height: 5.8rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(125, 173, 255, 0.18);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top, rgba(72, 135, 226, 0.18), transparent 60%),
    linear-gradient(145deg, rgba(9, 23, 37, 0.9), rgba(17, 43, 67, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.company-logo--resylr {
  max-width: 10rem;
}

.company-logo--evans {
  max-width: 11.2rem;
}

.closing-shell {
  max-width: 39rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line-strong);
}

.closing-shell h2 {
  max-width: 11ch;
}

.closing-shell p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.82;
}

.contact-sheet[hidden] {
  display: none;
}

.contact-sheet {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 1.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.contact-sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-sheet__scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 8, 7, 0.34);
  backdrop-filter: blur(14px) saturate(118%);
  -webkit-backdrop-filter: blur(14px) saturate(118%);
  cursor: pointer;
}

.contact-sheet__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 35rem);
  padding: 1.25rem;
  border: 1px solid rgba(247, 240, 230, 0.18);
  border-radius: 1.9rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.32);
  color: var(--cream);
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  transform: translateY(1rem) scale(0.98);
  transition: transform 320ms ease, opacity 260ms ease;
}

.contact-sheet.is-open .contact-sheet__panel {
  transform: translateY(0) scale(1);
}

.contact-sheet__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(247, 240, 230, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 240, 230, 0.72);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.contact-sheet__close:hover,
.contact-sheet__close:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 240, 230, 0.92);
}

.contact-sheet h2 {
  max-width: 10ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 7vw, 4.1rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.contact-sheet__note {
  max-width: 28rem;
  margin-top: 0.9rem;
  color: rgba(247, 240, 230, 0.76);
  line-height: 1.72;
}

.contact-sheet__address {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--cream);
  font-size: clamp(1.1rem, 2.2vw, 1.32rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-decoration-color: rgba(247, 240, 230, 0.22);
  text-underline-offset: 0.18em;
}

.contact-sheet__address:hover,
.contact-sheet__address:focus-visible {
  text-decoration-color: currentColor;
}

.contact-sheet__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.contact-sheet__actions .button {
  min-width: 10.8rem;
}

.contact-sheet__actions .button--solid {
  color: var(--ink);
}

.contact-sheet__actions .button--ghost {
  color: var(--cream);
}

@media (min-width: 721px) {
  .contact-sheet {
    align-items: center;
  }
}

.closing .button--solid {
  color: var(--cream);
  border-color: rgba(247, 240, 230, 0.14);
  background: linear-gradient(
    180deg,
    rgba(44, 32, 23, 0.88),
    rgba(85, 59, 36, 0.7)
  );
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 calc(2.6rem + env(safe-area-inset-bottom));
  color: var(--ink-soft);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 700;
}

.site-footer__stack {
  display: grid;
  gap: 0.38rem;
  justify-items: end;
  text-align: right;
}

.site-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(22, 18, 15, 0.28);
  text-underline-offset: 0.16em;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration-color: currentColor;
}

.legal-page {
  color: var(--ink);
}

.legal-main {
  padding: 1.4rem 0 4rem;
}

.legal-header,
.legal-shell {
  width: min(calc(100% - 2rem), 920px);
  margin: 0 auto;
}

.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0;
}

.legal-brand img {
  width: auto;
  height: 2rem;
}

.legal-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.42rem;
  border: 1px solid rgba(22, 18, 15, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 36px rgba(98, 75, 49, 0.08);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
}

.legal-nav a {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition:
    background-color 200ms ease,
    color 200ms ease;
}

.legal-nav a:hover,
.legal-nav a:focus-visible,
.legal-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(22, 18, 15, 0.06);
}

.legal-shell {
  padding-top: 2.5rem;
}

.legal-intro {
  max-width: 42rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line-strong);
}

.legal-intro h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.1rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.legal-intro p {
  max-width: 38rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.legal-content {
  display: grid;
  gap: 0;
  margin-top: 1.8rem;
}

.legal-block {
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.legal-block:first-child {
  border-top: 0;
}

.legal-block h2 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.legal-block p {
  max-width: 44rem;
  color: var(--ink-soft);
  line-height: 1.78;
}

.legal-block p + p {
  margin-top: 0.75rem;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-list li {
  color: var(--ink-soft);
  line-height: 1.72;
}

.legal-list li + li {
  margin-top: 0.5rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.delay-1 {
  --reveal-delay: 120ms;
}

.delay-2 {
  --reveal-delay: 200ms;
}

.delay-3 {
  --reveal-delay: 280ms;
}

.delay-4 {
  --reveal-delay: 360ms;
}

.delay-5 {
  --reveal-delay: 440ms;
}

@media (max-width: 1080px) {
  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 1.6rem;
    padding-top: 6.25rem;
    padding-bottom: 2rem;
  }

  .hero-copy,
  .hero-index {
    max-width: 100%;
  }

  .hero-index {
    justify-self: start;
    width: min(100%, 24rem);
    padding: 1rem 1rem 0.95rem;
    margin-top: 0.25rem;
  }

  .hero-foot {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.7rem;
  }

  .hero-foot p:last-child {
    max-width: 26rem;
    justify-self: start;
    text-align: left;
  }

  .support-grid,
  .company-stage {
    grid-template-columns: 1fr;
  }

  .company-panel + .company-panel {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-footer,
  .site-header,
  .hero-content {
    width: min(calc(100% - 3.5rem), var(--max-width));
  }

  .site-header {
    padding-top: 1rem;
    gap: 0.85rem;
  }

  .site-header::after {
    inset: auto 0 -0.55rem;
  }

  .site-header__meta {
    padding: 0.35rem 0.48rem;
  }

  .brand {
    padding: 0.35rem 0;
  }

  .site-nav {
    gap: 0.9rem;
    font-size: 0.84rem;
  }

  .brand-logo {
    height: 1.76rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    justify-items: stretch;
    min-height: auto;
    gap: 1.85rem;
    padding-top: 5.9rem;
    padding-bottom: 1.85rem;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .hero h1 {
    max-width: 10.9ch;
    font-size: clamp(2.95rem, 11.3vw, 4.25rem);
    line-height: 0.94;
    margin-inline: 0;
  }

  .hero-text {
    max-width: 19rem;
    margin-top: 0.9rem;
    line-height: 1.56;
    margin-inline: 0;
  }

  .hero-text,
  .section-summary,
  .company-panel__copy p,
  .closing-shell p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-index {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .hero-foot {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .hero-foot p:last-child {
    max-width: 100%;
  }

  .hero-ring--one {
    width: 20rem;
    height: 20rem;
    right: -7rem;
  }

  .hero-ring--two {
    left: -2rem;
  }

  .hero-line--two {
    display: none;
  }

  .support,
  .companies,
  .closing {
    padding: 4.5rem 0;
  }

  .support-grid {
    margin-top: 2rem;
  }

  .support-lead p {
    max-width: 100%;
  }


  .support-note {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .support-structure {
    padding: 0.6rem 0;
  }

  .company-panel {
    min-height: auto;
  }

  .companies[data-spotlight] .company-stage,
  .companies[data-spotlight="trc"] .company-panel--trc,
  .companies[data-spotlight="resylr"] .company-panel--resylr,
  .companies[data-spotlight="evans"] .company-panel--evans {
    transform: none;
  }

  .company-panel__body {
    gap: 1.8rem;
  }

  .company-panel__mark--resylr,
  .company-panel__mark--evans {
    min-width: 0;
    width: min(100%, 12.4rem);
  }

  .company-panel__mark--trc {
    width: 6rem;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }

  .contact-sheet {
    padding: 1rem;
  }

  .contact-sheet__panel {
    width: 100%;
    padding: 1.15rem;
  }

  .contact-sheet__actions {
    flex-direction: column;
  }

  .contact-sheet__actions .button {
    width: 100%;
    min-width: 0;
  }

  .site-footer__stack {
    justify-items: start;
    text-align: left;
  }

  .legal-main {
    padding-top: 1rem;
  }

  .legal-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-brand {
    padding: 0.35rem 0;
  }

  .legal-shell {
    padding-top: 2rem;
  }
}

@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;
    scroll-behavior: auto !important;
  }

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