:root {
  --ink: #07111f;
  --ink-2: #0d1a2b;
  --ink-3: #142236;
  --paper: #f5f7fb;
  --white: #ffffff;
  --muted: #6d7787;
  --muted-2: #a9b4c4;
  --line: rgba(12, 27, 45, .12);
  --line-dark: rgba(255, 255, 255, .12);
  --steel: #2d5f88;
  --steel-2: #47a0c9;
  --copper: #c88b4a;
  --copper-2: #e2b16f;
  --green: #1f9d74;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 28px 80px rgba(7, 17, 31, .16);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12, 27, 45, .08);
  transition: box-shadow .25s ease, background .25s ease;
}

.header-rail {
  height: 3px;
  background: linear-gradient(90deg, var(--ink), var(--steel-2) 48%, var(--copper) 74%, var(--ink));
}

.site-header.is-scrolled {
  box-shadow: 0 16px 50px rgba(7, 17, 31, .09);
}

.topbar {
  background: linear-gradient(90deg, var(--ink), #102138);
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
}

.ticker {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--copper-2);
  box-shadow: 0 0 12px rgba(226, 177, 111, .75);
  flex: 0 0 auto;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  color: rgba(255, 255, 255, .78);
  font-weight: 650;
}

.ticker-track strong {
  color: var(--copper-2);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.topbar-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  flex: 0 0 auto;
  white-space: nowrap;
}

.topbar-standard,
.topbar-download {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 14px;
  line-height: 1;
  white-space: nowrap;
}

.topbar-standard {
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 850;
}

.topbar-standard-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(31, 157, 116, .16);
  flex: 0 0 auto;
}

.topbar-download {
  color: #07111f;
  background: var(--copper-2);
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 -1px 0 rgba(7, 17, 31, .16);
}

.nav {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  width: 179px;
  height: 74px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: none;
}

.site-header .brand > span {
  display: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: -.02em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: 0;
}

.nav-links a {
  position: relative;
  padding: 10px 14px;
  border-radius: 10px;
  color: #233248;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--copper-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav-links a:hover {
  background: rgba(45, 95, 136, .08);
  color: var(--steel);
}

.nav-links a[aria-current="page"] {
  background: rgba(45, 95, 136, .1);
  color: var(--steel);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(45, 95, 136, .055);
  color: #29384c;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.trust-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 157, 116, .12);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta {
  margin-left: auto;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--steel), #183a59);
  box-shadow: 0 14px 32px rgba(45, 95, 136, .25);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
}

.button.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
}

.button.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .96) 0%, rgba(7, 17, 31, .76) 42%, rgba(7, 17, 31, .22) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, .92) 0%, rgba(7, 17, 31, .08) 48%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(320px, 420px);
  gap: 60px;
  align-items: end;
  padding: 148px 0 78px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 900;
}

.hero h1,
.section h2,
.quote-section h2 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.hero h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 52px);
  max-width: 760px;
}

.hero-lede {
  color: rgba(255, 255, 255, .76);
  max-width: 630px;
  margin: 26px 0 0;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-panel {
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(12, 27, 45, .66);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.hero-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 177, 111, .34);
  background: rgba(12, 27, 45, .74);
}

.panel-kicker,
.product-card span,
.resource-label {
  display: inline-block;
  color: var(--steel-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  letter-spacing: -.03em;
  line-height: 1.12;
}

.hero-panel p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.65;
}

.hero-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hero-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .76);
  font-weight: 750;
  line-height: 1.35;
}

.hero-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--copper-2);
  box-shadow: 0 0 0 5px rgba(226, 177, 111, .12);
  flex: 0 0 auto;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.panel-metrics span {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  line-height: 1.35;
}

.panel-metrics b {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 6px;
}

.product-strip {
  background: #fff;
  border-bottom: 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  background: transparent;
  padding: 18px 0;
}

.strip-grid img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  mix-blend-mode: normal;
}

.section {
  padding: 108px 0;
}

.two-col {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 80px;
  align-items: start;
}

.intro {
  padding-bottom: 48px;
}

.intro + .section {
  padding-top: 64px;
}

.section h2,
.quote-section h2 {
  font-size: clamp(24px, 3.85vw, 54px);
}

.intro-copy p,
.section-copy,
.quality-panel p,
.quote-section p,
.resource-grid p,
.product-card p,
.application-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.proof-grid div {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.proof-grid b {
  display: block;
  font-size: 28px;
  letter-spacing: -.05em;
}

.proof-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 6px;
}

.products {
  background: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-head.light h2,
.section-head.light p {
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(7, 17, 31, .06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 95, 136, .22);
  box-shadow: 0 24px 70px rgba(7, 17, 31, .12);
}

.product-card:not(.feature-card) {
  padding: 18px;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: transparent;
  border-radius: 18px;
  padding: 8px;
  margin-bottom: 22px;
  mix-blend-mode: multiply;
  transition: transform .35s ease, filter .35s ease;
}

.product-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.feature-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  padding: 18px;
  gap: 26px;
  align-items: center;
  background: linear-gradient(135deg, #f8fbff, #fff);
}

.feature-card img {
  height: 360px;
  object-fit: cover;
  padding: 0;
  margin: 0;
  mix-blend-mode: normal;
}

.product-card h3 {
  margin: 10px 0 10px;
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.feature-card h3 {
  font-size: clamp(20px, 3.2vw, 42px);
}

.product-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--steel);
  font-weight: 900;
  transition: color .2s ease, transform .2s ease;
}

.product-card a:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.applications {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.applications::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.applications .container {
  position: relative;
  z-index: 1;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.application-card {
  min-height: 280px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .055);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.application-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 177, 111, .32);
  background: rgba(255, 255, 255, .082);
}

.application-card span {
  color: var(--copper-2);
  font-weight: 900;
}

.application-card h3 {
  color: #fff;
  margin: 70px 0 12px;
  font-size: 16px;
  letter-spacing: -.025em;
}

.application-card p {
  color: rgba(255, 255, 255, .62);
}

.engineering-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 86px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.stack-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.floating-spec {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border-radius: 20px;
  color: #fff;
  background: rgba(7, 17, 31, .82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .14);
}

.floating-spec span {
  display: block;
  color: var(--copper-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.floating-spec strong {
  font-size: 18px;
  line-height: 1.15;
}

.check-list {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.check-list div {
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.check-list b,
.check-list span {
  display: block;
}

.check-list b {
  margin-bottom: 6px;
}

.check-list span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.quality {
  padding-top: 0;
}

.quality-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  padding: 58px;
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(45,95,136,.9), rgba(7,17,31,.97)),
    url("https://stanleybearings.com/wp-content/uploads/2026/06/laminazione_01.jpg") center / cover;
  box-shadow: var(--shadow);
}

.quality-panel p {
  color: rgba(255, 255, 255, .72);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.timeline span {
  grid-row: span 2;
  color: var(--copper-2);
  font-weight: 900;
}

.timeline b {
  color: #fff;
}

.timeline small {
  color: rgba(255, 255, 255, .64);
  line-height: 1.5;
}

.resources {
  padding-top: 0;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.resource-grid article {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.resource-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 95, 136, .2);
  box-shadow: 0 22px 58px rgba(7, 17, 31, .1);
}

.resource-grid h3 {
  margin: 12px 0;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.culture-grid,
.catalog-map,
.family-grid,
.data-grid,
.code-grid,
.application-map,
.appendix-grid {
  display: grid;
  gap: 16px;
}

.culture-grid {
  grid-template-columns: repeat(6, 1fr);
}

.culture-pill {
  min-height: 128px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 22px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--ink), var(--steel));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 48px rgba(7, 17, 31, .12);
}

.catalog-map {
  grid-template-columns: .8fr 1.2fr;
  align-items: stretch;
}

.catalog-cover {
  padding: 34px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,17,31,.94), rgba(45,95,136,.76)),
    url("https://stanleybearings.com/wp-content/uploads/2026/06/only_bearing_image_in_white_202606170916-2.png") center bottom / contain no-repeat,
    #07111f;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalog-cover h2 {
  color: #fff;
  font-size: clamp(24px, 3.5vw, 48px);
}

.catalog-cover p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.catalog-card,
.family-card,
.data-panel,
.code-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(7,17,31,.055);
}

.catalog-card,
.family-card,
.data-panel,
.code-card {
  padding: 24px;
}

.catalog-list {
  display: grid;
  gap: 12px;
}

.catalog-row {
  display: grid;
  grid-template-columns: 110px minmax(340px, .88fr) minmax(380px, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 126px;
  padding: 24px 28px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid rgba(12, 27, 45, .08);
}

.catalog-row b {
  color: var(--steel);
  font-size: 20px;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
}

.catalog-row strong {
  color: #07111f;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.16;
  letter-spacing: -.04em;
}

.catalog-row span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  max-width: 560px;
}

.engineering .catalog-map {
  grid-template-columns: minmax(240px, 20%) minmax(0, 60%);
  justify-content: center;
  gap: 28px;
}

.engineering .catalog-cover {
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
}

.engineering .catalog-cover h2 {
  font-size: clamp(28px, 2.8vw, 42px);
}

.engineering .catalog-cover p {
  font-size: 14px;
  line-height: 1.62;
}

.engineering .catalog-row {
  grid-template-columns: 92px minmax(220px, .85fr) minmax(260px, 1fr);
  min-height: 112px;
  padding: 20px 24px;
}

.engineering .catalog-row strong {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.18;
}

.engineering .catalog-row span {
  font-size: 13px;
  line-height: 1.32;
}

.family-grid {
  grid-template-columns: repeat(3, 1fr);
}

.family-card {
  display: grid;
  gap: 16px;
}

.family-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  border-radius: 18px;
  background: transparent;
  padding: 8px;
  mix-blend-mode: multiply;
}

.family-card h3,
.data-panel h3,
.code-card h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.family-card p,
.data-panel p,
.code-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(45, 95, 136, .08);
  color: #334155;
  font-size: 12px;
  font-weight: 850;
}

.data-grid {
  grid-template-columns: repeat(3, 1fr);
}

.data-panel.feature {
  grid-column: span 2;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.metric-strip div {
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(12, 27, 45, .08);
}

.metric-strip b {
  display: block;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -.04em;
}

.metric-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  margin-top: 5px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 13px;
}

.data-table th {
  background: #d9edf8;
  color: #162235;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

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

.code-card {
  display: grid;
  gap: 16px;
}

.code-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.code-flow span {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(71, 160, 201, .32);
  background: rgba(71, 160, 201, .08);
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
}

.application-map {
  grid-template-columns: repeat(4, 1fr);
}

.appendix-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mini-card {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.mini-card b,
.mini-card span {
  display: block;
}

.mini-card b {
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.mini-card span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.site-modal.is-open {
  display: flex;
}

.site-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 20, .72);
  backdrop-filter: blur(12px);
}

.site-modal__panel {
  position: relative;
  width: min(640px, 100%);
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 36px 120px rgba(0,0,0,.35);
}

.site-modal__panel h2 {
  margin: 0;
  font-size: clamp(20px, 3.45vw, 34px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.site-modal__panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.site-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.site-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.modal-open {
  overflow: hidden;
}

.quote-section {
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
  padding: 120px 0;
  color: #fff;
  background: radial-gradient(circle at 20% 0%, rgba(71,160,201,.24), transparent 30%), var(--ink);
  scroll-margin-top: 132px;
}

.quote-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.quote-section p {
  color: rgba(255, 255, 255, .68);
  max-width: 560px;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
}

.contact-card a {
  color: var(--copper-2);
  font-weight: 900;
}

.contact-card span {
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .34);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(12, 27, 45, .14);
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 4px rgba(45, 95, 136, .1);
}

.span-2 {
  grid-column: span 2;
}

.quote-form .button {
  width: 100%;
  border: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  padding: 108px 0 72px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,31,.95), rgba(7,17,31,.72), rgba(7,17,31,.3)),
    var(--page-image, url("https://stanleybearings.com/wp-content/uploads/2026/06/laminazione_01.jpg")) center / cover;
  filter: saturate(.92);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(21px, 3.65vw, 44px);
  line-height: 1.04;
  letter-spacing: -.044em;
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
  line-height: 1.72;
  margin: 22px 0 0;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(7,17,31,.055);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 95, 136, .2);
  box-shadow: 0 22px 62px rgba(7,17,31,.105);
}

.info-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  border-radius: 18px;
  background: transparent;
  padding: 8px;
  mix-blend-mode: multiply;
  margin-bottom: 20px;
  transition: transform .35s ease, filter .35s ease;
}

.info-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.13;
  letter-spacing: -.035em;
}

.info-card p,
.info-card li {
  color: var(--muted);
  line-height: 1.68;
}

.info-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.wide-band {
  border-radius: 30px;
  padding: 44px;
  color: #fff;
  background: linear-gradient(135deg, var(--steel), var(--ink));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.wide-band p {
  color: rgba(255,255,255,.72);
  line-height: 1.72;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  color: #334155;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.spec-table td {
  color: var(--muted);
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 44px 0 30px;
  background:
    radial-gradient(circle at 16% 0%, rgba(45, 95, 136, .32), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(226, 177, 111, .18), transparent 28%),
    #050b14;
  color: #fff;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 177, 111, .7), transparent);
  pointer-events: none;
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 36px 40px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(45, 95, 136, .94), rgba(5, 11, 20, .88)),
    url("https://stanleybearings.com/wp-content/uploads/2026/06/ACB-four-row-cylindrical-roller-bearings-location.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .26);
  overflow: hidden;
}

.footer-cta::after {
  content: "";
  position: absolute;
  inset: auto 42px 0 auto;
  width: 160px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--copper-2));
  opacity: .95;
}

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

.footer-cta .eyebrow {
  margin-bottom: 10px;
}

.footer-cta h2 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(18px, 2.7vw, 32px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.footer-cta .button {
  min-width: 210px;
  box-shadow: 0 16px 36px rgba(5, 11, 20, .28);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  margin-top: 34px;
  padding: 38px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand .brand-logo {
  width: 190px;
  height: 62px;
}

.footer .brand small,
.footer p,
.footer-bottom {
  color: rgba(255, 255, 255, .56);
}

.footer p {
  max-width: 360px;
  line-height: 1.7;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.footer-pills span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
}

.footer h4 {
  margin: 0 0 16px;
  color: var(--copper-2);
  font-size: 15px;
  letter-spacing: .04em;
}

.footer-grid a:not(.brand) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, .66);
  margin: 11px 0;
  font-size: 14px;
  transition: color .2s ease, transform .2s ease;
}

.footer-grid a:not(.brand)::after {
  content: "›";
  color: rgba(226, 177, 111, .78);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .2s ease;
}

.footer-grid a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-grid a:not(.brand):hover::after {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .025);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 980px) {
  .topbar-links,
  .nav-cta,
  .trust-badge {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 121px;
    left: 20px;
    right: 20px;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .brand {
    max-width: calc(100% - 62px);
  }

  .site-header .brand-logo {
    width: 147px;
    height: 61px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .two-col,
  .engineering-grid,
  .quality-panel,
  .quote-grid,
  .feature-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 110px;
  }

  .product-grid,
  .application-grid,
  .resource-grid,
  .footer-grid,
  .page-grid,
  .culture-grid,
  .family-grid,
  .data-grid,
  .code-grid,
  .application-map,
  .appendix-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-map {
    grid-template-columns: 1fr;
  }

  .engineering .catalog-map {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .engineering .catalog-row {
    grid-template-columns: 86px minmax(220px, 1fr) minmax(240px, 1fr);
  }

  .data-panel.feature {
    grid-column: span 2;
  }

  .footer-cta {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: span 2;
  }

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

@media (max-width: 640px) {
  html {
    scroll-padding-top: 86px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 72px;
    gap: 12px;
  }

  .nav-links {
    top: 78px;
    left: 14px;
    right: 14px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 128px;
    height: 53px;
    border-radius: 0;
  }

  .brand span:last-child {
    min-width: 0;
  }

  .brand strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.04;
  }

  .hero-grid {
    padding: 88px 0 42px;
    gap: 34px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .page-hero {
    padding: 74px 0 52px;
  }

  .page-hero h1 {
    font-size: 23px;
    line-height: 1.07;
    letter-spacing: -.036em;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .panel-metrics,
  .proof-grid,
  .product-grid,
  .application-grid,
  .resource-grid,
  .footer-grid,
  .quote-form,
  .strip-grid,
  .culture-grid,
  .family-grid,
  .data-grid,
  .code-grid,
  .application-map,
  .appendix-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: span 1;
  }

  .data-panel.feature {
    grid-column: span 1;
  }

  .span-2 {
    grid-column: span 1;
  }

  .section,
  .quote-section {
    padding: 72px 0;
  }

  .quote-section {
    min-height: auto;
    align-items: stretch;
    padding: 86px 0 72px;
    scroll-margin-top: 86px;
  }

  .quality-panel {
    padding: 28px;
  }

  .wide-band {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .catalog-row {
    grid-template-columns: 1fr;
    gap: 7px;
    min-height: auto;
    padding: 20px;
  }

  .catalog-row b {
    font-size: 16px;
  }

  .catalog-row strong {
    font-size: 22px;
  }

  .catalog-row span {
    font-size: 14px;
  }

  .engineering .catalog-map,
  .engineering .catalog-row {
    grid-template-columns: 1fr;
  }

  .engineering .catalog-cover {
    min-height: auto;
  }

  .catalog-cover,
  .catalog-card,
  .family-card,
  .data-panel,
  .code-card,
  .site-modal__panel {
    padding: 22px;
    border-radius: 22px;
  }

  .site-modal__actions {
    flex-direction: column;
  }

  .site-modal__actions .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-brand .brand-logo {
    width: 164px;
    height: 54px;
  }

  .footer {
    padding-top: 30px;
  }

  .footer-cta,
  .footer-grid {
    padding: 24px;
    border-radius: 24px;
  }

  .footer-cta .button {
    width: 100%;
  }
}
