:root {
  --ink: #11100d;
  --ink-soft: #1c1913;
  --panel: #252117;
  --panel-2: #332b1e;
  --paper: #f4efe5;
  --paper-2: #fbfaf5;
  --white: #ffffff;
  --muted: #6f685b;
  --muted-dark: rgba(255, 248, 234, 0.68);
  --line: #dfd4c0;
  --line-dark: rgba(244, 224, 188, 0.18);
  --brass: #c8953b;
  --brass-bright: #e5b75f;
  --ember: #b86135;
  --olive: #a5b648;
  --rust: #7a351f;
  --shadow: 0 28px 70px rgba(35, 26, 14, 0.18);
  --deep-shadow: 0 32px 86px rgba(0, 0, 0, 0.34);
  --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, 16, 13, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 16, 13, 0.025) 1px, transparent 1px),
    var(--paper-2);
  background-size: 44px 44px, 44px 44px, auto;
  line-height: 1.58;
  letter-spacing: 0;
}

::selection {
  color: var(--ink);
  background: rgba(229, 183, 95, 0.55);
}

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

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

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

button,
input,
textarea,
select,
a,
.product-card,
.blog-card,
.metric,
.value-card,
.spec-card,
.stat-card,
.contact-card,
.comparison-card,
.side-panel,
.media-frame,
.media-frame img,
.feature-media img,
.chip,
.category,
.filter-button {
  transition: color 190ms ease, background-color 190ms ease, border-color 190ms ease, box-shadow 190ms ease, transform 190ms ease, filter 190ms ease, opacity 190ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(17, 16, 13, 0.91);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 183, 95, 0.76), transparent);
  pointer-events: none;
}

.nav {
  width: min(1200px, 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: 14px;
  color: var(--white);
  font-weight: 850;
}

.brand img {
  width: 112px;
  height: auto;
  background: var(--paper-2);
  border: 1px solid rgba(244, 224, 188, 0.38);
  border-radius: 4px;
  padding: 6px 8px;
}

.brand span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-left: 14px;
  border-left: 1px solid rgba(244, 224, 188, 0.25);
  color: rgba(255, 248, 234, 0.78);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 248, 234, 0.76);
  font-size: 14px;
  font-weight: 760;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--brass-bright);
  transform: scaleX(0);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-color: rgba(229, 183, 95, 0.28);
  background: rgba(255, 248, 234, 0.07);
}

.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-dark);
  border-radius: 6px;
  background: rgba(255, 248, 234, 0.04);
  color: var(--white);
  cursor: pointer;
}

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

.button,
.button-secondary,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 860;
  cursor: pointer;
}

.button {
  color: #151008;
  background: linear-gradient(135deg, var(--brass-bright), var(--brass));
  box-shadow: 0 18px 42px rgba(200, 149, 59, 0.27);
}

.button:hover {
  transform: translateY(-3px);
  filter: brightness(1.04) saturate(1.06);
  box-shadow: 0 22px 48px rgba(200, 149, 59, 0.36);
}

.button-secondary {
  color: var(--ink);
  background: var(--paper-2);
  border-color: var(--line);
}

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

.button-light {
  color: var(--white);
  background: rgba(255, 248, 234, 0.08);
  border-color: rgba(255, 248, 234, 0.32);
}

.button-light:hover {
  background: rgba(255, 248, 234, 0.16);
  border-color: rgba(229, 183, 95, 0.62);
  transform: translateY(-3px);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero > img,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.1);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.96), rgba(17, 16, 13, 0.82) 42%, rgba(17, 16, 13, 0.25)),
    linear-gradient(180deg, rgba(17, 16, 13, 0.24), rgba(17, 16, 13, 0.9)),
    radial-gradient(circle at 78% 22%, rgba(184, 97, 53, 0.24), transparent 30%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(244, 224, 188, 0.08) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(135deg, rgba(229, 183, 95, 0.1) 0 1px, transparent 1px 28px);
  opacity: 0.45;
  mask-image: linear-gradient(90deg, black, transparent 74%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1200px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 106px 0 150px;
  animation: heroLift 760ms ease both;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 22%;
  width: 3px;
  height: 56%;
  background: linear-gradient(var(--brass-bright), var(--ember), transparent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.thank-you .eyebrow {
  color: var(--brass-bright);
}

.hero h1,
.page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 6.9vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(280px, 46vw);
  height: 6px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--brass-bright), var(--ember), transparent);
}

.hero p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 248, 234, 0.8);
  font-size: 19px;
}

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

.hero-dashboard {
  width: min(1200px, calc(100% - 32px));
  margin: -78px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(244, 224, 188, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(229, 183, 95, 0.12), transparent 30%),
    rgba(28, 25, 19, 0.96);
  box-shadow: var(--deep-shadow);
}

.metric {
  position: relative;
  min-height: 138px;
  padding: 27px;
  border-right: 1px solid var(--line-dark);
  overflow: hidden;
}

.metric::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 0;
  width: 56px;
  height: 3px;
  background: var(--olive);
}

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

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

.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 248, 234, 0.72);
  font-size: 13px;
  font-weight: 760;
}

.metric:hover {
  transform: translateY(-2px);
  background: rgba(229, 183, 95, 0.08);
}

.section {
  padding: 104px 0;
}

.section.alt {
  background:
    linear-gradient(90deg, rgba(122, 53, 31, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 16, 13, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px, 72px 72px, auto;
}

.section.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(229, 183, 95, 0.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(244, 224, 188, 0.05) 0 1px, transparent 1px 58px),
    var(--ink);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 38px;
  margin-bottom: 42px;
}

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

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

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

.section-head h2,
.split-copy h2,
.feature-copy h2,
.article-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 3.5vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.dark .section-head h2,
.dark .split-copy h2,
.dark .feature-copy h2,
.dark .article-body h2,
.dark p {
  color: var(--white);
}

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

.product-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.product-card {
  grid-column: span 6;
}

.product-card:nth-child(4n + 1),
.product-card:nth-child(4n) {
  grid-column: span 7;
}

.product-card:nth-child(4n + 2),
.product-card:nth-child(4n + 3) {
  grid-column: span 5;
}

.blog-grid,
.value-grid,
.spec-grid.three,
.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card,
.blog-card,
.value-card,
.spec-card,
.stat-card,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(35, 26, 14, 0.07);
}

.product-card::after,
.blog-card::after,
.value-card::after,
.spec-card::after,
.stat-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--olive), transparent);
  transform: scaleX(0);
  transform-origin: left;
}

.product-card:hover,
.blog-card:hover,
.value-card:hover,
.spec-card:hover,
.stat-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 149, 59, 0.62);
  box-shadow: var(--shadow);
}

.product-card:hover::after,
.blog-card:hover::after,
.value-card:hover::after,
.spec-card:hover::after,
.stat-card:hover::after,
.contact-card:hover::after {
  transform: scaleX(1);
}

.product-card {
  display: grid;
  grid-template-rows: 252px 1fr;
}

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

.product-card img,
.blog-card img {
  width: 100%;
  height: 252px;
  object-fit: cover;
  background: var(--panel);
  filter: saturate(1.12) contrast(1.04) brightness(1.02);
}

.blog-card img {
  height: 232px;
}

.product-card:hover img,
.blog-card:hover img,
.media-frame:hover img,
.feature-media:hover img {
  transform: scale(1.045);
  filter: saturate(1.2) contrast(1.08) brightness(1.04);
}

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

.product-card-body {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-content: start;
}

.product-card h2,
.product-card h3,
.blog-card h2,
.blog-card h3,
.value-card h3,
.spec-card h3,
.stat-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.product-card h2 a:hover,
.product-card h3 a:hover,
.blog-card h2 a:hover,
.blog-card h3 a:hover,
.footer-grid a:hover,
.contact-card a:hover {
  color: var(--rust);
}

.product-card p,
.blog-card p,
.value-card p,
.spec-card p,
.stat-card p,
.contact-card p {
  font-size: 15px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--rust);
  font-size: 14px;
  font-weight: 920;
}

.card-link::after {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

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

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

.chip,
.category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(165, 182, 72, 0.32);
  border-radius: 999px;
  color: #515d19;
  background: rgba(165, 182, 72, 0.13);
  font-size: 12px;
  font-weight: 850;
}

.chip.hot {
  color: #754017;
  border-color: rgba(184, 97, 53, 0.34);
  background: rgba(184, 97, 53, 0.14);
}

.chip:hover,
.category:hover {
  transform: translateY(-2px);
  background: rgba(229, 183, 95, 0.18);
}

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

.split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

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

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 18px;
  z-index: 2;
  width: 74px;
  height: 74px;
  border-top: 3px solid var(--brass-bright);
  border-left: 3px solid var(--brass-bright);
  pointer-events: none;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04) brightness(1.02);
}

.spec-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  box-shadow: 0 12px 34px rgba(35, 26, 14, 0.06);
}

.spec-table th,
.spec-table td {
  padding: 15px 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 tr:hover td {
  background: rgba(229, 183, 95, 0.1);
}

.spec-table th {
  width: 35%;
  color: var(--ink);
  background: #eee5d4;
}

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

.check-list li,
.plain-list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--olive);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--paper-2);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 2px;
  background: var(--ember);
}

.dark .check-list li,
.dark .plain-list li {
  color: rgba(255, 248, 234, 0.76);
}

.dark .check-list li::before {
  box-shadow: inset 0 0 0 3px var(--ink);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(229, 183, 95, 0.12), transparent 40%),
    rgba(255, 248, 234, 0.055);
  box-shadow: var(--deep-shadow);
}

.feature-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.value-card,
.spec-card,
.stat-card {
  min-height: 184px;
}

.stat-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--rust);
  font-size: 40px;
  line-height: 1;
}

.dark .stat-card strong {
  color: var(--brass-bright);
}

.dark .value-card,
.dark .spec-card,
.dark .stat-card {
  border-color: var(--line-dark);
  background: rgba(255, 248, 234, 0.075);
}

.dark .value-card h3,
.dark .spec-card h3,
.dark .stat-card h3 {
  color: var(--white);
}

.dark .value-card p,
.dark .spec-card p,
.dark .stat-card p {
  color: rgba(255, 248, 234, 0.74);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.comparison-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.comparison-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 149, 59, 0.52);
  box-shadow: var(--shadow);
}

.comparison-card.highlight {
  color: var(--white);
  border-color: rgba(229, 183, 95, 0.32);
  background:
    linear-gradient(145deg, rgba(200, 149, 59, 0.18), transparent 42%),
    #1b1710;
}

.comparison-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.comparison-card.highlight h3,
.comparison-card.highlight p,
.comparison-card.highlight li {
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero .container {
  position: relative;
  z-index: 3;
  padding: 130px 0 66px;
  animation: heroLift 640ms ease both;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 248, 234, 0.78);
  font-size: 18px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 830;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.active {
  color: var(--ink);
  background: var(--brass-bright);
  border-color: var(--brass);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 149, 59, 0.22);
}

.product-card.is-hidden {
  display: none;
}

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

.article-body {
  min-width: 0;
}

.article-body > .hero-image {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}

.article-body h2 {
  margin-top: 36px;
  font-size: clamp(25px, 2.3vw, 35px);
}

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

.article-body .spec-table {
  margin-bottom: 28px;
}

.side-panel {
  position: sticky;
  top: 100px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(165, 182, 72, 0.11), transparent 45%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(35, 26, 14, 0.11);
}

.side-panel:hover {
  border-color: rgba(200, 149, 59, 0.52);
  transform: translateY(-3px);
}

.side-panel h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.side-panel dl {
  margin: 22px 0;
}

.side-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-panel dd {
  margin: 5px 0 16px;
  color: var(--ink);
  font-weight: 780;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: rgba(200, 149, 59, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(229, 183, 95, 0.26);
  border-color: var(--brass);
}

.contact-form button {
  justify-self: start;
}

.site-footer {
  color: rgba(255, 248, 234, 0.72);
  background:
    repeating-linear-gradient(90deg, rgba(244, 224, 188, 0.04) 0 1px, transparent 1px 64px),
    #11100d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1.2fr 1fr;
  gap: 34px;
  padding: 64px 0 40px;
}

.footer-grid img {
  width: 118px;
  margin-bottom: 18px;
  background: var(--paper-2);
  border-radius: 4px;
  padding: 6px 8px;
}

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

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 9px;
}

.footer-grid a:hover {
  color: var(--brass-bright);
  transform: translateX(3px);
}

.footer-grid p {
  color: rgba(255, 248, 234, 0.68);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 30px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
}

.thank-you {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 80px 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(229, 183, 95, 0.24), transparent 42%),
    linear-gradient(rgba(17, 16, 13, 0.76), rgba(17, 16, 13, 0.86)),
    url("https://storage.googleapis.com/cg-webase/media/1780137790872-5b2b6374.jpg") center / cover;
}

.thank-you-box {
  width: min(680px, 100%);
  padding: 36px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(17, 16, 13, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--deep-shadow);
}

.thank-you-box h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.thank-you-box p {
  margin-top: 18px;
  color: rgba(255, 248, 234, 0.76);
}

.thank-you-box .button {
  margin-top: 26px;
}

.js-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal.reveal-left {
  transform: translateX(-34px);
}

.js-reveal.reveal-right {
  transform: translateX(34px);
}

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

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 1040px) {
  .product-card,
  .product-card:nth-child(4n + 1),
  .product-card:nth-child(4n),
  .product-card:nth-child(4n + 2),
  .product-card:nth-child(4n + 3) {
    grid-column: span 6;
  }

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

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

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

  .detail-layout,
  .contact-grid,
  .split,
  .split.reverse,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    min-height: 68px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(17, 16, 13, 0.98);
    box-shadow: var(--deep-shadow);
  }

  .nav-links.open {
    display: grid;
    gap: 6px;
  }

  .nav-links a {
    border-radius: 6px;
  }

  .section {
    padding: 74px 0;
  }

  .section-head {
    display: block;
  }

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

  .blog-grid,
  .value-grid,
  .spec-grid.three,
  .stats-grid,
  .comparison,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-content {
    min-height: 640px;
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero-content::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .hero-dashboard,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card:nth-child(4n + 1),
  .product-card:nth-child(4n),
  .product-card:nth-child(4n + 2),
  .product-card:nth-child(4n + 3) {
    grid-column: auto;
  }

  .hero-dashboard {
    margin-top: -38px;
  }

  .metric {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

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

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

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

  .product-card {
    grid-template-rows: 214px 1fr;
  }

  .product-card img {
    height: 214px;
  }

  .footer-bottom {
    display: block;
  }

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