:root {
  --ink: #11151a;
  --ink-2: #1a2027;
  --graphite: #242b33;
  --panel: #f7f8f8;
  --panel-2: #eceff0;
  --steel: #56616b;
  --muted: #6e7780;
  --line: #cfd5d8;
  --line-dark: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --copper: #c97935;
  --copper-dark: #9a5223;
  --cyan: #31c4cf;
  --cyan-dark: #087f8a;
  --green: #2f8e6d;
  --shadow: 0 18px 46px rgba(17, 21, 26, 0.16);
  --shadow-strong: 0 28px 80px rgba(17, 21, 26, 0.3);
  --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:
    linear-gradient(90deg, rgba(17, 21, 26, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(17, 21, 26, 0.025) 1px, transparent 1px),
    #f5f6f4;
  background-size: 34px 34px;
  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);
}

strong {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background:
    linear-gradient(90deg, rgba(49, 196, 207, 0.08), transparent 28%, rgba(201, 121, 53, 0.08)),
    rgba(16, 20, 25, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  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: 12px;
  color: var(--white);
  font-weight: 850;
}

.brand img {
  width: 112px;
  height: auto;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
}

.brand span {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 780;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

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

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(49, 196, 207, 0.42);
  border-radius: 6px;
  color: var(--white);
  background: rgba(49, 196, 207, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nav-cta:hover {
  border-color: rgba(201, 121, 53, 0.72);
  background: rgba(201, 121, 53, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

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

.button,
.button-light,
.button-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 14px;
  cursor: pointer;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button::before,
.button-light::before,
.button-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.24) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover::before,
.button-light:hover::before,
.button-secondary:hover::before {
  transform: translateX(120%);
}

.button {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #f2a35f, var(--copper));
  box-shadow: 0 14px 34px rgba(201, 121, 53, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(201, 121, 53, 0.38);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.button-light:hover {
  border-color: rgba(49, 196, 207, 0.72);
  background: rgba(49, 196, 207, 0.16);
  transform: translateY(-3px);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(17, 21, 26, 0.18);
  background: linear-gradient(180deg, #ffffff, #edf1f2);
  box-shadow: 0 10px 24px rgba(17, 21, 26, 0.08);
}

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

.hero,
.page-hero,
.product-hero {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: #0d1117;
}

.hero {
  min-height: 72vh;
}

.page-hero,
.product-hero {
  min-height: 430px;
}

.hero > img,
.page-hero > img,
.product-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.02);
}

.hero::after,
.page-hero::after,
.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 11, 15, 0.94), rgba(20, 26, 32, 0.8) 48%, rgba(20, 26, 32, 0.2)),
    linear-gradient(0deg, rgba(8, 11, 15, 0.86), rgba(8, 11, 15, 0.08) 58%),
    radial-gradient(circle at 68% 30%, rgba(201, 121, 53, 0.16), transparent 32%);
}

.hero::before,
.page-hero::before,
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 74%, rgba(49, 196, 207, 0.15) 74% 75%, transparent 75%);
  background-size: 48px 48px, 48px 48px, 320px 320px;
  mask-image: linear-gradient(90deg, black, rgba(0, 0, 0, 0.74) 60%, transparent 92%);
}

.hero-content,
.page-hero-content,
.product-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 56px;
}

.hero-copy {
  width: min(760px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  box-shadow: 12px 0 0 rgba(49, 196, 207, 0.8);
}

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

h1 {
  max-width: 850px;
  font-size: 82px;
}

.page-title {
  font-size: 68px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 17px;
}

.hero-copy p,
.page-hero-content p,
.product-hero-content p {
  width: min(690px, 100%);
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.hero-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-strong);
}

.hero-spec {
  position: relative;
  min-height: 112px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%),
    #171d24;
  transition: transform 220ms ease, background-color 220ms ease;
}

.hero-spec::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.hero-spec:hover {
  transform: translateY(-4px);
  background-color: #1d252d;
}

.hero-spec:hover::after {
  transform: scaleX(1);
}

.hero-spec strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.hero-spec span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

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

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

.section.alt {
  background:
    linear-gradient(90deg, rgba(201, 121, 53, 0.05), transparent 32%, rgba(49, 196, 207, 0.055)),
    var(--panel-2);
  border-top: 1px solid rgba(17, 21, 26, 0.06);
  border-bottom: 1px solid rgba(17, 21, 26, 0.06);
}

.section.dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(49, 196, 207, 0.08), transparent 42%, rgba(201, 121, 53, 0.12)),
    linear-gradient(135deg, #101419, #20262d);
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.section-head p {
  width: min(430px, 100%);
}

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

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

.section-head.center p {
  width: auto;
  margin: 18px auto 0;
}

.section.dark p,
.section.dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

.product-grid,
.blog-grid,
.value-grid,
.spec-grid,
.case-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.case-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.product-card,
.blog-card,
.value-card,
.spec-card,
.contact-panel,
.form-panel,
.article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 26, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 248, 248, 0.96)),
    var(--white);
  box-shadow: 0 10px 26px rgba(17, 21, 26, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.product-card::before,
.blog-card::before,
.value-card::before,
.spec-card::before,
.contact-panel::before,
.form-panel::before,
.article-card::before,
.side-panel::before,
.process-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.product-card:hover,
.blog-card:hover,
.value-card:hover,
.spec-card:hover,
.process-card:hover,
.side-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 196, 207, 0.42);
  box-shadow: 0 24px 54px rgba(17, 21, 26, 0.16);
}

.product-card:hover::before,
.blog-card:hover::before,
.value-card:hover::before,
.spec-card:hover::before,
.contact-panel:hover::before,
.form-panel:hover::before,
.article-card:hover::before,
.side-panel:hover::before,
.process-card:hover::before {
  transform: scaleX(1);
}

.product-card > a,
.blog-card > a {
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.product-card img,
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 560ms ease, filter 240ms ease;
}

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

.product-card-body,
.blog-card-body,
.value-card,
.spec-card {
  padding: 24px;
}

.product-card h3,
.blog-card h3,
.value-card h3,
.spec-card h3 {
  color: var(--ink);
}

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

.product-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(49, 196, 207, 0.3);
  border-radius: 6px;
  color: #075e66;
  background: rgba(49, 196, 207, 0.09);
  font-size: 12px;
  font-weight: 850;
}

.tag:nth-child(odd) {
  border-color: rgba(201, 121, 53, 0.34);
  color: #79441e;
  background: rgba(201, 121, 53, 0.1);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--cyan-dark);
  font-weight: 900;
  transition: color 180ms ease;
}

.card-link::after {
  content: ">";
  margin-left: 8px;
  color: var(--copper);
  transition: transform 180ms ease;
}

.product-card:hover .card-link,
.blog-card:hover .card-link,
.card-link:hover {
  color: var(--copper-dark);
}

.product-card:hover .card-link::after,
.blog-card:hover .card-link::after,
.card-link:hover::after {
  transform: translateX(5px);
}

.split,
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.split-media,
.feature-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 26, 0.12);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.split-media::after,
.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(49, 196, 207, 0.16), transparent 42%, rgba(201, 121, 53, 0.18));
}

.split-media img,
.feature-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06);
  transition: transform 620ms ease;
}

.split-media:hover img,
.feature-media:hover img {
  transform: scale(1.04);
}

.feature-band {
  padding: 10px 0;
}

.feature-copy {
  padding: 20px 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 11px;
  height: 11px;
  border: 2px solid var(--copper);
  border-radius: 50%;
  box-shadow: 8px 0 0 -3px rgba(49, 196, 207, 0.9);
}

.spec-table-wrap {
  overflow: auto;
  border: 1px solid rgba(17, 21, 26, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 21, 26, 0.08);
}

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

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

.spec-table th {
  width: 28%;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(201, 121, 53, 0.12), transparent 78%),
    #e8ecec;
  font-size: 14px;
}

.spec-table td {
  color: var(--steel);
  background: rgba(255, 255, 255, 0.86);
}

.spec-table tr {
  transition: background-color 180ms ease;
}

.spec-table tr:hover th,
.spec-table tr:hover td {
  background-color: rgba(49, 196, 207, 0.07);
}

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

.compare-table th:nth-child(2) {
  color: var(--green);
}

.compare-table th:nth-child(3) {
  color: var(--copper-dark);
}

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

.metric {
  position: relative;
  min-height: 128px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%),
    rgba(255, 255, 255, 0.055);
  transition: transform 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.metric:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 196, 207, 0.42);
  background-color: rgba(255, 255, 255, 0.09);
}

.metric:hover::before {
  transform: scaleX(1);
}

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

.metric span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.process-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 26, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f2f4f4);
  box-shadow: 0 10px 26px rgba(17, 21, 26, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.process-card::after {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--graphite));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.process-card h3 {
  font-size: 20px;
}

.process-card p {
  margin-top: 10px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

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

.breadcrumb a + a::before,
.breadcrumb a + span::before {
  content: "/";
  margin-right: 8px;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.42);
}

.product-hero .tag {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

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

.side-panel {
  position: sticky;
  top: 98px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 26, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f1f4f4),
    var(--white);
  box-shadow: 0 12px 28px rgba(17, 21, 26, 0.1);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.side-panel h3 {
  font-size: 20px;
}

.side-panel .button {
  width: 100%;
  margin-top: 20px;
}

.mini-spec {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mini-spec div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.mini-spec strong {
  color: var(--ink);
  text-align: right;
}

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

.article-body h2,
.article-body h3 {
  margin-top: 36px;
  color: var(--ink);
}

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

.article-body img {
  width: 100%;
  max-height: 520px;
  margin: 28px 0;
  object-fit: cover;
  border: 1px solid rgba(17, 21, 26, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-meta span,
.blog-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.page-hero .article-meta span {
  color: rgba(255, 255, 255, 0.7);
}

.blog-card .blog-meta {
  display: block;
  margin-bottom: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-panel,
.form-panel {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-item strong,
.contact-item a {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f9fbfb);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(49, 196, 207, 0.45);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(49, 196, 207, 0.14);
}

.form-panel button {
  margin-top: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(90deg, rgba(49, 196, 207, 0.08), transparent 36%, rgba(201, 121, 53, 0.1)),
    #0d1117;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
  padding: 58px 0;
}

.footer-brand img {
  width: 118px;
  padding: 8px;
  border-radius: 6px;
  background: var(--white);
}

.footer-brand p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-col h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  transition: color 180ms ease, transform 180ms ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 80px 16px;
  color: var(--white);
  background:
    linear-gradient(rgba(12, 16, 21, 0.86), rgba(12, 16, 21, 0.88)),
    url("https://storage.googleapis.com/cg-webase/media/1780137559777-4adefed5.jpg") center / cover;
}

.thank-you-inner {
  width: min(720px, 100%);
  text-align: center;
}

.thank-you-inner p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.thank-you-inner .button {
  margin-top: 28px;
}

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

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

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

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

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 64px;
  }

  .page-title {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

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

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

  .product-layout,
  .contact-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

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

  .brand img {
    width: 96px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(18, 22, 27, 0.98);
    box-shadow: var(--shadow-strong);
  }

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

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

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

  .nav-cta {
    justify-content: flex-start;
    margin-top: 6px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content,
  .page-hero-content,
  .product-hero-content {
    padding: 72px 0 44px;
  }

  h1 {
    font-size: 48px;
  }

  .page-title {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy p,
  .page-hero-content p,
  .product-hero-content p {
    font-size: 16px;
  }

  .hero-specs,
  .blog-grid,
  .value-grid,
  .spec-grid,
  .footer-grid,
  .split,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero-specs {
    margin-top: 0;
    width: 100%;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .hero-spec {
    min-height: 92px;
    padding: 22px 16px;
  }

  .section {
    padding: 70px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 16px;
  }

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

  .footer-bottom {
    display: block;
  }

  .footer-bottom span + span {
    display: block;
    margin-top: 8px;
  }
}

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

  h1 {
    font-size: 40px;
  }

  .page-title {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

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

  .product-grid,
  .product-grid.two,
  .process-grid,
  .metric-band,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-card img,
  .blog-card img {
    height: 210px;
  }

  .product-card-body,
  .blog-card-body,
  .value-card,
  .spec-card,
  .contact-panel,
  .form-panel {
    padding: 20px;
  }

  .page-hero,
  .product-hero {
    min-height: 390px;
  }

  .hero-spec {
    min-height: 84px;
  }
}
