/* =========================================================
   Talon homepage — static reproduction (HTML + CSS only)
   ========================================================= */

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-100_900_1.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-100_900-Italic_1.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Mono";
  src: url("fonts/Roboto_Mono-100_700_1.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Mono";
  src: url("fonts/Roboto_Mono-100_700-Italic_1.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 700;
  font-display: swap;
}

:root {
  --bg: #000000;
  --fg: #ffffff;
  --accent: #dff140;
  --muted: #6c6e6b;
  --gap: 6px;
  --header-h: 61.2px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

.noscript {
  background: #000;
  color: #fff;
  font-size: 20px;
  display: inline-block;
  padding: 10px;
}

.Sprite {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* icon symbol definitions — kept out of layout flow */
.Sprites {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* =========================================================
   HEADER
   ========================================================= */
.Header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--fg);
}

.HeaderDesktop {
  height: var(--header-h);
}

.navWrapper {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
}

.left-wrapper .home {
  display: inline-flex;
  align-items: center;
}

.left-wrapper .home svg {
  width: 100px;
  height: auto;
  display: block;
}

.wordmark {
  display: block;
  font-family: var(--font);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--fg);
}

.center-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.HeaderLink,
.searchLink,
.company-wrapper {
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  position: relative;
  opacity: 0.92;
  transition: opacity 150ms ease;
  white-space: nowrap;
}

.HeaderLink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.HeaderLink:hover,
.searchLink:hover,
.company-wrapper:hover {
  opacity: 1;
}

.HeaderLink:hover::after {
  transform: scaleX(1);
}

.right-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.HeaderAction {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.HeaderAction--primary {
  border-color: #EDEDE6;
  background: #EDEDE6;
  color: #1A1C17;
}

.HeaderAction--primary:hover {
  border-color: #ffffff;
  background: #ffffff;
}

.HeaderAction--secondary {
  gap: 6px;
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.HeaderActionIcon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.HeaderAction--secondary:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.company-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.plus-sign {
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-block;
}

.plus-sign span {
  position: absolute;
  background: currentColor;
}

.plus-sign span:first-child {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.plus-sign span:last-child {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.menu-button {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.menu-button svg {
  width: 26px;
  height: 22px;
}

/* =========================================================
   HERO
   ========================================================= */
.HomeHero {
  position: relative;
  width: 100%;
  height: 96svh;
  min-height: 520px;
  overflow: hidden;
}

.HomeHero .mediaWrapper,
.HomeHero video {
  width: 100%;
  height: 100%;
}

.HomeHero video {
  object-fit: cover;
}

/* legibility scrim behind the hero text */
.HomeHero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 40px 40px 56px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(1.5rem, 3.4vw, 2.85rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-subtext {
  margin-top: 12px;
  font-size: clamp(0.95rem, 1.6vw, 1.35rem);
  font-weight: 350;
  line-height: 1.1;
  letter-spacing: 0.01em;
  opacity: 0.9;
}

/* =========================================================
   FEATURED PRODUCTS
   ========================================================= */
.FeaturedWrap {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  padding: var(--gap);
}

.SupplierRow {
  display: flex;
  align-items: stretch;
  gap: var(--gap);
}

.FeaturedIntro {
  flex: 0 0 24%;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  padding: 24px 28px;
}

.FeaturedIntro .intro-text {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.cards-grid {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.FeaturedProductsCard {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  display: block;
}

.FeaturedProductsCard .mediaContainer,
.FeaturedProductsCard .ResponsiveImage {
  width: 100%;
  height: 100%;
}

.FeaturedProductsCard .ResponsiveImage {
  object-fit: cover;
}

/* aspect ratios establish the tiling grid */
.FeaturedProductsCard.ghost,
.FeaturedProductsCard.barracuda,
.FeaturedProductsCard.lattice,
.FeaturedProductsCard.menace,
.FeaturedProductsCard.divexl {
  aspect-ratio: 1 / 1;
}

.FeaturedProductsCard.fury {
  grid-column: 1 / span 2;
  grid-row: 1;
  aspect-ratio: 2 / 1;
}

.FeaturedProductsCard.divexl {
  grid-column: 3;
  grid-row: 1;
}

/* Supplier CTA tile */
.SupplierCTA {
  position: relative;
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(24px, 2.6vw, 40px);
  /* bleed past the wrap's right padding so the tile meets the screen edge */
  margin-right: calc(var(--gap) * -1);
  background: #373A31;
  color: #EDEDE6;
}
.SupplierCTA .cta-copy {
  width: 100%;
  font-size: clamp(1rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.9;
}
.SupplierCTA .cta-lead,
.SupplierCTA .cta-detail {
  display: block;
}
.SupplierCTA .cta-lead {
  white-space: nowrap;
}
.SupplierCTA .cta-detail {
  margin-top: 18px;
}
.SupplierCTA .cta-apply {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 238px;
  min-height: 50px;
  padding: 14px 20px;
  background: #EDEDE6;
  color: #1A1C17;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 150ms ease, transform 150ms ease;
}
.SupplierCTA .cta-apply:hover {
  background: #FFFFFF;
}
.SupplierCTA .cta-arrow {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}
.SupplierCTA .cta-apply:hover .cta-arrow {
  transform: translate(2px, -2px);
}

.FeaturedProductsCard .overlayer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.FeaturedProductsCard .content-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 28px 30px;
  z-index: 2;
}

.FeaturedProductsCard .title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* first-row cards + the fury/become-a-supplier cards share the hero-title styling */
.FeaturedProductsCard.ghost .title,
.FeaturedProductsCard.barracuda .title,
.FeaturedProductsCard.lattice .title,
.FeaturedProductsCard.fury .title,
.FeaturedProductsCard.divexl .title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.FeaturedProductsCard .description {
  font-size: 1.05rem;
  font-weight: 400;
  margin-top: 0.4rem;
}

.FeaturedProductsCard .icons {
  display: none;
}

/* hardware row: title rests at the bottom; the subheader collapses to zero
   height when idle and expands on hover, so there's no empty gap */
.hardwareRow .content-wrapper {
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 400ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.hardwareRow .FeaturedProductsCard:hover .content-wrapper,
.hardwareRow .FeaturedProductsCard:focus-visible .content-wrapper {
  grid-template-rows: auto 1fr;
}
.hardwareRow .description {
  min-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0.4rem;
  opacity: 0;
  transition: opacity 300ms ease;
}
.hardwareRow .FeaturedProductsCard:hover .description,
.hardwareRow .FeaturedProductsCard:focus-visible .description {
  opacity: 1;
}
/* subtle image zoom on hover */
.hardwareRow .ResponsiveImage {
  transition: transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.hardwareRow .FeaturedProductsCard:hover .ResponsiveImage {
  transform: scale(1.04);
}

/* =========================================================
   SHARED — LinkButton
   ========================================================= */
.LinkButton {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}

.LinkButton .iconWrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
}

.LinkButton .iconWrapper svg {
  width: 100%;
  height: 100%;
}

.LinkButton:hover .iconWrapper {
  transform: translate(3px, -3px);
}

/* =========================================================
   ANNOUNCEMENT SLICE
   ========================================================= */
.AnnouncementSlice {
  background: var(--muted);
  color: var(--fg);
  padding: 90px 32px 70px;
}

.AnnouncementSlice .topWrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.AnnouncementSlice .topWrapper .title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
}

.AnnouncementSlice .imageWrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.AnnouncementSlice .bottomWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
}

.AnnouncementSlice .detailElios {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  opacity: 0.95;
}

.AnnouncementSlice .col3 .detail {
  font-weight: 700;
  margin-bottom: 6px;
}

.AnnouncementSlice .col3 p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* =========================================================
   NEWS & INSIGHTS
   ========================================================= */
.NewsFeaturedSlice {
  padding: 90px 32px 80px;
  background: #F1F0EA;
  color: #111111;
}

.MissionSection {
  position: relative;
  min-height: 874px;
}

.NewsFeaturedSlice .top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
}

.NewsFeaturedSlice .top .header {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
}

.NewsFeaturedSlice .border {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.18);
}

/* ---- Mission + Join ---- */
.MissionSection .eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-bottom: 26px;
}

.MissionBlock {
  max-width: 52%;
}

.mission-statement {
  font-size: clamp(1.5rem, 3.2vw, 2.85rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.mission-detail {
  margin-top: 24px;
  font-size: clamp(1.5rem, 3.2vw, 2.85rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.JoinBlock {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46.8%, 738px);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 56px;
  background: #373A31;
  color: #EDEDE6;
}

.JoinBlock .join-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.JoinBlock .join-copy {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.35;
  max-width: 620px;
  opacity: 0.9;
}

.apply-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: #EDEDE6;
  color: #1a1c17;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 150ms ease, transform 150ms ease;
}

.apply-button:hover {
  background: #ffffff;
}

@media (max-width: 768px) {
  .MissionSection {
    min-height: auto;
  }
  .MissionBlock {
    max-width: 100%;
  }
  .JoinBlock {
    position: static;
    width: auto;
    margin-top: 48px;
    padding: 32px;
  }
}

.HighlightedArticle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 48px;
  align-items: stretch;
}

.HighlightedArticle .highlightedContent {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 8px 0;
}

.HighlightedArticle .date {
  font-size: 0.9rem;
  opacity: 0.6;
}

.HighlightedArticle .titleWrapper .title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 90%;
}

.HighlightedArticle .LinkButton {
  margin-top: auto;
}

.HighlightedArticle .image {
  position: relative;
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, #1a1c1a 0%, #2b2e2b 55%, #3a3e3a 100%);
  overflow: hidden;
}

.HighlightedArticle .corner-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   MEDIA LINK CAROUSEL
   ========================================================= */
.MediaLinkSlice .carousel {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.MediaLinkCard.dark {
  background: rgb(80, 85, 68);
  color: #fff;
}

.MediaLinkCard.light {
  background: rgb(142, 146, 145);
  color: #010101;
}

.MediaLinkCard .content-wrapper {
  padding: 60px 40px 48px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.MediaLinkCard .topWrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.MediaLinkCard .topWrapper .title {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.MediaLinkCard .border {
  height: 1px;
  width: 100%;
  background: currentColor;
  opacity: 0.35;
}

.MediaLinkCard .bottomWrapper {
  margin-top: 26px;
}

.MediaLinkCard .label {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  opacity: 0.85;
}

.MediaLinkCard .bottomWrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* =========================================================
   FOOTER
   ========================================================= */
.Footer {
  background: var(--bg);
  color: var(--fg);
  padding: 60px 32px 26px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo .wordmark {
  font-size: 21px;
}

.footer-tagline {
  font-size: 1.1rem;
  line-height: 1.45;
  max-width: 340px;
  opacity: 0.5;
}

.footer-connect {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.footer-email {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  letter-spacing: -0.01em;
  transition: color 150ms ease;
}

.footer-email:hover {
  color: var(--accent);
}

.social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--fg);
  opacity: 0.7;
  transition: opacity 150ms ease, color 150ms ease;
}

.social-icon:hover {
  opacity: 1;
  color: var(--accent);
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer-copyright {
  opacity: 0.4;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  opacity: 0.5;
  transition: opacity 150ms ease;
}

.footer-legal a:hover {
  opacity: 1;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .center-wrapper,
  .right-wrapper {
    display: none;
  }
  .navWrapper {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }
  .menu-button {
    display: inline-flex;
  }

  /* products stack to a single column, natural aspect */
  .SupplierRow {
    flex-direction: column;
  }
  .FeaturedIntro {
    flex-basis: auto;
    padding: 16px 8px 8px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .FeaturedProductsCard.roadrunner,
  .FeaturedProductsCard.fury,
  .FeaturedProductsCard.menace,
  .FeaturedProductsCard.divexl,
  .SupplierCTA {
    grid-column: 1;
    grid-row: auto;
  }
  .SupplierCTA {
    aspect-ratio: auto;
    min-height: 200px;
  }
  .SupplierCTA .cta-copy {
    font-size: clamp(1.35rem, 5vw, 1.9rem);
  }
  .FeaturedProductsCard.roadrunner {
    aspect-ratio: 1 / 1;
  }
  .FeaturedProductsCard .description,
  .FeaturedProductsCard .icons {
    opacity: 1;
    transform: none;
  }

  .AnnouncementSlice .topWrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .AnnouncementSlice .bottomWrapper {
    grid-template-columns: 1fr;
  }

  .HighlightedArticle {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .HighlightedArticle .image {
    order: -1;
  }

  .MediaLinkSlice .carousel {
    grid-template-columns: 1fr;
  }

  .footer-main {
    flex-direction: column;
    gap: 32px;
  }
  .footer-connect {
    align-items: flex-start;
  }
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* =========================================================
   TalonOS — inert instrument-grade card art (real DOM)
   One precise artifact per card: fine drafting linework on
   black with a single lime accent. Scales via container units;
   the lower zone stays dark so the card title reads cleanly.
   Fully non-interactive.
   ========================================================= */
.SupplierRow .FeaturedProductsCard {
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}
.SupplierRow .FeaturedProductsCard .mediaContainer {
  container-type: size;
  background: #0a0a0a;
}
.tos {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--font);
  color: #e9ebea;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
  background: radial-gradient(62% 50% at 50% 40%, #141619 0%, #0c0d0e 58%, #0a0a0a 100%);
}
.tos, .tos * { box-sizing: border-box; }
.tos::after { /* dark base so the card title/subtitle stay legible */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  z-index: 4;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.9) 62%, #0a0a0a);
}
/* isometric systems diagram — fills the upper zone, fully inline SVG */
.tos-scene {
  position: absolute;
  left: 4.5cqmin; right: 4.5cqmin;
  top: 4.5cqmin; bottom: 32%;
  z-index: 2;
}
.tos-scene svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* =========================================================
   TalonOS supplier value cards
   ========================================================= */
.SupplierRow .tos {
  display: none;
}

.SupplierRow .FeaturedProductsCard {
  outline: 1px solid rgba(255, 255, 255, 0.08);
  outline-offset: -1px;
}

.TalonInstrument {
  --instrument-highlight: #e2e4e3;
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: clamp(20px, 2vw, 30px);
  color: #c9ccca;
  background-color: #090b0c;
  font-family: var(--font-mono);
}

.TalonInstrument::after {
  content: "";
  position: absolute;
  inset: 46% 0 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(9, 11, 12, 0), #090b0c 78%);
}

.TalonInstrument > * {
  position: relative;
  z-index: 1;
}

.quote-workflow {
  display: grid;
  grid-template-columns: auto minmax(16px, 1fr) auto minmax(16px, 1fr) auto;
  align-items: center;
  margin-top: clamp(18px, 3vw, 36px);
}

.workflow-step {
  width: clamp(44px, 4.2vw, 58px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #43484a;
  color: #8e9391;
}

.workflow-step span {
  font-size: 0.55rem;
}

.workflow-step strong {
  font-size: clamp(0.55rem, 0.58vw, 0.65rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.workflow-step.is-complete {
  border-color: #8a908d;
  color: #d8dbd9;
}

.workflow-step.is-active {
  border-color: var(--instrument-highlight);
  color: var(--instrument-highlight);
}

.workflow-rule {
  height: 1px;
  background: #43484a;
}

.instrument-rows {
  margin-top: clamp(22px, 3vw, 38px);
  border-top: 1px solid #303436;
}

.instrument-rows > div,
.instrument-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid #24282a;
  font-size: clamp(0.55rem, 0.6vw, 0.68rem);
  letter-spacing: 0.05em;
}

.instrument-rows strong,
.instrument-footer strong {
  color: #e2e4e3;
  font-weight: 500;
}

.instrument-rows > div:last-child strong,
.instrument-footer strong {
  color: var(--instrument-highlight);
}

.capacity-lanes {
  margin-top: clamp(18px, 3vw, 36px);
}

.capacity-lane {
  display: grid;
  grid-template-columns: minmax(54px, 0.8fr) minmax(80px, 2fr) 34px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #24282a;
  font-size: clamp(0.55rem, 0.58vw, 0.66rem);
  letter-spacing: 0.04em;
}

.capacity-lane > div {
  height: 3px;
  background: #262a2c;
}

.capacity-lane i {
  display: block;
  height: 100%;
  background: #969c99;
}

.capacity-lane:nth-child(1) i { width: 76%; }
.capacity-lane:nth-child(2) i { width: 58%; }
.capacity-lane:nth-child(3) i { width: 91%; background: var(--instrument-highlight); }
.capacity-lane:nth-child(4) i { width: 42%; }

.capacity-lane strong {
  color: #d8dbd9;
  font-weight: 500;
  text-align: right;
}

.instrument-footer {
  margin-top: 16px;
  border-top: 1px solid #303436;
}

.quality-list {
  margin-top: clamp(18px, 3vw, 36px);
  border-top: 1px solid #303436;
}

.quality-list > div {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #24282a;
  font-size: clamp(0.55rem, 0.58vw, 0.66rem);
  letter-spacing: 0.04em;
}

.quality-list i {
  position: relative;
  width: 13px;
  height: 13px;
  border: 1px solid var(--instrument-highlight);
}

.quality-list i::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 4px;
  height: 7px;
  border-right: 1px solid var(--instrument-highlight);
  border-bottom: 1px solid var(--instrument-highlight);
  transform: rotate(45deg);
}

.quality-list strong {
  color: var(--instrument-highlight);
  font-weight: 500;
}

.quality-trace {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(22px, 3vw, 34px);
  color: #747977;
  font-size: clamp(0.48rem, 0.5vw, 0.58rem);
  letter-spacing: 0.05em;
}

.quality-trace b {
  flex: 1 1 auto;
  height: 1px;
  background: #3b4042;
}

.SupplierRow .FeaturedProductsCard .overlayer {
  background: linear-gradient(180deg, rgba(9, 11, 12, 0) 38%, rgba(9, 11, 12, 0.94) 75%, #090b0c 100%);
}

.SupplierRow .FeaturedProductsCard .content-wrapper {
  right: 0;
  padding: clamp(22px, 2vw, 30px);
}

.SupplierRow .FeaturedProductsCard .description {
  max-width: 40ch;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.9rem, 0.95vw, 1.02rem);
  line-height: 1.35;
}

/* =========================================================
   Responsive layout refinements
   ========================================================= */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #EDEDE6;
  outline-offset: 3px;
}

.HeaderAction:active,
.SupplierCTA .cta-apply:active,
.apply-button:active {
  transform: scale(0.96);
}

.FeaturedProductsCard .description,
.mission-detail,
.JoinBlock .join-copy {
  text-wrap: pretty;
}

@media (hover: none), (pointer: coarse) {
  .hardwareRow .content-wrapper {
    grid-template-rows: auto 1fr;
  }

  .hardwareRow .description {
    opacity: 1;
  }

  .hardwareRow .FeaturedProductsCard:hover .ResponsiveImage {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .navWrapper {
    padding-inline: 20px;
  }

  .SupplierRow {
    flex-direction: column;
  }

  .FeaturedIntro {
    flex-basis: auto;
    padding: 28px 12px 18px;
  }

  .FeaturedIntro .intro-text {
    max-width: 22ch;
    font-size: 1.65rem;
    letter-spacing: 0;
  }

  .FeaturedProductsCard.ghost .title,
  .FeaturedProductsCard.barracuda .title,
  .FeaturedProductsCard.lattice .title,
  .FeaturedProductsCard.fury .title,
  .FeaturedProductsCard.divexl .title {
    font-size: 1.35rem;
    letter-spacing: 0;
  }

  .FeaturedProductsCard .description {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .SupplierRow .FeaturedProductsCard .description {
    font-size: 0.88rem;
  }

  .SupplierCTA {
    padding: 24px;
  }

  .SupplierCTA .cta-copy {
    font-size: 1.4rem;
  }

  .SupplierCTA .cta-lead {
    white-space: normal;
  }

  .SupplierCTA .cta-apply {
    width: 100%;
    min-width: 0;
  }

  .NewsFeaturedSlice {
    padding: 72px 28px 64px;
  }

  .mission-statement,
  .mission-detail {
    font-size: 2.2rem;
    letter-spacing: 0;
  }

  .JoinBlock {
    min-height: 380px;
    padding: 36px;
  }

  .JoinBlock .join-copy {
    font-size: 1.45rem;
  }
}

@media (max-width: 768px) {
  :root {
    --gap: 4px;
    --header-h: 104px;
  }

  .HeaderDesktop {
    height: var(--header-h);
  }

  .navWrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 10px;
    padding: 10px max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left));
  }

  .left-wrapper {
    display: flex;
    align-items: center;
  }

  .center-wrapper {
    display: none;
  }

  .right-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .HeaderAction {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.75rem;
  }

  .menu-button {
    display: none;
  }

  .HomeHero {
    height: 88svh;
    min-height: 540px;
    max-height: 780px;
  }

  .HomeHero video {
    object-position: 58% center;
  }

  .hero-content {
    padding: 24px 20px 32px;
  }

  .hero-title {
    max-width: 16ch;
    font-size: 1.75rem;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .hero-subtext {
    margin-top: 10px;
    font-size: 1rem;
  }

  .FeaturedWrap {
    gap: var(--gap);
    padding: var(--gap);
  }

  .SupplierRow {
    gap: var(--gap);
  }

  .FeaturedIntro {
    padding: 26px 16px 18px;
  }

  .FeaturedIntro .intro-text {
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--gap);
  }

  .FeaturedProductsCard.ghost,
  .FeaturedProductsCard.barracuda,
  .FeaturedProductsCard.lattice,
  .FeaturedProductsCard.menace,
  .FeaturedProductsCard.divexl,
  .FeaturedProductsCard.fury,
  .SupplierCTA {
    grid-column: 1;
    grid-row: auto;
  }

  .FeaturedProductsCard.ghost,
  .FeaturedProductsCard.barracuda,
  .FeaturedProductsCard.lattice,
  .FeaturedProductsCard.menace,
  .FeaturedProductsCard.divexl {
    aspect-ratio: 1 / 1;
  }

  .FeaturedProductsCard.fury {
    aspect-ratio: 4 / 3;
  }

  .FeaturedProductsCard .content-wrapper,
  .SupplierRow .FeaturedProductsCard .content-wrapper {
    right: 0;
    padding: 20px;
  }

  .FeaturedProductsCard.ghost .title,
  .FeaturedProductsCard.barracuda .title,
  .FeaturedProductsCard.lattice .title,
  .FeaturedProductsCard.fury .title,
  .FeaturedProductsCard.divexl .title {
    font-size: 1.4rem;
    line-height: 1.1;
  }

  .FeaturedProductsCard .description,
  .SupplierRow .FeaturedProductsCard .description {
    max-width: 36ch;
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .hardwareRow .content-wrapper {
    grid-template-rows: auto 1fr;
  }

  .hardwareRow .description {
    opacity: 1;
  }

  .TalonInstrument {
    padding: 20px;
  }

  .SupplierCTA {
    min-height: 300px;
    margin-right: 0;
    padding: 24px;
  }

  .SupplierCTA .cta-copy {
    font-size: 1.45rem;
    line-height: 1.3;
  }

  .SupplierCTA .cta-detail {
    margin-top: 14px;
  }

  .SupplierCTA .cta-apply {
    align-self: stretch;
    min-height: 52px;
  }

  .NewsFeaturedSlice {
    padding: 64px 20px 20px;
  }

  .MissionSection {
    min-height: auto;
  }

  .MissionBlock {
    max-width: 100%;
  }

  .mission-statement {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .mission-detail {
    margin-top: 22px;
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .JoinBlock {
    position: static;
    width: 100%;
    min-height: 340px;
    margin-top: 56px;
    padding: 28px;
  }

  .JoinBlock .join-copy {
    font-size: 1.35rem;
    line-height: 1.35;
  }

  .apply-button {
    width: 100%;
    min-height: 52px;
  }

  .Footer {
    padding: 48px 20px max(24px, env(safe-area-inset-bottom));
  }

  .footer-inner {
    gap: 40px;
  }

  .footer-main {
    align-items: flex-start;
    gap: 28px;
  }

  .footer-connect {
    width: 100%;
  }

  .footer-email {
    max-width: 100%;
    font-size: 1rem;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

@media (max-width: 420px) {
  .wordmark {
    font-size: 17px;
  }

  .HeaderAction {
    padding-inline: 6px;
    font-size: 0.7rem;
  }

  .HomeHero {
    min-height: 520px;
  }

  .hero-content {
    padding-inline: 16px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .FeaturedIntro {
    padding-inline: 14px;
  }

  .FeaturedProductsCard .content-wrapper,
  .SupplierRow .FeaturedProductsCard .content-wrapper {
    padding: 18px;
  }

  .FeaturedProductsCard.ghost .title,
  .FeaturedProductsCard.barracuda .title,
  .FeaturedProductsCard.lattice .title,
  .FeaturedProductsCard.fury .title,
  .FeaturedProductsCard.divexl .title {
    font-size: 1.3rem;
  }

  .FeaturedProductsCard .description,
  .SupplierRow .FeaturedProductsCard .description {
    font-size: 0.9rem;
  }

  .TalonInstrument {
    padding: 16px;
  }

  .SupplierCTA {
    min-height: 280px;
    padding: 20px;
  }

  .SupplierCTA .cta-copy {
    font-size: 1.25rem;
  }

  .SupplierCTA .cta-apply {
    font-size: 0.86rem;
  }

  .NewsFeaturedSlice {
    padding-inline: 16px;
  }

  .mission-statement {
    font-size: 1.65rem;
  }

  .mission-detail {
    font-size: 1.3rem;
  }

  .JoinBlock {
    min-height: 320px;
    padding: 24px;
  }

  .JoinBlock .join-copy {
    font-size: 1.2rem;
  }

  .Footer {
    padding-inline: 16px;
  }

  .footer-email {
    font-size: 0.9rem;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  :root {
    --gap: 6px;
    --header-h: 64px;
  }

  .HeaderDesktop {
    height: var(--header-h);
  }

  .navWrapper {
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr;
    align-content: center;
    gap: 20px;
    padding: 0 20px;
  }

  .right-wrapper {
    width: auto;
    display: flex;
  }

  .HeaderAction {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 0.75rem;
  }

  .HomeHero {
    height: 90svh;
    min-height: 600px;
    max-height: 780px;
  }

  .hero-title {
    max-width: 18ch;
    font-size: 2.1rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hardwareRow .FeaturedProductsCard:nth-child(1),
  .SupplierRow .FeaturedProductsCard:nth-child(1) {
    grid-column: 1;
  }

  .hardwareRow .FeaturedProductsCard:nth-child(2),
  .SupplierRow .FeaturedProductsCard:nth-child(2) {
    grid-column: 2;
  }

  .hardwareRow .FeaturedProductsCard:nth-child(3),
  .SupplierRow .FeaturedProductsCard:nth-child(3) {
    grid-column: 1 / span 2;
    aspect-ratio: 2 / 1;
  }

  .FeaturedProducts > .cards-grid .FeaturedProductsCard.fury,
  .FeaturedProducts > .cards-grid .SupplierCTA {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  .FeaturedProducts > .cards-grid .FeaturedProductsCard.fury {
    aspect-ratio: 2 / 1;
  }

  .SupplierCTA {
    min-height: 280px;
  }

  .FeaturedProductsCard .content-wrapper,
  .SupplierRow .FeaturedProductsCard .content-wrapper {
    padding: 24px;
  }

  .FeaturedProductsCard.ghost .title,
  .FeaturedProductsCard.barracuda .title,
  .FeaturedProductsCard.lattice .title,
  .FeaturedProductsCard.fury .title,
  .FeaturedProductsCard.divexl .title {
    font-size: 1.45rem;
  }

  .FeaturedProductsCard .description,
  .SupplierRow .FeaturedProductsCard .description {
    font-size: 0.94rem;
  }

  .NewsFeaturedSlice {
    padding: 72px 24px 24px;
  }

  .MissionSection {
    min-height: auto;
  }

  .MissionBlock {
    max-width: 100%;
  }

  .mission-statement {
    font-size: 2.1rem;
  }

  .mission-detail {
    font-size: 1.65rem;
  }

  .JoinBlock {
    position: static;
    width: 100%;
    min-height: 340px;
    margin-top: 64px;
    padding: 36px;
  }

  .apply-button {
    min-height: 52px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  :root {
    --header-h: 60px;
  }

  .navWrapper {
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr;
    gap: 16px;
    padding-block: 8px;
  }

  .right-wrapper {
    width: auto;
    display: flex;
  }

  .HeaderAction {
    min-height: 36px;
  }

  .HomeHero {
    height: 100svh;
    min-height: 360px;
  }

  .hero-content {
    padding-bottom: 24px;
  }
}

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

  .hardwareRow .ResponsiveImage,
  .hardwareRow .content-wrapper,
  .hardwareRow .description,
  .SupplierCTA .cta-arrow,
  .HeaderAction,
  .SupplierCTA .cta-apply,
  .apply-button {
    transition-duration: 0.01ms;
  }
}
