:root {
  --blue: #114abf;
  --blue-strong: #0b3491;
  --ink: #111827;
  --muted: #5c6675;
  --line: #d7e0ec;
  --soft: #eef3f8;
  --panel: #ffffff;
  --steel: #778392;
  --signal: #d8ff45;
  --ice: #f8fbff;
  --metal: #e7edf5;
  --shadow: 0 22px 60px rgba(17, 74, 191, 0.13);
  --radius: 8px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7fafc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0;
}

.site-shell {
  overflow: hidden;
  padding-top: 74px;
  background:
    radial-gradient(circle at 8% 12%, rgba(17, 74, 191, 0.1), transparent 26%),
    radial-gradient(circle at 94% 28%, rgba(75, 93, 112, 0.1), transparent 24%),
    linear-gradient(115deg, transparent 0 46%, rgba(17, 74, 191, 0.045) 46% 46.4%, transparent 46.4%),
    linear-gradient(90deg, rgba(17, 74, 191, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 74, 191, 0.035) 1px, transparent 1px),
    #f7fafc;
  background-size: auto, auto, 100% 100%, 78px 78px, 78px 78px, auto;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background:
    linear-gradient(90deg, rgba(17, 74, 191, 0.08), transparent 28%, rgba(17, 74, 191, 0.06)),
    rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 229, 238, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(17, 74, 191, 0.12), var(--blue));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 156px;
}

.brand img {
  width: 112px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.nav-links a {
  position: relative;
  padding: 10px 13px;
  color: #2c3442;
  font-size: 14px;
  font-weight: 760;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  letter-spacing: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: #fff;
  font-weight: 760;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 74, 191, 0.22);
  background: var(--blue-strong);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  border-color: rgba(17, 74, 191, 0.22);
}

.btn.ghost:hover {
  background: #fff;
  border-color: rgba(17, 74, 191, 0.48);
}

.btn.light {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.btn.line {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(6, 15, 31, 0.86), rgba(6, 15, 31, 0.58) 46%, rgba(17, 74, 191, 0.18)),
    linear-gradient(135deg, rgba(216, 255, 69, 0.2), transparent 22%),
    url("https://storage.googleapis.com/cg-webase/media/1780138267427-6336d305.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 128px;
  background: linear-gradient(180deg, transparent, rgba(247, 250, 252, 0.98));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 56%, rgba(255, 255, 255, 0.12) 56% 56.25%, transparent 56.25%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 82px 82px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 690px);
  padding: 96px 0 136px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 span,
.text-block h2 span {
  display: block;
}

.hero .lead {
  max-width: 690px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.1vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 1px;
  width: min(900px, 100%);
  margin-top: 50px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-stat {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
}

.hero-stat strong {
  display: block;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 70%, rgba(17, 74, 191, 0.035) 70% 70.35%, transparent 70.35%);
  pointer-events: none;
}

.section > .wrap {
  position: relative;
  z-index: 1;
}

.section.compact {
  padding: 68px 0;
}

.section.blue-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.97), rgba(7, 24, 61, 0.95)),
    url("https://storage.googleapis.com/cg-webase/media/1780138267338-ca78258e.webp");
  background-position: center;
  background-size: cover;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 42px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(17, 74, 191, 0.12);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-title p {
  color: var(--muted);
  font-size: 16px;
}

.blue-band .section-title p,
.blue-band .eyebrow,
.blue-band .feature-list li,
.blue-band .muted {
  color: rgba(255, 255, 255, 0.78);
}

.blue-band .eyebrow::before {
  background: var(--signal);
}

.blue-band .eyebrow {
  color: var(--signal);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #f2f6fb);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.metric {
  padding: 28px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.07), transparent 38%),
    #fff;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: linear-gradient(135deg, rgba(17, 74, 191, 0.32), var(--line));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.innovation {
  min-height: 318px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.06), transparent 34%),
    #fff;
}

.innovation .number {
  color: var(--blue);
  font-weight: 850;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.innovation h3 {
  margin: 34px 0 18px;
  font-size: 26px;
  line-height: 1.15;
}

.innovation p {
  color: var(--muted);
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.product-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: #364152;
  font-weight: 720;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-tabs button.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.product-tabs button:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 74, 191, 0.32);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

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

.product-card,
.blog-card,
.case-card,
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card,
.blog-card,
.case-card,
.service-card,
.contact-panel,
.side-panel,
.machine-panel,
.spec-table {
  position: relative;
}

.product-card::before,
.blog-card::before,
.case-card::before,
.service-card::before,
.contact-panel::before,
.side-panel::before,
.machine-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(17, 74, 191, 0.08));
  pointer-events: none;
}

.product-card:hover,
.blog-card:hover,
.case-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 74, 191, 0.25);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
}

.product-card:hover .product-media img,
.blog-card:hover img {
  transform: scale(1.035);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 246px;
  padding: 18px;
  background: #fff;
  border-bottom: 1px solid rgba(215, 224, 236, 0.7);
}

.product-media img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  transition: transform 260ms ease;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-body h2,
.product-body h3 {
  margin: 0 0 12px;
  min-height: 54px;
  font-size: 22px;
  line-height: 1.2;
}

.product-body p {
  min-height: 68px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  align-items: flex-start;
  gap: 8px;
  min-height: 40px;
  margin: 14px 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--blue);
  background: rgba(17, 74, 191, 0.08);
  border: 1px solid rgba(17, 74, 191, 0.15);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 760;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.tag:hover {
  transform: translateY(-1px);
  background: rgba(17, 74, 191, 0.12);
  border-color: rgba(17, 74, 191, 0.28);
}

.card-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-weight: 800;
  transition: color 180ms ease;
}

.card-link:hover {
  color: var(--blue-strong);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 58px;
  align-items: center;
}

.machine-panel {
  position: relative;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.08), transparent 42%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.machine-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 68px rgba(17, 74, 191, 0.18);
}

.machine-panel img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
}

.machine-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 1px;
  background: linear-gradient(90deg, rgba(17, 74, 191, 0.25), var(--line));
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.machine-note span {
  padding: 14px;
  background: #f8fbff;
  color: var(--muted);
  font-size: 13px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--blue);
  background: #fff;
}

.page-hero {
  position: relative;
  padding: 94px 0 76px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(248, 251, 255, 0.98), rgba(248, 251, 255, 0.82) 54%, rgba(17, 74, 191, 0.2)),
    linear-gradient(135deg, transparent 0 62%, rgba(17, 74, 191, 0.14) 62% 62.4%, transparent 62.4%),
    url("https://storage.googleapis.com/cg-webase/media/1780138267338-ca78258e.webp");
  background-position: center;
  background-size: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), rgba(17, 74, 191, 0.06));
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

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

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(17, 74, 191, 0.28), var(--line));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.featured-media {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.06), transparent 42%),
    #fff;
}

.featured-media img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  transition: transform 260ms ease;
}

.featured-post:hover .featured-media img {
  transform: scale(1.03);
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.08), transparent 38%),
    #fff;
}

.featured-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
}

.featured-copy p {
  margin-bottom: 26px;
  color: var(--muted);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.045), transparent 48%),
    #fff;
  transition: transform 260ms ease;
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 14px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-body h2,
.blog-body h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.22;
}

.blog-body p {
  color: var(--muted);
  font-size: 14px;
}

.case-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card,
.service-card {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.055), transparent 42%),
    #fff;
}

.case-card strong,
.service-card strong {
  display: block;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-card h3,
.service-card h3 {
  margin: 16px 0 10px;
  font-size: 24px;
}

.case-card p,
.service-card p {
  color: var(--muted);
}

.blue-band .service-card {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.07), transparent 42%),
    #fff;
}

.blue-band .service-card h3 {
  color: var(--ink);
}

.blue-band .service-card p {
  color: #43546b;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: stretch;
}

.contact-panel {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.07), transparent 42%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #303948;
  font-size: 13px;
  font-weight: 760;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fdfefe;
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(17, 74, 191, 0.55);
  box-shadow: 0 0 0 4px rgba(17, 74, 191, 0.1);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

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

.spec-table th {
  width: 32%;
  color: #2f3745;
  background:
    linear-gradient(90deg, rgba(17, 74, 191, 0.08), transparent),
    #f8fafc;
  font-size: 13px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
}

.article {
  background: transparent;
}

.article > img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article.product-detail > img {
  object-fit: contain;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.article-content {
  padding: 34px 0 0;
}

.article-content h2,
.article-content h3 {
  margin: 36px 0 14px;
  line-height: 1.18;
}

.article-content h2 {
  font-size: 30px;
}

.article-content h3 {
  font-size: 22px;
}

.article-content p {
  margin-bottom: 16px;
  color: var(--muted);
}

.article-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--muted);
}

.side-panel {
  position: sticky;
  top: 100px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.07), transparent 42%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.side-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 74, 191, 0.25);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.side-panel h2,
.side-panel h3 {
  margin: 0 0 14px;
  font-size: 21px;
}

.side-panel p {
  color: var(--muted);
  font-size: 14px;
}

.side-panel .btn {
  width: 100%;
  margin-top: 18px;
}

.timeline {
  display: grid;
  border-top: 1px solid rgba(17, 74, 191, 0.18);
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 74, 191, 0.12);
}

.timeline-item strong {
  color: var(--blue);
  font-size: 22px;
}

.timeline-item h3 {
  margin: 0 0 6px;
}

.timeline-item p {
  color: var(--muted);
}

.footer {
  padding: 58px 0 26px;
  color: #d9e2ef;
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #101722;
  background-size: auto, 78px 78px, auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 0.55fr 0.8fr;
  gap: 32px;
}

.footer img {
  width: 116px;
  margin-bottom: 18px;
}

.footer img.footer-logo {
  width: 210px;
  max-width: 100%;
}

.footer p,
.footer a,
.footer li {
  color: #aeb8c7;
  font-size: 14px;
}

.footer a {
  transition: color 180ms ease;
}

.footer a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

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

.product-card.reveal.is-visible:hover,
.blog-card.reveal.is-visible:hover,
.case-card.reveal.is-visible:hover,
.service-card.reveal.is-visible:hover {
  transform: translateY(-6px);
}

.machine-panel.reveal.is-visible:hover,
.side-panel.reveal.is-visible:hover {
  transform: translateY(-5px);
}

.hero .eyebrow,
.hero h1,
.hero .lead,
.hero-actions,
.hero-stats {
  opacity: 0;
  transform: translateY(22px);
  animation: heroRise 760ms ease forwards;
}

.hero h1 {
  animation-delay: 100ms;
}

.hero .lead {
  animation-delay: 200ms;
}

.hero-actions {
  animation-delay: 300ms;
}

.hero-stats {
  animation-delay: 420ms;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .hero .eyebrow,
  .hero h1,
  .hero .lead,
  .hero-actions,
  .hero-stats {
    opacity: 1 !important;
    transform: none !important;
  }
}

.footer h2,
.footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
}

.footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f9aab;
  font-size: 13px;
}

.muted {
  color: var(--muted);
}

.soft-bg {
  background:
    linear-gradient(135deg, rgba(17, 74, 191, 0.07), transparent 38%),
    linear-gradient(90deg, rgba(17, 74, 191, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 74, 191, 0.035) 1px, transparent 1px),
    var(--soft);
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.text-block h2 {
  margin: 0 0 22px;
  font-size: clamp(31px, 3.7vw, 48px);
  line-height: 1.12;
}

.text-block p {
  color: var(--muted);
  margin-bottom: 16px;
}

.two-column-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 980px) {
  .site-shell {
    padding-top: 66px;
  }

  .nav {
    min-height: 66px;
  }

  .nav {
    gap: 14px;
  }

  .nav-links {
    justify-content: flex-end;
    gap: 2px;
  }

  .nav-links a {
    padding: 8px 8px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 86px 0 116px;
  }

  .hero-stats,
  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title,
  .split,
  .contact-band,
  .detail-layout,
  .featured-post,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .blog-grid,
  .case-grid,
  .service-grid,
  .innovation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-panel {
    position: static;
  }

  .featured-media {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 94px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }

  .nav-links {
    order: 2;
    flex-basis: 100%;
    justify-content: center;
  }

  .nav-links a {
    padding: 7px 7px;
    font-size: 12px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero .lead,
  .page-hero .lead {
    font-size: 16px;
  }

  .hero-stats,
  .metrics-row,
  .product-grid,
  .blog-grid,
  .case-grid,
  .service-grid,
  .innovation-grid,
  .machine-note,
  .two-column-copy {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .section.compact {
    padding: 52px 0;
  }

  .innovation {
    min-height: auto;
  }

  .featured-media {
    min-height: 240px;
    padding: 22px;
  }

  .featured-media img {
    height: 220px;
  }

  .featured-copy {
    padding: 28px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .text-block h2 span {
    display: inline;
  }

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