:root {
  --ink: #111827;
  --panel: #17202e;
  --panel-2: #202b3b;
  --muted: #64748b;
  --line: #d7dee8;
  --soft: #f4f7fb;
  --white: #ffffff;
  --blue: #173cff;
  --blue-2: #0ea5e9;
  --cyan: #16c7c7;
  --amber: #f59e0b;
  --green: #12b981;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 222, 232, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--panel);
}

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

.brand span {
  display: inline-block;
  padding-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #263243;
  font-size: 14px;
  font-weight: 720;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button,
.button-secondary,
.button-dark,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(23, 60, 255, 0.28);
}

.button:hover {
  transform: translateY(-2px);
  background: #0d2ddb;
  box-shadow: 0 18px 38px rgba(23, 60, 255, 0.34);
}

.button-secondary {
  color: var(--blue);
  border-color: rgba(23, 60, 255, 0.2);
  background: rgba(23, 60, 255, 0.06);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.button-dark {
  color: var(--white);
  background: var(--panel);
}

.button-dark:hover {
  transform: translateY(-2px);
  background: #0e1725;
  box-shadow: var(--shadow);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.13);
}

.button-light:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  min-height: 640px;
  color: var(--white);
  background: var(--panel);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero.compact {
  min-height: 440px;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 20, 34, 0.9) 0%, rgba(12, 20, 34, 0.66) 44%, rgba(12, 20, 34, 0.2) 100%),
    linear-gradient(180deg, rgba(12, 20, 34, 0.1), rgba(12, 20, 34, 0.64));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 96px;
}

.hero-copy {
  max-width: 760px;
}

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

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--cyan);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 86px);
}

.hero p {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.hero-panel {
  width: min(1200px, calc(100% - 32px));
  margin: -72px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border: 1px solid rgba(215, 222, 232, 0.8);
  overflow: hidden;
}

.panel-metric {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

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

.panel-metric strong {
  display: block;
  color: var(--panel);
  font-size: 30px;
  line-height: 1;
}

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

.section {
  padding: 108px 0;
}

.section.tight {
  padding: 76px 0;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 60, 255, 0.12), rgba(22, 199, 199, 0.08)),
    var(--panel);
}

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

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

.section-head.center {
  display: block;
  max-width: 780px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.section-head h2 {
  color: var(--panel);
  font-size: clamp(30px, 4vw, 52px);
}

.section.dark .section-head h2,
.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section-head p {
  max-width: 440px;
}

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

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

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

.product-card:hover,
.value-card:hover,
.blog-card:hover,
.spec-card:hover,
.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(23, 60, 255, 0.22);
}

.product-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card-body,
.blog-card-body {
  padding: 22px;
}

.product-card h3,
.blog-card h2,
.blog-card h3,
.value-card h3,
.spec-card h3,
.compare-card h3 {
  color: var(--panel);
  font-size: 21px;
}

.product-card p,
.blog-card p,
.value-card p,
.spec-card p {
  margin-top: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(23, 60, 255, 0.16);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(23, 60, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
}

.tag.cyan {
  color: #057a86;
  border-color: rgba(22, 199, 199, 0.28);
  background: rgba(22, 199, 199, 0.1);
}

.tag.amber {
  color: #9a5b00;
  border-color: rgba(245, 158, 11, 0.34);
  background: rgba(245, 158, 11, 0.12);
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 48px;
}

.split.flip {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split-copy h2 {
  color: var(--panel);
  font-size: clamp(30px, 4vw, 52px);
}

.split-copy > p {
  margin-top: 18px;
  font-size: 17px;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.split-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.spec-table {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

.spec-table th {
  width: 42%;
  color: var(--panel);
  background: #eef3fb;
  font-size: 14px;
}

.spec-table td {
  color: #334155;
  font-size: 14px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-top: 12px;
  color: #334155;
}

.section.dark .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 4px rgba(22, 199, 199, 0.14);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.feature-copy {
  padding: 58px;
  align-self: center;
}

.feature-copy h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.feature-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

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

.value-card,
.spec-card,
.compare-card {
  padding: 26px;
}

.value-card .number,
.spec-card .number {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
}

.process-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--panel);
}

.process-step h3 {
  color: var(--panel);
  font-size: 20px;
}

.process-step p {
  margin-top: 12px;
}

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

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(12, 20, 34, 0.96), rgba(23, 60, 255, 0.82)),
    var(--panel);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 48px);
  max-width: 760px;
}

.cta-band p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: #0f1724;
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

.footer-logo {
  width: 112px;
  filter: brightness(0) invert(1);
}

.footer h3 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 14px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer a {
  display: block;
  margin-top: 9px;
}

.footer a:hover {
  color: var(--white);
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.page-title {
  padding: 86px 0 58px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 23, 36, 0.95), rgba(23, 60, 255, 0.74)),
    var(--panel);
}

.page-title h1 {
  max-width: 840px;
  font-size: clamp(42px, 6vw, 76px);
}

.page-title p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

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

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

.timeline-item h3 {
  color: var(--panel);
  font-size: 20px;
}

.timeline-item {
  padding: 24px;
}

.timeline-item time {
  display: block;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.contact-card h2,
.contact-card h3 {
  color: var(--panel);
}

.contact-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  color: var(--panel);
}

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

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

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

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

label {
  color: var(--panel);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 138px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(23, 60, 255, 0.12);
  border-color: var(--blue);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 42px;
  align-items: center;
}

.product-hero h1 {
  color: var(--panel);
  font-size: clamp(38px, 6vw, 72px);
}

.product-hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-specs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

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

.comparison-table th {
  color: var(--panel);
  background: #edf3fb;
}

.comparison-table tr:last-child td,
.comparison-table tr:last-child th {
  border-bottom: 0;
}

.comparison-table td:nth-child(2) {
  color: #0f766e;
  font-weight: 760;
}

.comparison-table td:nth-child(3) {
  color: #7c2d12;
}

.article-shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.article-body {
  padding: 72px 0;
}

.article-body h1 {
  color: var(--panel);
  font-size: clamp(38px, 6vw, 66px);
  margin-bottom: 18px;
}

.article-body .hero-image {
  width: 100%;
  margin: 32px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-body h2 {
  margin: 42px 0 14px;
  color: var(--panel);
  font-size: 30px;
}

.article-body p {
  margin-top: 16px;
  font-size: 17px;
}

.article-body ul {
  margin: 18px 0 0;
  padding-left: 22px;
  color: #334155;
}

.article-body li {
  margin-top: 10px;
}

.thank-you {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 80px 16px;
  background:
    linear-gradient(135deg, rgba(23, 60, 255, 0.12), rgba(22, 199, 199, 0.08)),
    var(--soft);
}

.thank-you-card {
  width: min(720px, 100%);
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card h1 {
  color: var(--panel);
  font-size: clamp(36px, 6vw, 58px);
}

.thank-you-card p {
  margin-top: 18px;
}

@media (max-width: 1020px) {
  .product-grid,
  .product-grid.three,
  .blog-grid,
  .value-grid,
  .spec-grid,
  .compare-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-panel,
  .about-stats,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-metric:nth-child(2) {
    border-right: 0;
  }

  .panel-metric:nth-child(1),
  .panel-metric:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .split,
  .split.flip,
  .feature-band,
  .product-hero,
  .contact-layout,
  .product-specs,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    padding: 36px;
  }

  .cta-band .container,
  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 66px;
  }

  .brand img {
    width: 98px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-links {
    display: flex;
  }

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

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: 590px;
  }

  .hero.compact {
    min-height: 390px;
  }

  .hero-content {
    padding: 70px 0 84px;
  }

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

  .hero-panel,
  .product-grid,
  .product-grid.three,
  .blog-grid,
  .value-grid,
  .spec-grid,
  .compare-grid,
  .about-stats,
  .timeline,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .panel-metric:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section.tight {
    padding: 56px 0;
  }

  .split-media img,
  .feature-media img {
    min-height: 300px;
  }

  .feature-copy,
  .contact-card,
  .thank-you-card {
    padding: 26px;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
  }
}

/* Visual theme refresh: dark precision industrial */
:root {
  --ink: #e7edf5;
  --panel: #101820;
  --panel-2: #17232f;
  --muted: #8ea0b6;
  --line: rgba(142, 160, 182, 0.24);
  --soft: #0d141b;
  --white: #111a23;
  --blue: #42d7ff;
  --blue-2: #7dd3fc;
  --cyan: #35f0c6;
  --amber: #e4b85f;
  --green: #35f0c6;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --radius: 4px;
}

body {
  color: #d9e3ef;
  background:
    linear-gradient(180deg, rgba(14, 23, 31, 0.96), rgba(9, 14, 20, 1)),
    #0a0f15;
}

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

.site-header {
  background: rgba(7, 11, 16, 0.88);
  border-bottom: 1px solid rgba(66, 215, 255, 0.18);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.brand {
  color: #ecf7ff;
}

.brand img {
  filter: drop-shadow(0 0 12px rgba(66, 215, 255, 0.24));
}

.nav-links {
  color: #d9e3ef;
}

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

.nav-links a::after {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.menu-toggle {
  border-color: rgba(66, 215, 255, 0.34);
  background: rgba(13, 20, 27, 0.78);
  color: #e7edf5;
}

.button,
.button-secondary,
.button-dark,
.button-light {
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.button {
  color: #061018;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 42px rgba(53, 240, 198, 0.22);
}

.button:hover {
  background: linear-gradient(135deg, #77ffe0, #7dd3fc);
  box-shadow: 0 22px 50px rgba(66, 215, 255, 0.28);
}

.button-secondary {
  color: var(--blue);
  border-color: rgba(66, 215, 255, 0.35);
  background: rgba(66, 215, 255, 0.08);
}

.button-secondary:hover {
  color: #061018;
  background: var(--blue);
  border-color: var(--blue);
}

.button-dark {
  color: #061018;
  background: var(--cyan);
}

.button-light {
  color: #e9fbff;
  border-color: rgba(231, 237, 245, 0.42);
  background: rgba(231, 237, 245, 0.08);
}

.button-light:hover {
  color: #061018;
  background: rgba(231, 237, 245, 0.92);
}

.hero {
  min-height: 690px;
  background: #05080c;
}

.hero img {
  filter: saturate(0.72) contrast(1.12) brightness(0.72);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.98) 0%, rgba(5, 8, 12, 0.78) 48%, rgba(5, 8, 12, 0.3) 100%),
    linear-gradient(180deg, rgba(53, 240, 198, 0.12), rgba(5, 8, 12, 0.76)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 72px);
}

.hero h1 {
  max-width: 860px;
  color: #f7fbff;
  text-transform: uppercase;
  font-size: clamp(42px, 6.6vw, 84px);
}

.hero p {
  color: rgba(224, 239, 249, 0.84);
}

.eyebrow {
  color: var(--cyan);
  letter-spacing: 0.14em;
}

.eyebrow::before {
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.hero-panel {
  background: rgba(13, 20, 27, 0.96);
  border: 1px solid rgba(66, 215, 255, 0.28);
  box-shadow: var(--shadow);
}

.panel-metric {
  border-right: 1px solid rgba(66, 215, 255, 0.18);
}

.panel-metric strong {
  color: #f7fbff;
}

.panel-metric span {
  color: #8ea0b6;
}

.section {
  background: #0a0f15;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(66, 215, 255, 0.05), rgba(53, 240, 198, 0.02)),
    #0d141b;
}

.section.dark {
  background:
    linear-gradient(135deg, rgba(53, 240, 198, 0.16), rgba(66, 215, 255, 0.06)),
    #05080c;
}

.section-head h2,
.split-copy h2,
.product-card h3,
.blog-card h2,
.blog-card h3,
.value-card h3,
.spec-card h3,
.compare-card h3,
.process-step h3,
.timeline-item h3,
.contact-card h2,
.contact-card h3,
.contact-list strong,
label,
.product-hero h1,
.article-body h1,
.article-body h2,
.thank-you-card h1 {
  color: #f7fbff;
}

.product-card,
.value-card,
.blog-card,
.spec-card,
.contact-card,
.timeline-item,
.compare-card,
.stat-card,
.process-step,
.thank-you-card {
  background: linear-gradient(180deg, rgba(23, 35, 47, 0.98), rgba(13, 20, 27, 0.98));
  border: 1px solid rgba(142, 160, 182, 0.22);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.product-card:hover,
.value-card:hover,
.blog-card:hover,
.spec-card:hover,
.compare-card:hover {
  border-color: rgba(53, 240, 198, 0.46);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
}

.product-card img,
.blog-card img,
.split-media img,
.feature-media img,
.product-hero-media img,
.article-body .hero-image {
  filter: saturate(0.82) contrast(1.08);
}

.tag {
  color: var(--blue);
  border-color: rgba(66, 215, 255, 0.34);
  background: rgba(66, 215, 255, 0.08);
}

.tag.cyan {
  color: var(--cyan);
  border-color: rgba(53, 240, 198, 0.34);
  background: rgba(53, 240, 198, 0.08);
}

.tag.amber {
  color: var(--amber);
  border-color: rgba(228, 184, 95, 0.42);
  background: rgba(228, 184, 95, 0.08);
}

.card-link,
.value-card .number,
.spec-card .number,
.stat-card strong,
.timeline-item time {
  color: var(--cyan);
}

.split-media,
.product-hero-media,
.article-body .hero-image {
  border: 1px solid rgba(66, 215, 255, 0.2);
  box-shadow: var(--shadow);
}

.spec-table,
.comparison-table {
  background: rgba(13, 20, 27, 0.95);
  border-color: rgba(66, 215, 255, 0.2);
}

.spec-table th,
.comparison-table th {
  color: #f7fbff;
  background: rgba(66, 215, 255, 0.08);
}

.spec-table td,
.comparison-table td,
.check-list li,
.article-body ul {
  color: #b9c7d6;
}

.spec-table th,
.spec-table td,
.comparison-table th,
.comparison-table td,
.contact-list li {
  border-bottom-color: rgba(142, 160, 182, 0.2);
}

.comparison-table td:nth-child(2) {
  color: var(--cyan);
}

.comparison-table td:nth-child(3) {
  color: var(--amber);
}

.check-list li::before {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(53, 240, 198, 0.12), 0 0 14px rgba(53, 240, 198, 0.6);
}

.feature-band {
  border-color: rgba(66, 215, 255, 0.22);
  background: rgba(13, 20, 27, 0.74);
}

.process-grid {
  background: rgba(66, 215, 255, 0.18);
  border-color: rgba(66, 215, 255, 0.18);
}

.process-step strong {
  color: #061018;
  background: var(--cyan);
}

.post-meta {
  color: #93a8bd;
}

.cta-band {
  background:
    linear-gradient(110deg, rgba(5, 8, 12, 0.98), rgba(12, 36, 45, 0.92)),
    repeating-linear-gradient(90deg, rgba(66, 215, 255, 0.08) 0 1px, transparent 1px 90px),
    #05080c;
  border-top: 1px solid rgba(66, 215, 255, 0.18);
  border-bottom: 1px solid rgba(66, 215, 255, 0.18);
}

.footer {
  background: #05080c;
  border-top: 1px solid rgba(66, 215, 255, 0.18);
}

.page-title {
  background:
    linear-gradient(120deg, rgba(5, 8, 12, 1), rgba(13, 41, 50, 0.92)),
    repeating-linear-gradient(90deg, rgba(66, 215, 255, 0.08) 0 1px, transparent 1px 84px),
    #05080c;
}

.page-title h1 {
  text-transform: uppercase;
  color: #f7fbff;
}

.contact-list span,
.contact-list a {
  color: #9fb0c2;
}

input,
textarea,
select {
  color: #e7edf5;
  background: rgba(5, 8, 12, 0.68);
  border-color: rgba(142, 160, 182, 0.28);
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(53, 240, 198, 0.12);
  border-color: var(--cyan);
}

.thank-you {
  background:
    linear-gradient(135deg, rgba(53, 240, 198, 0.12), rgba(66, 215, 255, 0.06)),
    #05080c;
}

@media (max-width: 760px) {
  .nav-links {
    background: rgba(9, 14, 20, 0.98);
    border-color: rgba(66, 215, 255, 0.3);
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }
}

/* Visual direction v2: foil-line control room */
:root {
  --ink: #eef2ec;
  --panel: #121513;
  --panel-2: #1a201d;
  --muted: #a7b0aa;
  --line: rgba(205, 216, 209, 0.18);
  --soft: #0c0f0e;
  --white: #101311;
  --blue: #18b8ff;
  --blue-2: #7ccaf5;
  --cyan: #34e0b5;
  --amber: #ff8a3d;
  --green: #89f0a6;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
  --radius: 0;
}

html {
  background: #080a09;
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 138, 61, 0.075), transparent 26%, transparent 68%, rgba(24, 184, 255, 0.07)),
    repeating-linear-gradient(90deg, rgba(238, 242, 236, 0.034) 0 1px, transparent 1px 124px),
    repeating-linear-gradient(0deg, rgba(238, 242, 236, 0.028) 0 1px, transparent 1px 92px),
    #080a09;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(255, 138, 61, 0.08) 44% 44.35%, transparent 44.35%),
    linear-gradient(315deg, transparent 0 59%, rgba(52, 224, 181, 0.055) 59% 59.28%, transparent 59.28%);
}

h1,
h2,
h3,
h4 {
  font-weight: 860;
}

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

.site-header {
  background:
    linear-gradient(180deg, rgba(8, 10, 9, 0.96), rgba(12, 15, 14, 0.86)),
    repeating-linear-gradient(90deg, rgba(205, 216, 209, 0.08) 0 1px, transparent 1px 88px);
  border-bottom: 1px solid rgba(255, 138, 61, 0.34);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.34);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--cyan), transparent);
}

.nav {
  min-height: 78px;
}

.brand {
  color: #f6f7f1;
  gap: 14px;
}

.brand img,
.footer-logo {
  filter:
    drop-shadow(0 0 10px rgba(255, 138, 61, 0.26))
    drop-shadow(0 0 18px rgba(24, 184, 255, 0.16));
}

.brand span {
  color: #e7ece7;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  color: #cfd7d2;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 10px 13px;
  border: 1px solid transparent;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: #08100d;
  border-color: rgba(255, 138, 61, 0.36);
  background: linear-gradient(135deg, var(--amber), #ffd08c);
}

.menu-toggle {
  border-color: rgba(255, 138, 61, 0.42);
  background: rgba(18, 21, 19, 0.86);
  color: #f6f7f1;
}

.button,
.button-secondary,
.button-dark,
.button-light {
  position: relative;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button::before,
.button-secondary::before,
.button-dark::before,
.button-light::before {
  content: "";
  position: absolute;
  inset: 5px auto 5px 7px;
  width: 2px;
  background: currentColor;
  opacity: 0.65;
}

.button {
  color: #0b0c09;
  border-color: transparent;
  background: linear-gradient(135deg, #ff8a3d, #ffe0a3);
  box-shadow: 0 20px 48px rgba(255, 138, 61, 0.22);
}

.button:hover {
  color: #070908;
  background: linear-gradient(135deg, #ffb061, #fff0bf);
  box-shadow: 0 24px 56px rgba(255, 138, 61, 0.3);
}

.button-secondary {
  color: #d8fff3;
  border-color: rgba(52, 224, 181, 0.48);
  background: rgba(52, 224, 181, 0.08);
}

.button-secondary:hover {
  color: #06110e;
  background: linear-gradient(135deg, var(--cyan), #d8fff3);
  border-color: transparent;
}

.button-dark {
  color: #06110e;
  background: linear-gradient(135deg, var(--cyan), #d8fff3);
}

.button-light {
  color: #f8fbf7;
  border-color: rgba(248, 251, 247, 0.4);
  background: rgba(248, 251, 247, 0.08);
}

.button-light:hover {
  color: #0b0c09;
  background: linear-gradient(135deg, #f8fbf7, #d7e1dc);
}

.hero {
  min-height: 680px;
  isolation: isolate;
  background: #070908;
}

.hero.compact {
  min-height: 480px;
}

.hero img {
  filter: grayscale(0.24) saturate(0.78) contrast(1.2) brightness(0.64);
  transform: scale(1.03);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(7, 9, 8, 1) 0%, rgba(7, 9, 8, 0.96) 34%, rgba(7, 9, 8, 0.62) 58%, rgba(7, 9, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 138, 61, 0.22), rgba(7, 9, 8, 0.2) 35%, rgba(7, 9, 8, 0.82)),
    repeating-linear-gradient(90deg, rgba(248, 251, 247, 0.055) 0 1px, transparent 1px 116px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(24, 184, 255, 0.16) 58% 58.4%, transparent 58.4%),
    linear-gradient(315deg, transparent 0 72%, rgba(255, 138, 61, 0.18) 72% 72.35%, transparent 72.35%),
    linear-gradient(180deg, transparent 0 82%, #080a09 100%);
}

.hero-content {
  z-index: 2;
  padding: 82px 0 118px;
}

.hero-copy {
  max-width: 940px;
  padding-left: 34px;
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background:
    linear-gradient(180deg, var(--amber), transparent 34%, var(--cyan) 72%, transparent),
    repeating-linear-gradient(180deg, #fff 0 8px, transparent 8px 18px);
  box-shadow: 0 0 24px rgba(255, 138, 61, 0.34), 0 0 28px rgba(52, 224, 181, 0.18);
}

.hero .eyebrow,
.eyebrow {
  color: #ffb36b;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.hero h1 {
  max-width: 860px;
  color: #f9fbf7;
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 0.97;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.6);
}

.hero p {
  max-width: 690px;
  color: rgba(235, 242, 237, 0.82);
  font-size: 18px;
  border-left: 1px solid rgba(255, 138, 61, 0.38);
  padding-left: 18px;
}

.hero-actions {
  gap: 14px;
}

.hero-panel {
  position: relative;
  z-index: 3;
  margin-top: -70px;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.13), transparent 35%, rgba(52, 224, 181, 0.1)),
    repeating-linear-gradient(90deg, rgba(248, 251, 247, 0.045) 0 1px, transparent 1px 70px),
    #111512;
  border: 0;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 138, 61, 0.42);
}

.panel-metric {
  min-height: 142px;
  border-right: 1px solid rgba(255, 138, 61, 0.22);
}

.panel-metric strong {
  color: #fff3da;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0.02em;
}

.panel-metric span {
  color: #aeb9b2;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 138, 61, 0.035), transparent 30%, transparent 70%, rgba(52, 224, 181, 0.03)),
    #080a09;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.34), rgba(52, 224, 181, 0.18), transparent);
}

.section.alt {
  background:
    linear-gradient(115deg, rgba(255, 138, 61, 0.08), transparent 32%),
    repeating-linear-gradient(90deg, rgba(238, 242, 236, 0.028) 0 1px, transparent 1px 110px),
    #0d100e;
}

.section.dark {
  background:
    linear-gradient(135deg, rgba(12, 15, 14, 0.96), rgba(23, 33, 28, 0.95)),
    repeating-linear-gradient(135deg, rgba(255, 138, 61, 0.07) 0 1px, transparent 1px 18px),
    #070908;
}

.section-head h2,
.split-copy h2,
.product-card h3,
.blog-card h2,
.blog-card h3,
.value-card h3,
.spec-card h3,
.compare-card h3,
.process-step h3,
.timeline-item h3,
.contact-card h2,
.contact-card h3,
.contact-list strong,
label,
.product-hero h1,
.article-body h1,
.article-body h2,
.thank-you-card h1,
.page-title h1,
.cta-band h2 {
  color: #f8fbf7;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-head h2,
.split-copy h2,
.page-title h1,
.product-hero h1,
.article-body h1,
.cta-band h2 {
  letter-spacing: 0.01em;
}

.section-head p {
  color: #aab5ae;
}

.product-grid,
.blog-grid,
.value-grid,
.spec-grid,
.compare-grid {
  gap: 18px;
}

.product-card,
.value-card,
.blog-card,
.spec-card,
.contact-card,
.timeline-item,
.compare-card,
.stat-card,
.process-step,
.thank-you-card {
  position: relative;
  border: 1px solid rgba(205, 216, 209, 0.16);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(31, 37, 33, 0.95), rgba(13, 16, 14, 0.98)),
    repeating-linear-gradient(90deg, rgba(238, 242, 236, 0.035) 0 1px, transparent 1px 64px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.product-card::before,
.value-card::before,
.blog-card::before,
.spec-card::before,
.contact-card::before,
.timeline-item::before,
.compare-card::before,
.stat-card::before,
.process-step::before,
.thank-you-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), transparent 38%, var(--cyan));
  opacity: 0.9;
}

.product-card::after,
.blog-card::after,
.value-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  border-right: 1px solid rgba(255, 138, 61, 0.48);
  border-bottom: 1px solid rgba(255, 138, 61, 0.48);
  pointer-events: none;
}

.product-card:hover,
.value-card:hover,
.blog-card:hover,
.spec-card:hover,
.compare-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 61, 0.54);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(52, 224, 181, 0.1);
}

.product-card img,
.blog-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(0.18) saturate(0.76) contrast(1.18) brightness(0.74);
  transition: filter 220ms ease, transform 220ms ease;
}

.product-card:hover img,
.blog-card:hover img {
  filter: grayscale(0.02) saturate(0.98) contrast(1.16) brightness(0.86);
  transform: scale(1.035);
}

.product-card-body,
.blog-card-body {
  position: relative;
  padding: 24px;
}

.product-card h3,
.blog-card h3,
.blog-card h2 {
  font-size: 20px;
}

.product-card p,
.blog-card p,
.value-card p,
.spec-card p,
.compare-card p {
  color: #a9b5ae;
}

.tag {
  color: #10120d;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #bac5be, #edf3ed);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag.cyan {
  color: #05110e;
  background: linear-gradient(135deg, var(--cyan), #d4fff4);
}

.tag.amber {
  color: #140b03;
  background: linear-gradient(135deg, var(--amber), #ffe6ba);
}

.card-link,
.value-card .number,
.spec-card .number,
.stat-card strong,
.timeline-item time,
.post-meta span {
  color: #ffb36b;
}

.card-link {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-media,
.product-hero-media,
.article-body .hero-image,
.feature-media {
  position: relative;
  border: 1px solid rgba(255, 138, 61, 0.28);
  border-radius: 0;
  box-shadow: var(--shadow);
  background: #0b0d0c;
  overflow: hidden;
}

.split-media::before,
.product-hero-media::before,
.feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(255, 138, 61, 0.16) 72% 72.5%, transparent 72.5%),
    repeating-linear-gradient(90deg, rgba(238, 242, 236, 0.045) 0 1px, transparent 1px 80px);
}

.split-media img,
.feature-media img,
.product-hero-media img,
.article-body .hero-image {
  filter: grayscale(0.12) saturate(0.78) contrast(1.18) brightness(0.78);
}

.feature-band {
  border: 1px solid rgba(255, 138, 61, 0.28);
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(23, 28, 25, 0.96), rgba(10, 12, 11, 0.94)),
    repeating-linear-gradient(90deg, rgba(238, 242, 236, 0.04) 0 1px, transparent 1px 86px);
  box-shadow: var(--shadow);
}

.feature-copy {
  position: relative;
}

.feature-copy::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 36px;
  width: 64px;
  height: 64px;
  border-top: 1px solid rgba(52, 224, 181, 0.55);
  border-right: 1px solid rgba(52, 224, 181, 0.55);
}

.spec-table,
.comparison-table {
  border: 1px solid rgba(255, 138, 61, 0.24);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(24, 29, 26, 0.96), rgba(10, 12, 11, 0.96)),
    repeating-linear-gradient(90deg, rgba(238, 242, 236, 0.035) 0 1px, transparent 1px 76px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.spec-table th,
.comparison-table th {
  color: #fff0d2;
  background: rgba(255, 138, 61, 0.11);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spec-table td,
.comparison-table td,
.check-list li,
.article-body ul {
  color: #b5c0ba;
}

.spec-table th,
.spec-table td,
.comparison-table th,
.comparison-table td,
.contact-list li {
  border-bottom-color: rgba(205, 216, 209, 0.14);
}

.comparison-table td:nth-child(2) {
  color: #d8fff3;
}

.comparison-table td:nth-child(3) {
  color: #ffd39b;
}

.check-list li::before {
  background: linear-gradient(135deg, var(--amber), var(--cyan));
  box-shadow: 0 0 0 4px rgba(255, 138, 61, 0.09), 0 0 16px rgba(52, 224, 181, 0.36);
}

.process-grid {
  border: 1px solid rgba(255, 138, 61, 0.2);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.12), rgba(52, 224, 181, 0.08)),
    #101311;
}

.process-step strong {
  color: #0b0c09;
  background: linear-gradient(135deg, var(--amber), #ffe1ac);
  border-radius: 0;
}

.post-meta {
  color: #9ca8a2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-title,
.product-hero,
.cta-band {
  position: relative;
  background:
    linear-gradient(105deg, rgba(8, 10, 9, 1) 0%, rgba(15, 18, 16, 0.96) 48%, rgba(255, 138, 61, 0.13)),
    repeating-linear-gradient(90deg, rgba(238, 242, 236, 0.045) 0 1px, transparent 1px 96px),
    #080a09;
  border-bottom: 1px solid rgba(255, 138, 61, 0.24);
  overflow: hidden;
}

.page-title::after,
.product-hero::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--cyan), transparent);
}

.page-title h1,
.product-hero h1 {
  max-width: 880px;
  font-size: clamp(38px, 6.4vw, 78px);
  line-height: 0.96;
}

.page-title p,
.product-hero p,
.cta-band p {
  color: #b1bcb5;
}

.contact-layout {
  align-items: start;
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(24, 30, 26, 0.98), rgba(10, 12, 11, 0.98)),
    repeating-linear-gradient(0deg, rgba(238, 242, 236, 0.028) 0 1px, transparent 1px 46px);
}

.contact-list span,
.contact-list a {
  color: #b4beb8;
}

input,
textarea,
select {
  color: #f3f7f2;
  border: 1px solid rgba(205, 216, 209, 0.22);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 9, 0.72), rgba(18, 21, 19, 0.72)),
    #0b0d0c;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(255, 138, 61, 0.13);
  border-color: var(--amber);
}

input::placeholder,
textarea::placeholder {
  color: rgba(167, 176, 170, 0.7);
}

.cta-band {
  color: #f8fbf7;
  border-top: 1px solid rgba(255, 138, 61, 0.28);
}

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

.footer {
  background:
    linear-gradient(180deg, #080a09, #050605),
    repeating-linear-gradient(90deg, rgba(238, 242, 236, 0.035) 0 1px, transparent 1px 92px);
  border-top: 1px solid rgba(255, 138, 61, 0.26);
}

.footer h3 {
  color: #fff0d2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: #aeb9b2;
}

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

.thank-you {
  background:
    linear-gradient(115deg, rgba(255, 138, 61, 0.09), transparent 44%, rgba(52, 224, 181, 0.08)),
    repeating-linear-gradient(90deg, rgba(238, 242, 236, 0.035) 0 1px, transparent 1px 92px),
    #080a09;
}

@media (max-width: 1020px) {
  .hero {
    min-height: 640px;
  }

  .hero-panel {
    margin-top: -42px;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 98px;
  }

  .nav-links {
    top: 78px;
    left: 12px;
    right: 12px;
    padding: 10px;
    border-color: rgba(255, 138, 61, 0.36);
    background: rgba(8, 10, 9, 0.98);
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 64px 0 88px;
  }

  .hero-copy {
    padding-left: 22px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.6vw, 52px);
  }

  .hero p {
    padding-left: 14px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 330px;
  }

  .hero-panel {
    margin-top: -34px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  }

  .panel-metric {
    min-height: 114px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 138, 61, 0.2);
  }

  .panel-metric:last-child {
    border-bottom: 0;
  }

  .page-title h1,
  .product-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .product-card-body,
  .blog-card-body,
  .feature-copy,
  .contact-card,
  .thank-you-card {
    padding: 24px;
  }

  .button,
  .button-secondary,
  .button-dark,
  .button-light {
    min-height: 48px;
  }

  .hero-actions .button,
  .hero-actions .button-light,
  .hero-actions .button-secondary,
  .hero-actions .button-dark {
    width: 100%;
  }
}

/* Industrial color tune: graphite steel + safety amber */
:root {
  --ink: #edf1ee;
  --panel: #111416;
  --panel-2: #1a2023;
  --muted: #9ea8a4;
  --line: rgba(184, 194, 191, 0.18);
  --soft: #0b0d0e;
  --white: #101315;
  --blue: #6f8791;
  --blue-2: #9aa9ad;
  --cyan: #7c958a;
  --amber: #d2a545;
  --green: #7c958a;
}

html,
body {
  background-color: #080a0b;
}

body {
  background:
    linear-gradient(90deg, rgba(210, 165, 69, 0.055), transparent 28%, transparent 70%, rgba(111, 135, 145, 0.08)),
    repeating-linear-gradient(90deg, rgba(237, 241, 238, 0.03) 0 1px, transparent 1px 124px),
    repeating-linear-gradient(0deg, rgba(237, 241, 238, 0.024) 0 1px, transparent 1px 92px),
    #080a0b;
}

body::before {
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(210, 165, 69, 0.075) 44% 44.35%, transparent 44.35%),
    linear-gradient(315deg, transparent 0 59%, rgba(124, 149, 138, 0.055) 59% 59.28%, transparent 59.28%);
}

.site-header {
  background:
    linear-gradient(180deg, rgba(8, 10, 11, 0.97), rgba(14, 17, 18, 0.9)),
    repeating-linear-gradient(90deg, rgba(184, 194, 191, 0.07) 0 1px, transparent 1px 88px);
  border-bottom-color: rgba(210, 165, 69, 0.34);
}

.site-header::after,
.page-title::after,
.product-hero::after,
.cta-band::after {
  background: linear-gradient(90deg, transparent, var(--amber), var(--blue), transparent);
}

.brand img,
.footer-logo {
  filter:
    drop-shadow(0 0 8px rgba(210, 165, 69, 0.18))
    drop-shadow(0 0 18px rgba(111, 135, 145, 0.22));
}

.nav-links a:hover,
.nav-links a.active {
  color: #090b0c;
  border-color: rgba(210, 165, 69, 0.5);
  background: linear-gradient(135deg, #c89735, #e2c071);
}

.menu-toggle {
  border-color: rgba(210, 165, 69, 0.45);
  background: rgba(17, 20, 22, 0.9);
}

.button {
  color: #090b0c;
  background: linear-gradient(135deg, #c89735, #e0bd69);
  box-shadow: 0 20px 48px rgba(210, 165, 69, 0.18);
}

.button:hover {
  background: linear-gradient(135deg, #d8aa46, #ecd08b);
  box-shadow: 0 24px 56px rgba(210, 165, 69, 0.24);
}

.button-secondary {
  color: #d7dfdc;
  border-color: rgba(124, 149, 138, 0.52);
  background: rgba(124, 149, 138, 0.1);
}

.button-secondary:hover,
.button-dark {
  color: #090b0c;
  background: linear-gradient(135deg, #8fa29a, #d8dfdc);
}

.hero::before {
  background:
    linear-gradient(105deg, rgba(8, 10, 11, 1) 0%, rgba(8, 10, 11, 0.96) 34%, rgba(8, 10, 11, 0.66) 58%, rgba(8, 10, 11, 0.22) 100%),
    linear-gradient(180deg, rgba(210, 165, 69, 0.16), rgba(8, 10, 11, 0.18) 36%, rgba(8, 10, 11, 0.84)),
    repeating-linear-gradient(90deg, rgba(237, 241, 238, 0.048) 0 1px, transparent 1px 116px);
}

.hero::after {
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(111, 135, 145, 0.16) 58% 58.4%, transparent 58.4%),
    linear-gradient(315deg, transparent 0 72%, rgba(210, 165, 69, 0.15) 72% 72.35%, transparent 72.35%),
    linear-gradient(180deg, transparent 0 82%, #080a0b 100%);
}

.hero-copy::before {
  background:
    linear-gradient(180deg, var(--amber), transparent 34%, var(--blue) 72%, transparent),
    repeating-linear-gradient(180deg, #edf1ee 0 8px, transparent 8px 18px);
  box-shadow: 0 0 22px rgba(210, 165, 69, 0.26), 0 0 26px rgba(111, 135, 145, 0.2);
}

.hero .eyebrow,
.eyebrow,
.card-link,
.value-card .number,
.spec-card .number,
.stat-card strong,
.timeline-item time,
.post-meta span,
.footer a:hover {
  color: #d2a545;
}

.hero p {
  border-left-color: rgba(210, 165, 69, 0.36);
}

.hero-panel {
  background:
    linear-gradient(135deg, rgba(210, 165, 69, 0.11), transparent 35%, rgba(111, 135, 145, 0.12)),
    repeating-linear-gradient(90deg, rgba(237, 241, 238, 0.04) 0 1px, transparent 1px 70px),
    #111416;
}

.hero-panel::before,
.panel-metric,
.split-media,
.product-hero-media,
.article-body .hero-image,
.feature-media,
.feature-band,
.spec-table,
.comparison-table,
.process-grid,
.page-title,
.product-hero,
.cta-band,
.footer {
  border-color: rgba(210, 165, 69, 0.24);
}

.hero-panel::before {
  border-color: rgba(210, 165, 69, 0.38);
}

.panel-metric {
  border-right-color: rgba(210, 165, 69, 0.2);
}

.panel-metric strong,
.spec-table th,
.comparison-table th,
.footer h3 {
  color: #e7d7ab;
}

.section {
  background:
    linear-gradient(90deg, rgba(210, 165, 69, 0.028), transparent 30%, transparent 70%, rgba(111, 135, 145, 0.035)),
    #080a0b;
}

.section::before {
  background: linear-gradient(90deg, transparent, rgba(210, 165, 69, 0.32), rgba(111, 135, 145, 0.22), transparent);
}

.section.alt {
  background:
    linear-gradient(115deg, rgba(210, 165, 69, 0.06), transparent 32%),
    repeating-linear-gradient(90deg, rgba(237, 241, 238, 0.026) 0 1px, transparent 1px 110px),
    #0d1011;
}

.section.dark {
  background:
    linear-gradient(135deg, rgba(14, 17, 18, 0.98), rgba(27, 32, 33, 0.96)),
    repeating-linear-gradient(135deg, rgba(210, 165, 69, 0.055) 0 1px, transparent 1px 18px),
    #080a0b;
}

.product-card::before,
.value-card::before,
.blog-card::before,
.spec-card::before,
.contact-card::before,
.timeline-item::before,
.compare-card::before,
.stat-card::before,
.process-step::before,
.thank-you-card::before {
  background: linear-gradient(90deg, var(--amber), transparent 40%, var(--blue));
}

.product-card::after,
.blog-card::after,
.value-card::after,
.contact-card::after {
  border-right-color: rgba(210, 165, 69, 0.45);
  border-bottom-color: rgba(210, 165, 69, 0.45);
}

.product-card:hover,
.value-card:hover,
.blog-card:hover,
.spec-card:hover,
.compare-card:hover {
  border-color: rgba(210, 165, 69, 0.5);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(111, 135, 145, 0.14);
}

.tag {
  color: #101315;
  background: linear-gradient(135deg, #b3bbb8, #e3e7e4);
}

.tag.cyan {
  color: #09100d;
  background: linear-gradient(135deg, #84988f, #d5ddd9);
}

.tag.amber,
.process-step strong {
  color: #120d04;
  background: linear-gradient(135deg, #c89735, #e6c779);
}

.split-media::before,
.product-hero-media::before,
.feature-media::before {
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(210, 165, 69, 0.13) 72% 72.5%, transparent 72.5%),
    repeating-linear-gradient(90deg, rgba(237, 241, 238, 0.04) 0 1px, transparent 1px 80px);
}

.feature-copy::before {
  border-top-color: rgba(124, 149, 138, 0.58);
  border-right-color: rgba(124, 149, 138, 0.58);
}

.spec-table th,
.comparison-table th {
  background: rgba(210, 165, 69, 0.1);
}

.comparison-table td:nth-child(2) {
  color: #d8dfdc;
}

.comparison-table td:nth-child(3) {
  color: #e0c37b;
}

.check-list li::before {
  background: linear-gradient(135deg, var(--amber), var(--blue));
  box-shadow: 0 0 0 4px rgba(210, 165, 69, 0.08), 0 0 16px rgba(111, 135, 145, 0.26);
}

.process-grid {
  background:
    linear-gradient(135deg, rgba(210, 165, 69, 0.09), rgba(111, 135, 145, 0.08)),
    #101315;
}

.page-title,
.product-hero,
.cta-band {
  background:
    linear-gradient(105deg, rgba(8, 10, 11, 1) 0%, rgba(15, 18, 19, 0.97) 48%, rgba(210, 165, 69, 0.105)),
    repeating-linear-gradient(90deg, rgba(237, 241, 238, 0.04) 0 1px, transparent 1px 96px),
    #080a0b;
}

input:focus,
textarea:focus,
select:focus {
  outline-color: rgba(210, 165, 69, 0.13);
  border-color: var(--amber);
}

.thank-you {
  background:
    linear-gradient(115deg, rgba(210, 165, 69, 0.075), transparent 44%, rgba(111, 135, 145, 0.08)),
    repeating-linear-gradient(90deg, rgba(237, 241, 238, 0.032) 0 1px, transparent 1px 92px),
    #080a0b;
}

@media (max-width: 760px) {
  .nav-links {
    border-color: rgba(210, 165, 69, 0.36);
    background: rgba(8, 10, 11, 0.98);
  }

  .panel-metric {
    border-bottom-color: rgba(210, 165, 69, 0.2);
  }
}
