:root {
  --bg: #111512;
  --panel: #1a211d;
  --panel-2: #222b26;
  --line: #344038;
  --line-strong: #56645b;
  --text: #f0f4eb;
  --muted: #c4ccbf;
  --soft: #edf2e7;
  --accent: #9fbf8f;
  --accent-strong: #c3d7a4;
  --metal: #d7bd7a;
  --moss: #78906d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(4, 8, 5, 0.34);
  --radius: 8px;
  color-scheme: dark;
  font-family: Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(17, 21, 18, 0.88);
  border-bottom: 1px solid rgba(86, 100, 91, 0.5);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.brand-logo {
  width: 196px;
  height: 54px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.brand-name {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--soft);
  font-size: 15px;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
  background: rgba(159, 191, 143, 0.16);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  min-height: 86svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #121713;
}

.hero-slitting {
  --hero-image: url("https://storage.googleapis.com/cg-webase/media/1779813595494-73860c71.jpg");
}

.hero::before {
  content: "";
  position: absolute;
  inset: -8px;
  background-image:
    linear-gradient(90deg, rgba(17, 21, 18, 0.98) 0%, rgba(17, 21, 18, 0.9) 46%, rgba(17, 21, 18, 0.78) 100%),
    linear-gradient(0deg, rgba(17, 21, 18, 0.9) 0%, rgba(17, 21, 18, 0.44) 48%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.28) brightness(0.48) contrast(0.92) blur(1.5px);
  transform: scale(1.02);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 74% 46%, rgba(195, 215, 164, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(17, 21, 18, 0) 0%, rgba(17, 21, 18, 0.12) 52%, rgba(17, 21, 18, 0.36) 100%),
    linear-gradient(rgba(215, 189, 122, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 189, 122, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.72;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: center;
  padding: 54px 0 0;
}

.hero-inner,
.section-inner,
.page-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-content {
  max-width: 760px;
  padding: 54px 0 42px;
  position: relative;
}

.hero-content::before {
  content: "JINYE / LINE SYSTEM";
  position: absolute;
  top: -18px;
  left: -4px;
  color: rgba(215, 189, 122, 0.46);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 12px rgba(17, 21, 18, 0.65);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 700;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
}

.hero h1 {
  margin-top: 18px;
  font-size: 72px;
  max-width: 820px;
  letter-spacing: 0;
}

.hero-lead {
  margin-top: 22px;
  max-width: 690px;
  color: var(--soft);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button.primary {
  color: #111512;
  background: var(--accent-strong);
  box-shadow: 0 12px 34px rgba(159, 191, 143, 0.26);
}

.button.secondary {
  color: var(--white);
  border-color: var(--line-strong);
  background: rgba(26, 33, 29, 0.72);
}

.button.ghost {
  color: var(--accent-strong);
  padding-left: 0;
}

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

.button.primary:hover {
  background: #d3e3b7;
  box-shadow: 0 18px 42px rgba(159, 191, 143, 0.34);
}

.button.secondary:hover {
  border-color: var(--accent-strong);
  background: rgba(159, 191, 143, 0.12);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  max-width: 100%;
  border: 1px solid rgba(86, 100, 91, 0.68);
  background: rgba(86, 100, 91, 0.68);
  transform: translateY(28px);
}

.metric {
  min-height: 104px;
  padding: 18px;
  background: rgba(17, 21, 18, 0.82);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-stage {
  position: relative;
  min-height: 520px;
}

.stage-image {
  position: absolute;
  inset: 28px 0 62px 28px;
  overflow: hidden;
  border: 1px solid rgba(195, 215, 164, 0.5);
  border-radius: 8px;
  clip-path: polygon(13% 0, 100% 0, 88% 100%, 0 100%);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.58), 0 0 0 10px rgba(17, 21, 18, 0.28);
}

.stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.08) brightness(1.06);
  transform: scale(1.04);
}

.stage-card {
  position: absolute;
  left: 0;
  bottom: 22px;
  width: min(280px, 72%);
  padding: 18px;
  background: rgba(26, 33, 29, 0.88);
  border: 1px solid rgba(195, 215, 164, 0.36);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.stage-card span {
  display: block;
  color: var(--metal);
  font-size: 13px;
  font-weight: 800;
}

.stage-card strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.3;
}

.stage-strip {
  position: absolute;
  top: 0;
  right: 8px;
  display: grid;
  gap: 8px;
}

.stage-strip span {
  min-width: 82px;
  padding: 8px 10px;
  color: var(--bg);
  background: var(--metal);
  border-radius: 4px;
  font-weight: 900;
  text-align: center;
}

.stage-strip span:nth-child(even) {
  transform: translateX(22px);
  background: var(--accent-strong);
}

.process-ribbon {
  overflow: hidden;
  border-top: 1px solid rgba(86, 100, 91, 0.42);
  border-bottom: 1px solid rgba(86, 100, 91, 0.42);
  background: #d7bd7a;
}

.process-ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbonSlide 24s linear infinite;
}

.process-ribbon-track span {
  padding: 14px 32px;
  color: #111512;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.process-ribbon-track span::after {
  content: "/";
  margin-left: 32px;
  color: rgba(17, 21, 18, 0.38);
}

@keyframes ribbonSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.metric:hover {
  transform: translateY(-3px);
  background: rgba(31, 39, 34, 0.92);
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: 26px;
  line-height: 1.1;
}

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

.section {
  padding: 88px 0;
  border-top: 1px solid rgba(86, 100, 91, 0.42);
}

.section.alt {
  background: #151a16;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-title {
  max-width: 760px;
}

.section-title h2 {
  margin-top: 10px;
  font-size: 38px;
}

.section-title p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 720px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.home-products {
  padding-top: 118px;
}

.grid.products.home-product-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: stretch;
}

.home-product-mosaic .product-card {
  min-height: 320px;
}

.home-product-mosaic .product-feature {
  grid-row: auto;
}

.home-product-mosaic .product-feature img {
  aspect-ratio: 16 / 10;
}

.home-product-mosaic .product-card h3 {
  font-size: 22px;
}

.home-product-mosaic .product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.home-product-mosaic .product-card p {
  min-height: 112px;
}

.home-product-mosaic .product-card dl {
  margin-top: auto;
}

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

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

.product-card,
.blog-card,
.value-card,
.process-card,
.contact-card,
.spec-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.product-card:hover,
.blog-card:hover,
.value-card:hover,
.contact-card:hover,
.spec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(195, 215, 164, 0.58);
  background: var(--panel-2);
  box-shadow: 0 18px 42px rgba(4, 8, 5, 0.28);
}

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

.product-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111512;
  transition: transform 500ms ease, filter 500ms ease;
}

.product-card::after,
.blog-card::after,
.value-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 42px;
  height: 2px;
  background: var(--metal);
  transform-origin: right;
  transition: width 220ms ease;
}

.product-card:hover::after,
.blog-card:hover::after,
.value-card:hover::after {
  width: 76px;
}

.product-card:hover img,
.blog-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.product-card-body,
.blog-card-body,
.value-card,
.process-card,
.contact-card,
.spec-card {
  padding: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  color: var(--accent-strong);
  background: rgba(159, 191, 143, 0.12);
  border: 1px solid rgba(159, 191, 143, 0.26);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.product-card h2,
.product-card h3,
.blog-card h2,
.blog-card h3,
.value-card h3,
.process-card h3,
.spec-card h3 {
  margin-top: 14px;
  font-size: 22px;
}

.product-card p,
.blog-card p,
.value-card p,
.process-card p,
.contact-card p,
.spec-card p {
  margin-top: 12px;
  color: var(--muted);
}

.product-card dl,
.spec-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.product-card div:has(> dl) {
  margin-top: auto;
}

.product-card dt,
.product-card dd,
.spec-list dt,
.spec-list dd {
  margin: 0;
}

.product-card dl div,
.spec-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(86, 100, 91, 0.52);
}

.product-card dt,
.spec-list dt {
  color: var(--muted);
}

.product-card dd,
.spec-list dd {
  color: var(--white);
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-strong);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.card-link:hover {
  color: var(--metal);
  transform: translateX(4px);
}

.image-band {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-top: 1px solid rgba(86, 100, 91, 0.42);
  border-bottom: 1px solid rgba(86, 100, 91, 0.42);
}

.image-band-panel {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 1px;
  width: min(380px, calc(100% - 40px));
  border: 1px solid rgba(195, 215, 164, 0.35);
  background: rgba(195, 215, 164, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.image-band-panel span {
  padding: 15px;
  color: var(--soft);
  background: rgba(17, 21, 18, 0.86);
  font-weight: 800;
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 21, 18, 0.88), rgba(17, 21, 18, 0.28));
  z-index: -1;
}

.image-band-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
  max-width: 1180px;
}

.image-band-content h2 {
  max-width: 720px;
  font-size: 38px;
}

.image-band-content p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  transform: skewX(-4deg);
}

.process-card {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: #171e1a;
  transform: skewX(4deg);
}

.process-card:hover {
  transform: skewX(4deg) translateY(-4px);
  background: #202820;
}

.process-card:last-child {
  border-right: 0;
}

.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--bg);
  background: var(--metal);
  border-radius: 4px;
  font-weight: 900;
}

.cta-band {
  padding: 72px 0;
  background: linear-gradient(90deg, #607455, #2e382f);
}

.cta-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  font-size: 34px;
}

.cta-inner p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero {
  position: relative;
  padding: 118px 0 88px;
  overflow: hidden;
  background: #121713;
  border-bottom: 1px solid rgba(86, 100, 91, 0.42);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(17, 21, 18, 0.95), rgba(17, 21, 18, 0.72)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -64px;
  width: min(520px, 46vw);
  height: 180px;
  background: rgba(215, 189, 122, 0.26);
  transform: skewX(-18deg);
  z-index: 0;
}

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

.page-hero h1 {
  margin-top: 14px;
  max-width: 820px;
  font-size: 58px;
}

.page-hero p {
  margin-top: 18px;
  max-width: 720px;
  color: var(--soft);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.prose {
  color: var(--soft);
}

.prose h2 {
  margin-top: 38px;
  font-size: 30px;
  color: var(--white);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 28px;
  color: var(--white);
}

.prose p,
.prose ul,
.prose ol {
  margin: 14px 0 0;
}

.prose ul,
.prose ol {
  padding-left: 20px;
}

.prose li + li {
  margin-top: 8px;
}

.fact-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: var(--panel);
}

.fact-row span {
  color: var(--muted);
}

.fact-row strong {
  text-align: right;
}

.quote-panel {
  margin-top: 22px;
  padding: 24px;
  border-left: 4px solid var(--metal);
  background: #1b231e;
}

.quote-panel p {
  color: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px;
}

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

.contact-card strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.form-panel {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 8, 5, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-strong);
  background: #171e1a;
  box-shadow: 0 0 0 3px rgba(159, 191, 143, 0.16);
}

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

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-pill {
  padding: 8px 12px;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #171e1a;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-pill:hover {
  transform: translateY(-2px);
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}

.product-list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.inquiry-sticky {
  position: sticky;
  top: 96px;
}

.detail-hero {
  padding: 86px 0 62px;
  background: #121713;
  border-bottom: 1px solid rgba(86, 100, 91, 0.42);
  overflow: hidden;
  position: relative;
}

.detail-hero::before {
  content: "";
  position: absolute;
  left: -12vw;
  top: 42px;
  width: 46vw;
  height: 210px;
  background: rgba(215, 189, 122, 0.13);
  transform: skewX(-18deg);
}

.detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 36px;
  align-items: center;
}

.detail-hero h1 {
  margin-top: 14px;
  font-size: 56px;
}

.detail-hero p {
  margin-top: 16px;
  color: var(--soft);
  font-size: 18px;
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 500ms ease, filter 500ms ease;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 8% 100%);
}

.detail-hero img:hover {
  transform: scale(1.015);
  filter: saturate(1.06);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-body {
  padding: 76px 0;
}

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

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--white);
  background: #202820;
}

td {
  color: var(--soft);
}

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

.side-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #1a211d;
}

.side-panel h2,
.side-panel h3 {
  font-size: 22px;
}

.side-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--soft);
}

.side-panel li + li {
  margin-top: 8px;
}

.blog-list {
  display: grid;
  grid-template-columns: 1.18fr 0.9fr 0.9fr;
  gap: 18px;
}

.blog-list .blog-card:first-child {
  grid-row: span 2;
}

.blog-list .blog-card:first-child img {
  aspect-ratio: 16 / 14;
}

.blog-list .blog-card:first-child h2 {
  font-size: 28px;
}

.blog-card time {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  background: #0c100d;
  border-top: 1px solid rgba(86, 100, 91, 0.42);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.6fr));
  gap: 30px;
  padding: 56px 0;
}

.footer-logo {
  width: 184px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 4px 12px rgba(195, 215, 164, 0.16));
}

.footer-inner p {
  margin-top: 16px;
  color: var(--soft);
  max-width: 420px;
}

.footer-col h2,
.footer-col h3 {
  font-size: 16px;
  color: var(--white);
}

.footer-col a {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
  color: var(--accent-strong);
  transform: translateX(3px);
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 26px;
  color: var(--soft);
  border-top: 1px solid rgba(86, 100, 91, 0.42);
  font-size: 14px;
}

.reveal {
  opacity: 1;
  transform: translateY(28px);
  transition: transform 700ms ease;
}

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

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .grid.products,
  .grid.products.home-product-mosaic,
  .blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .home-product-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 420px;
    max-width: 680px;
  }

  .stage-image {
    inset: 0 0 58px 0;
  }

  .home-product-mosaic .product-feature {
    grid-row: auto;
  }

  .product-list-layout,
  .detail-layout,
  .detail-hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .side-panel,
  .inquiry-sticky {
    position: static;
  }

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

  .process-card {
    transform: none;
  }

  .process-card:hover {
    transform: translateY(-4px);
  }

  .process-card:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(100% - 28px, 1180px);
    min-height: 66px;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #0d120e;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

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

  .hero {
    min-height: 84svh;
  }

  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(17, 21, 18, 0.94), rgba(17, 21, 18, 0.62)),
      linear-gradient(0deg, rgba(17, 21, 18, 0.75), rgba(17, 21, 18, 0)),
      var(--hero-image);
  }

  .hero-inner,
  .section-inner,
  .page-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    padding: 52px 0 58px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-stage {
    display: none;
  }

  .hero-lead,
  .page-hero p,
  .detail-hero p {
    font-size: 17px;
  }

  .hero-metrics,
  .grid.products,
  .grid.three,
  .grid.two,
  .blog-list,
  .spec-grid,
  .form-grid,
  .timeline,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    transform: none;
  }

  .section {
    padding: 62px 0;
  }

  .section-head,
  .cta-inner {
    display: block;
  }

  .section-title h2,
  .image-band-content h2,
  .cta-inner h2 {
    font-size: 30px;
  }

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

  .page-hero {
    padding: 76px 0 58px;
  }

  .image-band {
    min-height: 360px;
  }

  .image-band-panel {
    position: static;
    width: min(100% - 28px, 1180px);
    margin: -32px auto 44px;
  }

  .process-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .cta-inner .button {
    margin-top: 22px;
  }
}
