:root {
  color-scheme: light;
  --accent-bronze: #b5a078;
  --reveal-delay-base: 0.09s;
  --reveal-delay-step: 0.078s;
  --reveal-duration: 1.05s;
  --reveal-duration-tail: 0.9s;
  --reveal-footer-duration: 1.1s;
}

/* Page load — premium staggered reveal. */
@keyframes reveal-rise {
  from {
    opacity: 0;
    transform: translateY(4px);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes reveal-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-stagger > *,
  .reveal-stagger .team-section__intro,
  .reveal-stagger .team-member,
  .reveal-stagger .team-credibility,
  .reveal-stagger .home-footer {
    opacity: 0;
    animation: reveal-rise var(--reveal-duration) cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: calc(
      var(--reveal-delay-base) + var(--reveal-i, 0) * var(--reveal-delay-step)
      - max(0, var(--reveal-i, 0) - 2) * 0.014s
    );
    will-change: opacity, transform, filter;
  }

  .reveal-stagger > .team-section {
    animation: none;
    opacity: 1;
    will-change: auto;
  }

  .reveal-stagger > *:nth-child(1) {
    --reveal-i: 0;
  }

  .reveal-stagger > *:nth-child(2) {
    --reveal-i: 1;
  }

  .reveal-stagger > *:nth-child(3) {
    --reveal-i: 2;
  }

  .reveal-stagger > *:nth-child(4) {
    --reveal-i: 3;
  }

  .reveal-stagger > *:nth-child(5) {
    --reveal-i: 4;
  }

  .reveal-stagger > *:nth-child(6) {
    --reveal-i: 5;
  }

  .reveal-stagger > *:nth-child(7) {
    --reveal-i: 6;
  }

  .reveal-stagger > *:nth-child(8) {
    --reveal-i: 7;
  }

  .reveal-stagger > *:nth-child(9) {
    --reveal-i: 8;
  }

  .reveal-stagger > *:nth-child(10) {
    --reveal-i: 9;
  }

  .reveal-stagger .team-section__intro {
    --reveal-i: 2;
  }

  .reveal-stagger .team-list .team-member:nth-child(1) {
    --reveal-i: 3;
  }

  .reveal-stagger .team-list .team-member:nth-child(2) {
    --reveal-i: 4;
  }

  .reveal-stagger .team-list .team-member:nth-child(3) {
    --reveal-i: 5;
  }

  .reveal-stagger .team-credibility {
    --reveal-i: 6;
    animation-name: reveal-rise;
    animation-duration: var(--reveal-duration-tail);
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    animation-fill-mode: forwards;
    animation-delay: calc(
      var(--reveal-delay-base) + var(--reveal-i, 6) * var(--reveal-delay-step)
      - max(0, var(--reveal-i, 6) - 2) * 0.014s
    );
  }

  .reveal-stagger .team-member {
    animation-duration: var(--reveal-duration-tail);
  }

  .home-content > .home-footer {
    --reveal-i: 7;
    animation-name: reveal-fade;
    animation-duration: var(--reveal-duration-tail);
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    animation-fill-mode: forwards;
    animation-delay: calc(
      var(--reveal-delay-base) + var(--reveal-i, 7) * var(--reveal-delay-step)
      - max(0, var(--reveal-i, 7) - 2) * 0.014s
    );
    will-change: opacity;
  }

  .content-page > .home-footer {
    animation-name: reveal-fade;
    animation-duration: var(--reveal-duration-tail);
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    animation-fill-mode: forwards;
    will-change: opacity;
  }
}

body {
  background-color: #f6f7f8;
  color: #000000;
}

/* Home: vertical padding set by home-center.js to fit the viewport. */
.home-main {
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Hero stack — grouped spacing: brand (logo + headline) · CTA · team · footer */
.home-content {
  --home-gap-brand: 2.125rem;
  --home-gap-action: 2.875rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.home-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.home-brand {
  max-width: 38rem;
  padding: 0 0.5rem;
  gap: var(--home-gap-brand);
  margin-bottom: var(--home-gap-action);
}

.home-logo-block {
  width: 100%;
  max-width: min(380px, 27vw);
  line-height: 0;
}

.home-logo {
  display: block;
  width: 100%;
  height: auto;
  /* Collapse baked-in vertical letterboxing in the logo asset */
  margin-bottom: -14%;
}

.home-tagline {
  margin: 0;
  max-width: 30rem;
  padding: 0 0.25rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(0.875rem, 0.45vw + 0.75rem, 1.0625rem);
  line-height: 1.55;
  letter-spacing: 0.015em;
  font-weight: 400;
  color: #4c4546;
}

.home-cta {
  margin-bottom: 2.75rem;
}

.home-footer {
  width: 100%;
  max-width: 32rem;
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.home-footer__line {
  display: inline-flex;
  align-items: center;
  gap: 1.125rem;
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.6875rem;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #959091;
}

.home-footer__copy {
  flex-shrink: 0;
}

.home-footer__links {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.home-footer__line a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-footer__line a:hover {
  color: #6e6768;
}

.home-footer__line a:focus-visible {
  outline: 1px solid #9a9293;
  outline-offset: 2px;
  border-radius: 1px;
}

.home-footer__sep {
  margin: 0 0.35em;
  opacity: 0.72;
}

.btn-primary--hero {
  background-color: transparent;
  color: #111111;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0.875rem 2.125rem;
  letter-spacing: 0.02em;
  border-width: 1.5px;
  border-color: #111111;
  border-radius: 4px;
}

.btn-primary:has(.btn-primary__arrow) {
  gap: 0.35rem;
}

.btn-primary__arrow {
  position: relative;
  z-index: 1;
  color: var(--accent-bronze);
  font-size: 0.9em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover .btn-primary__arrow {
  transform: translateX(4px);
}

.btn-primary:has(.btn-primary__arrow):focus-visible {
  outline: 2px solid var(--accent-bronze);
  outline-offset: 3px;
}

.btn-primary--hero::before {
  background-color: #000000;
}

.btn-primary--hero:hover {
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.btn-primary--hero:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

/* Primary buttons — wipe invert on hover. */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid #000000;
  border-radius: 3px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: #f6f7f8;
  transform: translateY(101%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.btn-primary__label {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  color: #000000;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover::before {
  transform: translateY(0);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition-duration: 0.1s;
}

.btn-primary:disabled {
  pointer-events: none;
}

.btn-primary--pill {
  border-radius: 9999px;
}

/* Inline text links — center-draw underline. */
.link-text {
  position: relative;
  text-decoration: none;
  letter-spacing: 0;
  padding-bottom: 2px;
  transition:
    letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease,
    background-size 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-text:not(.link-text--external) {
  display: inline-block;
}

.link-text:not(.link-text--external)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-text:not(.link-text--external):hover::after {
  transform: translateX(-50%) scaleX(1);
}

.link-text:hover {
  letter-spacing: 0.03em;
}

/* External links: inline arrow in flow + expanding underline. */
.link-text--external {
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center calc(100% - 1px);
  background-size: 0% 1px;
}

.link-text--external:hover {
  background-size: 100% 1px;
}

.link-text--external::after {
  content: "↗";
  display: inline-block;
  max-width: 0;
  margin-left: 0;
  overflow: hidden;
  font-size: 0.65em;
  line-height: 1;
  vertical-align: 0.12em;
  opacity: 0;
  transform: translate(-2px, 2px);
  transition:
    max-width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    margin-left 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-text--external:hover::after {
  max-width: 1em;
  margin-left: 0.15em;
  opacity: 0.55;
  transform: none;
}

/* Footer / nav links — same underline, tighter letter-spacing. */
.link-nav {
  position: relative;
  display: inline-block;
  text-decoration: none;
  letter-spacing: inherit;
  padding-bottom: 2px;
  transition:
    letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease,
    opacity 0.3s ease;
}

.link-nav::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-nav:hover {
  letter-spacing: 0.05em;
}

.link-nav:hover::after {
  transform: translateX(-50%) scaleX(1);
}

@media (min-width: 768px) {
  .home-footer {
    margin-top: 3.25rem;
  }
}

@media (max-width: 767px) {
  .home-main {
    min-height: 100svh;
  }

  .home-content {
    --home-gap-brand: 1.75rem;
    --home-gap-action: 2.375rem;
  }

  .home-logo-block {
    max-width: min(78vw, 330px);
  }

  .home-logo {
    margin-bottom: -12%;
  }

  .home-tagline {
    font-size: clamp(0.8125rem, 3.2vw, 0.9375rem);
    line-height: 1.5;
  }

  .btn-primary {
    max-width: 100%;
  }

  .btn-primary--hero {
    font-size: 0.875rem;
    padding: 0.75rem 1.75rem;
  }

  .pilot-brand,
  .page-mark {
    max-width: min(42vw, 9.5rem);
  }

  .page-hero--pilot .page-hero__lead {
    font-size: 0.875rem;
  }

  .content-page--pilot {
    padding: 1.5rem 1.125rem 1.375rem;
  }
}

/* Interior pages — natural scroll with comfortable page padding. */
.page-main {
  box-sizing: border-box;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .page-main {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.page-main--centered {
  box-sizing: border-box;
}

.page-main--centered .content-page {
  gap: 0.75rem;
}

.pilot-brand,
.page-mark {
  display: block;
  width: 100%;
  max-width: 10rem;
  margin: 0 auto;
  line-height: 0;
  text-decoration: none;
}

.pilot-brand__logo,
.page-mark__logo {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -14%;
}

.page-hero--pilot {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.page-hero__title {
  margin: 1rem 0 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4c4546;
}

.page-hero--pilot .page-hero__lead {
  margin-top: 1.125rem;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.58);
}

.page-main--centered .pilot-form-wrap {
  margin-top: 1.75rem;
  width: 100%;
}

.page-main--centered .pilot-form__fields {
  gap: 1rem;
}

.page-main--centered .pilot-form__submit {
  padding-top: 1.25rem;
  justify-content: center;
  text-align: center;
}

.content-page--narrow {
  max-width: 32rem;
}

.content-page--pilot {
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.875rem 1.5rem 1.625rem;
  background-color: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.content-page--pilot .pilot-brand {
  max-width: 10.5rem;
}

.content-page--pilot .pilot-brand__logo {
  margin-bottom: 0;
}

.content-page--pilot .page-hero__title {
  margin-top: 0.75rem;
}

.content-page--legal {
  max-width: 42.5rem;
  align-items: center;
}

.content-page--legal .prose-content {
  width: 100%;
}

.content-page--legal .page-mark {
  max-width: 9rem;
}

.content-page--legal .page-hero--legal {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.content-page--legal .page-hero__title {
  margin: 0.75rem 0 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4c4546;
}

.content-page--legal .page-hero__meta {
  margin-top: 0.625rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.625rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9293;
}

.content-page--legal .page-hero__lead {
  margin-top: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.58);
}

.content-page--legal .content-aside {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  color: #4c4546;
}

.content-page--legal .content-section__title {
  font-size: 1.8125rem;
}

.content-page--legal .content-section__subtitle {
  font-size: 1.35rem;
}

.content-page--legal .home-footer {
  width: 100%;
  max-width: none;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.content-page--legal .home-footer__line {
  justify-content: center;
}

.content-page--pilot .page-hero__lead {
  margin-top: 0.875rem;
}

.content-page--pilot .pilot-form-wrap {
  margin-top: 1.25rem;
}

.content-page--pilot .pilot-form__fields {
  gap: 0.8125rem;
}

.content-page--pilot .form-label {
  margin-bottom: 0.375rem;
}

.content-page--pilot .form-input {
  padding: 0.6875rem 0.875rem;
  font-size: 0.875rem;
}

.content-page--pilot .form-input--textarea {
  min-height: 4rem;
}

.content-page--pilot .pilot-form__submit {
  padding-top: 1rem;
}

.content-page--pilot .btn-primary--hero {
  padding: 0.75rem 1.875rem;
  font-size: 0.875rem;
}

.content-page--pilot .home-footer {
  margin-top: 1.75rem;
}

.content-page--pilot .pilot-form {
  padding: 0;
  background-color: transparent;
  border: none;
  text-align: left;
}

.content-page--pilot .home-footer {
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: center;
}

.content-page--pilot .home-footer__line {
  justify-content: center;
}

/* Shared site footer (legacy). */
.site-footer {
  width: 100%;
  margin-top: auto;
  padding: 3rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4c4546;
}

.site-footer__link {
  color: #4c4546;
}

.site-footer__link:hover {
  color: #000000;
}

.site-footer__sep {
  opacity: 0.5;
}

.site-footer__copy {
  font-size: 16px;
  line-height: 1.6;
  color: #4c4546;
  opacity: 0.8;
}

/* Content pages (security, privacy). */
.content-page {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-hero:not(.page-hero--pilot):not(.page-hero--legal) {
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e3e2e2;
}

.page-hero__lead {
  margin-top: 1.5rem;
  font-size: 18px;
  line-height: 1.6;
  color: #4c4546;
}

.page-hero__meta {
  margin-top: 1rem;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5e5e5e;
}

.content-card {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background-color: #ffffff;
  border: 1px solid #e3e2e2;
  transition:
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-card:hover {
  border-color: #cfc4c5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.content-card__title {
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
}

.content-card__body {
  font-size: 18px;
  line-height: 1.6;
  color: #1a1c1c;
}

.content-aside {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #e3e2e2;
  font-size: 16px;
  line-height: 1.6;
  color: #4c4546;
  text-align: center;
}

.prose-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-section__title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
}

.content-section__subtitle {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: #000000;
}

.content-section__body {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1c1c;
}

.content-section__body + .content-section__body,
.content-section__subtitle + .content-section__body {
  margin-top: 0.25rem;
}

.content-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.content-list li {
  padding-left: 1rem;
  border-left: 1px solid #e3e2e2;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1c1c;
}

.content-callout {
  margin-top: 0.5rem;
  padding: 1.25rem 1.5rem;
  background-color: #ffffff;
  border: 1px solid #e3e2e2;
  border-left: 2px solid #000000;
}

.content-callout__label {
  margin-bottom: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4c4546;
}

.content-callout__body {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1c1c;
}

.content-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 14px;
  line-height: 1.5;
  color: #4c4546;
}

.content-emphasis {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #000000;
}

.team-section {
  display: contents;
}

.team-section__intro,
.team-member,
.team-credibility {
  width: 100%;
  max-width: 32rem;
}

.team-section__intro::before {
  content: "";
  display: block;
  width: min(12rem, 55%);
  height: 1px;
  margin: 0 auto 1.375rem;
  background-color: #e3e2e2;
}

.team-section__title {
  margin: 0 0 1rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4c4546;
}

.team-credibility {
  margin-top: 1.5rem;
  padding-top: 0;
}

.team-credibility::before {
  content: "";
  display: block;
  width: min(12rem, 55%);
  height: 1px;
  margin: 0 auto 1.375rem;
  background-color: #e3e2e2;
}

.team-credibility__text {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.75rem;
  line-height: 1.55;
  font-weight: 400;
}

.team-credibility__label {
  display: block;
  color: #9a9293;
}

.team-credibility__schools {
  display: block;
  margin-top: 0.25rem;
  color: #7e7576;
  letter-spacing: 0.01em;
}

.team-list {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.125rem;
}

.team-list .team-member:first-child {
  margin-top: 0;
}

.team-member__heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.team-member__heading .link-text {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  color: #1a1c1c;
}

.team-member__heading .link-text:hover {
  color: #000000;
}

.team-linkedin {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 0.8125rem;
  height: 0.8125rem;
  color: #4c4546;
  opacity: 0.5;
  text-decoration: none;
  transform: translateY(0);
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-linkedin svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.team-member__heading:hover .team-linkedin {
  opacity: 0.62;
}

.team-linkedin:hover {
  opacity: 1;
  transform: translateY(-1px) scale(1.1);
}

.team-linkedin:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
  opacity: 1;
}

.team-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-weight: 400;
  color: #9a9293;
}

.team-meta-sep {
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-stagger > *,
  .reveal-stagger .team-section__intro,
  .reveal-stagger .team-member,
  .reveal-stagger .team-credibility,
  .reveal-stagger .home-footer,
  .reveal-footer {
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
    will-change: auto;
  }

  .btn-primary,
  .link-text,
  .link-nav,
  .team-linkedin {
    transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  }

  .btn-primary::before {
    transform: none;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .btn-primary:hover::before {
    opacity: 1;
  }

  .link-text:not(.link-text--external)::after,
  .link-text--external::after,
  .link-nav::after {
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .link-text--external::after {
    max-width: 0;
    margin-left: 0;
    transform: none;
    opacity: 0;
  }

  .link-text:not(.link-text--external):hover::after,
  .link-nav:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  .link-text--external:hover {
    background-size: 100% 1px;
  }

  .link-text--external:hover::after {
    max-width: 1em;
    margin-left: 0.15em;
    opacity: 0.55;
  }

  .btn-primary:hover,
  .btn-primary:active,
  .link-text:hover,
  .link-nav:hover,
  .team-linkedin:hover {
    transform: none;
    letter-spacing: inherit;
    box-shadow: none;
  }

  .btn-primary--hero:hover .btn-primary__arrow,
  .btn-primary:hover .btn-primary__arrow {
    transform: none;
  }

  .pilot-field::after {
    transition: none;
  }

  .pilot-field:focus-within::after {
    transform: scaleX(1);
  }

  .pilot-field:focus-within .form-label {
    letter-spacing: 0.1em;
  }

  .form-input {
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }

  .form-input:focus {
    transform: none;
    box-shadow: none;
  }
}

/* Material Symbols (used on the Privacy page). */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Pilot intake form. */
.pilot-form {
  padding: clamp(1.25rem, 3vw, 1.5rem);
  background-color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.pilot-form .form-input {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background-color: transparent;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.pilot-form .form-input:hover {
  border-color: rgba(0, 0, 0, 0.32);
}

.pilot-form .form-input:focus {
  border-color: #111111;
  background-color: transparent;
  outline: none;
  box-shadow: 0 0 0 2px rgba(139, 94, 60, 0.12);
  transform: none;
}

.pilot-form .form-input:-webkit-autofill,
.pilot-form .form-input:-webkit-autofill:hover,
.pilot-form .form-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #000000;
  box-shadow: 0 0 0 1000px #f6f7f8 inset;
}

.pilot-form .pilot-field::after {
  content: none;
}

.pilot-form .pilot-field:focus-within .form-label {
  color: #111111;
  letter-spacing: 0.1em;
}

.pilot-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pilot-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pilot-field::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--accent-bronze);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.pilot-field:focus-within::after {
  transform: scaleX(1);
}

.pilot-field:focus-within .form-label {
  color: #000000;
  letter-spacing: 0.12em;
}

.pilot-form__submit {
  display: flex;
  justify-content: center;
  padding-top: 1.75rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4c4546;
  transition:
    color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-required {
  font-weight: 500;
  opacity: 0.6;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e3e2e2;
  background-color: #faf9f9;
  color: #000000;
  border-radius: 0;
  outline: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-input::placeholder {
  color: #7e7576;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.form-input:hover {
  border-color: #cfc4c5;
}

.form-input:focus {
  border-color: #000000;
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.form-input:focus::placeholder {
  opacity: 0.45;
}

.form-input--textarea {
  field-sizing: content;
  min-height: 5.25rem;
  max-height: min(40vh, 20rem);
  resize: none;
  overflow-y: auto;
  line-height: 1.5;
}

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #000000;
  box-shadow: 0 0 0 1000px #faf9f9 inset;
  transition: background-color 9999s ease-out;
}

.form-input:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px #ffffff inset;
}

/* Legacy naked inputs (unused on pilot; kept for reference). */
.naked-input {
  width: 100%;
  padding: 8px 0;
  border: none;
  background-color: transparent;
  outline: none;
  box-shadow: none !important;
}

.naked-input:focus {
  outline: none;
  box-shadow: none !important;
}

/* Pilot form submission status message. */
.form-status:empty {
  display: none;
}

.form-status {
  margin-top: 1.25rem;
}

.form-status[data-state="success"] {
  color: #15803d;
}

.form-status[data-state="error"] {
  color: #b91c1c;
}

/* Branded page transitions. */
.page-root.page-await-enter {
  opacity: 0;
  transform: translateY(4px);
}

.page-root.page-leaving {
  animation: page-transition-out 180ms ease forwards;
}

.page-root.page-entering {
  animation: page-transition-in 240ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes page-transition-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes page-transition-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

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

.page-transition-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f7f8;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.page-transition-loader[hidden] {
  display: none !important;
}

.page-transition-loader.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.page-transition-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.page-transition-loader__icon {
  display: block;
  width: 4rem;
  height: auto;
}

.page-transition-loader__line {
  width: 6.25rem;
  height: 1.5px;
  background-color: var(--accent-bronze);
  transform: scaleX(0);
  transform-origin: left center;
}

.page-transition-loader__line.is-animating {
  animation: page-transition-seal 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-transition-loader.is-looping .page-transition-loader__line.is-animating {
  animation: page-transition-seal-loop 900ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes page-transition-seal {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes page-transition-seal-loop {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }

  45% {
    transform: scaleX(1);
    transform-origin: left center;
  }

  55% {
    transform: scaleX(1);
    transform-origin: right center;
  }

  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}

@media (max-width: 767px) {
  .page-transition-loader__icon {
    width: 3rem;
  }

  .page-transition-loader__line {
    width: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-root.page-await-enter,
  .page-root.page-leaving,
  .page-root.page-entering {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .page-transition-loader {
    transition-duration: 60ms;
  }

  .page-transition-loader__line.is-animating {
    animation: none;
    transform: scaleX(1);
  }

  .page-transition-loader.is-looping .page-transition-loader__line.is-animating {
    animation: none;
    transform: scaleX(1);
  }
}
