:root {
  --ink: #071713;
  --ink-2: #0d2821;
  --ink-3: #16382f;
  --green: #6cad2e;
  --acid: #a9ef43;
  --mint: #5ee1b8;
  --paper: #f3f5f0;
  --paper-2: #e7ebe4;
  --white: #ffffff;
  --muted: #6c7d77;
  --line: rgba(7, 23, 19, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --display: "Manrope", "Be Vietnam Pro", sans-serif;
  --body: "Be Vietnam Pro", sans-serif;
  --container: min(1240px, calc(100vw - 48px));
  --radius: 22px;
  --shadow: 0 24px 70px rgba(3, 17, 13, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

::selection {
  background: var(--acid);
  color: var(--ink);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 24px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  background: var(--acid);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  color: var(--ink);
}

.utility-bar {
  height: 35px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.utility-inner,
.utility-inner > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.utility-inner p {
  margin: 0;
}

.utility-inner > div a {
  transition: color 0.2s ease;
}

.utility-inner > div a:hover {
  color: var(--acid);
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(169, 239, 67, 0.13);
  animation: statusPulse 2s ease-in-out infinite;
}

.nav-shell {
  background: rgba(243, 245, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
}

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

.brand > span {
  display: grid;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  line-height: 1;
}

.brand b {
  font: 800 11px/1.2 var(--display);
  letter-spacing: 0.16em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(18px, 2.4vw, 34px);
}

.main-nav a {
  position: relative;
  padding: 26px 0;
  font: 650 13px/1 var(--display);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.round-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.button {
  min-height: 52px;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 700 13px/1 var(--display);
}

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

.button-acid {
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(103, 181, 42, 0.19);
}

.button-acid:hover {
  background: #bcff5b;
  box-shadow: 0 16px 38px rgba(103, 181, 42, 0.28);
}

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

.button-ghost {
  border-color: var(--line);
  background: transparent;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  font-size: 11px;
}

.round-button {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.round-button svg,
.button svg {
  width: 18px;
  height: 18px;
}

.menu-trigger {
  display: none;
}

main {
  min-height: 55vh;
  overflow: clip;
}

.page-loading {
  display: grid;
  min-height: 70vh;
  place-content: center;
  place-items: center;
  color: var(--muted);
}

.loading-rotor {
  width: 58px;
  height: 58px;
  border: 2px solid var(--line);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font: 800 11px/1.3 var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--acid);
}

.section {
  padding: 110px 0;
}

.section-paper {
  background: var(--paper);
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

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

.section-head h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font: 750 clamp(34px, 5vw, 60px)/1.03 var(--display);
  letter-spacing: -0.045em;
}

.section-head > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.section-dark .section-head > p {
  color: rgba(255, 255, 255, 0.58);
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 113px);
  background: var(--ink);
  color: var(--white);
}

.hero-grid {
  display: grid;
  min-height: calc(100vh - 113px);
  grid-template-columns: 0.9fr 1.1fr;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 110px 0;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 32px;
  color: var(--mint);
  font: 750 11px/1 var(--display);
  letter-spacing: 0.17em;
}

.hero-kicker .live-line {
  position: relative;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(94, 225, 184, 0.28);
}

.hero-kicker .live-line::after {
  position: absolute;
  inset: 0;
  background: var(--mint);
  content: "";
  animation: scanLine 2s ease-in-out infinite;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font: 760 clamp(52px, 6.5vw, 91px)/0.93 var(--display);
  letter-spacing: -0.063em;
}

.hero-copy h1 em {
  position: relative;
  display: inline-block;
  color: var(--acid);
  font-style: normal;
}

.hero-copy h1 em::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 2%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--acid), transparent);
  content: "";
}

.hero-copy > p {
  max-width: 580px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
}

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

.hero-actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.hero-actions .button-ghost:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-left: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 65% 45%, rgba(108, 173, 46, 0.15), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #0a211c;
  background-size: auto, 54px 54px, 54px 54px, auto;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0, transparent 18%, transparent 82%, rgba(7, 23, 19, 0.75));
  content: "";
  pointer-events: none;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 53%;
  border: 1px solid rgba(169, 239, 67, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: min(38vw, 560px);
  height: min(38vw, 560px);
  animation: orbitBreath 5s ease-in-out infinite;
}

.orbit-two {
  width: min(28vw, 410px);
  height: min(28vw, 410px);
  border-color: rgba(94, 225, 184, 0.18);
  animation: orbitBreath 5s 1s ease-in-out infinite reverse;
}

.orbit-two::before,
.orbit-one::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(169, 239, 67, 0.6);
  content: "";
}

.orbit-one::after {
  top: 21%;
  right: 7%;
}

.orbit-two::before {
  bottom: 7%;
  left: 26%;
  background: var(--mint);
}

.spindle-stage {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 52%;
  width: min(47vw, 670px);
  transform: translate(-50%, -50%) rotate(-7deg);
  animation: spindleFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 34px 35px rgba(0, 0, 0, 0.38));
}

.spindle-stage img {
  width: 100%;
  transform: scale(1.18);
}

.spindle-glow {
  position: absolute;
  top: 58%;
  left: 51%;
  width: 55%;
  height: 11%;
  border-radius: 50%;
  background: rgba(169, 239, 67, 0.26);
  filter: blur(32px);
  transform: translate(-50%, -50%);
}

.telemetry {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  min-width: 142px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(7, 23, 19, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.telemetry small {
  color: rgba(255, 255, 255, 0.5);
  font: 650 9px/1 var(--display);
  letter-spacing: 0.12em;
}

.telemetry b {
  font: 750 21px/1.1 var(--display);
  letter-spacing: -0.03em;
}

.telemetry span {
  color: var(--mint);
  font-size: 9px;
}

.telemetry-a {
  top: 16%;
  left: 9%;
}

.telemetry-b {
  right: 6%;
  bottom: 17%;
}

.telemetry-b b {
  color: var(--acid);
}

.rpm-gauge {
  position: absolute;
  z-index: 3;
  right: 8%;
  top: 9%;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.rpm-gauge::before {
  position: absolute;
  inset: 8px;
  border: 3px solid transparent;
  border-top-color: var(--acid);
  border-right-color: var(--acid);
  border-radius: 50%;
  content: "";
  animation: spin 4s linear infinite;
}

.rpm-gauge span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.65);
  font: 700 9px/1.2 var(--display);
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-bottom {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--line-light);
  background: rgba(7, 23, 19, 0.82);
  backdrop-filter: blur(14px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-metric {
  display: grid;
  min-height: 102px;
  padding: 19px 24px;
  border-right: 1px solid var(--line-light);
  align-content: center;
}

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

.hero-metric b {
  color: var(--white);
  font: 750 27px/1 var(--display);
  letter-spacing: -0.04em;
}

.hero-metric span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--acid);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  font: 800 11px/1 var(--display);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.marquee-track span::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 64%, rgba(169, 239, 67, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 244, 0.92));
  flex-direction: column;
  grid-column: span 3;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.category-card:first-child {
  grid-column: span 6;
}

.category-card::before {
  position: absolute;
  right: -90px;
  bottom: -120px;
  z-index: -1;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(108, 173, 46, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(108, 173, 46, 0.045);
  content: "";
}

.category-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(0, 39, 27, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 39, 27, 0.04) 1px, transparent 1px);
  background-position: -1px -1px;
  background-size: 34px 34px;
  mask-image: linear-gradient(145deg, transparent 0%, #000 52%, #000 100%);
  opacity: 0.7;
  content: "";
}

.category-card:hover {
  border-color: rgba(108, 173, 46, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.category-card .card-index {
  color: var(--green);
  font: 750 10px/1 var(--display);
  letter-spacing: 0.12em;
}

.category-card h3 {
  position: relative;
  z-index: 2;
  max-width: 270px;
  margin: 16px 0 5px;
  font: 750 23px/1.05 var(--display);
  letter-spacing: -0.035em;
}

.category-card p {
  position: relative;
  z-index: 2;
  max-width: 250px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.category-card .card-count {
  position: relative;
  display: inline-flex;
  z-index: 3;
  width: fit-content;
  min-height: 46px;
  padding: 7px 9px 7px 15px;
  border: 1px solid rgba(4, 33, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(3, 20, 14, 0.08);
  color: var(--ink);
  gap: 8px;
  align-items: center;
  backdrop-filter: blur(14px);
  font: 750 11px/1 var(--display);
}

.category-card .card-count b {
  color: var(--green);
  white-space: nowrap;
}

.category-card .card-count em {
  color: var(--muted);
  font-style: normal;
  white-space: nowrap;
}

.category-card .card-count svg {
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  transition: transform 0.35s ease;
}

.category-card-copy {
  position: relative;
  z-index: 2;
}

.category-card-visual {
  position: relative;
  display: grid;
  z-index: 2;
  margin-top: auto;
  min-height: 170px;
  place-items: center;
}

.category-card-visual::before {
  position: absolute;
  inset: 14% 6%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(4, 33, 24, 0.04), rgba(169, 239, 67, 0.18), rgba(4, 33, 24, 0.03));
  filter: blur(2px);
  content: "";
}

.category-card img {
  position: relative;
  z-index: 1;
  width: min(82%, 300px);
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(3, 20, 14, 0.16));
  transform: rotate(-4deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-card:first-child .category-card-visual {
  min-height: 230px;
}

.category-card:first-child img {
  width: min(72%, 420px);
  max-height: 190px;
}

.category-card:hover img {
  transform: rotate(-2deg) translateX(-12px) scale(1.04);
}

.category-card:hover .card-count svg {
  transform: translateX(3px);
}

.finder-shell {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 30px;
  background: var(--ink-2);
  grid-template-columns: 0.72fr 1.28fr;
}

.finder-intro {
  position: relative;
  min-height: 540px;
  padding: 54px;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
}

.finder-intro::before {
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(169, 239, 67, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(169, 239, 67, 0.025), 0 0 0 140px rgba(169, 239, 67, 0.015);
  content: "";
}

.finder-intro h2 {
  max-width: 440px;
  margin: 22px 0;
  font: 750 clamp(36px, 4vw, 56px)/1.02 var(--display);
  letter-spacing: -0.05em;
}

.finder-intro p {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.58);
}

.finder-sequence {
  position: absolute;
  right: 28px;
  bottom: 25px;
  color: rgba(255, 255, 255, 0.11);
  font: 800 104px/0.8 var(--display);
}

.finder-form {
  display: flex;
  padding: 54px;
  flex-direction: column;
}

.finder-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.finder-field {
  display: grid;
  gap: 9px;
}

.finder-field label,
.filter-label,
.inquiry-dialog label {
  font: 700 10px/1.2 var(--display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.finder-field select,
.finder-field input,
.catalog-search input,
.inquiry-dialog input,
.inquiry-dialog select,
.inquiry-dialog textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.finder-field select:focus,
.finder-field input:focus {
  border-color: var(--acid);
  background: rgba(255, 255, 255, 0.09);
}

.finder-field option {
  background: var(--ink);
}

.finder-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 42px;
}

.finder-submit > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.finder-result {
  display: grid;
  min-height: 100px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.finder-result:empty {
  display: none;
}

.finder-result a {
  display: grid;
  min-width: 0;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
}

.finder-result img {
  width: 54px;
  height: 44px;
  object-fit: contain;
}

.finder-result b {
  display: block;
  overflow: hidden;
  font: 700 11px/1.2 var(--display);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.finder-result small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  flex-direction: column;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.product-card:hover {
  border-color: rgba(108, 173, 46, 0.55);
  box-shadow: 0 22px 54px rgba(5, 25, 19, 0.12);
  transform: translateY(-5px);
}

.product-card-media {
  position: relative;
  display: grid;
  min-height: 228px;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 23, 19, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 23, 19, 0.04) 1px, transparent 1px),
    #eef1eb;
  background-size: 28px 28px;
  place-items: center;
}

.product-card-media::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(108, 173, 46, 0.24);
  border-radius: 50%;
  content: "";
}

.product-card-media img {
  position: relative;
  z-index: 2;
  width: 86%;
  height: 175px;
  object-fit: contain;
  filter: drop-shadow(0 18px 17px rgba(5, 24, 18, 0.14));
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-card-media img {
  transform: scale(1.045) rotate(-1deg);
}

.card-category {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(7, 23, 19, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font: 700 8px/1 var(--display);
  letter-spacing: 0.06em;
  backdrop-filter: blur(10px);
}

.compare-toggle {
  position: absolute;
  z-index: 4;
  top: 13px;
  right: 13px;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(7, 23, 19, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  place-items: center;
}

.compare-toggle.is-active {
  border-color: var(--green);
  background: var(--acid);
}

.compare-toggle svg {
  width: 15px;
}

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

.product-card-body h3 {
  margin: 0;
  font: 750 20px/1.1 var(--display);
  letter-spacing: -0.025em;
}

.product-card-body > small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
}

.quick-specs {
  display: grid;
  margin: 20px 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.quick-specs div {
  min-width: 0;
  padding-left: 10px;
  border-left: 2px solid var(--paper-2);
}

.quick-specs small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.quick-specs b {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  font: 700 11px/1.3 var(--display);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font: 750 10px/1 var(--display);
  letter-spacing: 0.04em;
}

.card-link svg {
  width: 17px;
  transition: transform 0.2s ease;
}

.product-card:hover .card-link svg {
  transform: translate(3px, -3px);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
}

.application-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 34px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
  color: #fff;
  flex-direction: column;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.application-card:hover {
  border-color: rgba(169, 239, 67, 0.32);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.application-card-image,
.application-card-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.application-card-image {
  z-index: -2;
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.01);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.application-card:hover .application-card-image {
  filter: saturate(0.95) contrast(1.12);
  transform: scale(1.055);
}

.application-card-scrim {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 9, 8, 0.08) 0%, rgba(2, 9, 8, 0.48) 45%, rgba(2, 9, 8, 0.96) 100%),
    linear-gradient(90deg, rgba(2, 9, 8, 0.78) 0%, rgba(2, 9, 8, 0.28) 58%, rgba(2, 9, 8, 0.74) 100%),
    radial-gradient(circle at 18% 86%, rgba(169, 239, 67, 0.18), transparent 36%);
}

.application-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font: 750 12px/1 var(--display);
  letter-spacing: 0.11em;
  text-shadow: 0 0 18px rgba(27, 246, 187, 0.35);
}

.application-number::before {
  width: 28px;
  height: 2px;
  background: var(--acid);
  content: "";
}

.application-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(3, 18, 15, 0.34);
  backdrop-filter: blur(10px);
  color: var(--acid);
  place-items: center;
  transition: transform 0.35s ease, background 0.35s ease;
}

.application-icon svg {
  width: 23px;
}

.application-card:hover .application-icon {
  background: rgba(169, 239, 67, 0.08);
  transform: rotate(8deg);
}

.application-card-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.application-card h3 {
  margin: 0 0 12px;
  font: 760 34px/1.08 var(--display);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.56);
}

.application-card p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.62;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.62);
}

.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.application-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(3, 18, 15, 0.38);
  color: rgba(255, 255, 255, 0.82);
  font: 650 12px/1 var(--display);
  backdrop-filter: blur(10px);
}

.application-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #fff;
  font: 750 15px/1 var(--display);
}

.application-link svg {
  width: 18px;
  transition: transform 0.25s ease;
}

.application-card:hover .application-link svg {
  transform: translate(4px, -4px);
}

.story-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 1fr;
}

.story-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(169, 239, 67, 0.15), transparent 26%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--ink-2);
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.story-visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 80%;
  filter: drop-shadow(0 35px 28px rgba(0, 0, 0, 0.36));
  transform: translate(-50%, -50%) rotate(83deg);
}

.story-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(169, 239, 67, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(169, 239, 67, 0.025), 0 0 0 160px rgba(169, 239, 67, 0.018);
  transform: translate(-50%, -50%);
  animation: orbitBreath 5s ease-in-out infinite;
}

.story-copy {
  display: flex;
  padding: clamp(45px, 7vw, 100px);
  background: var(--white);
  flex-direction: column;
  justify-content: center;
}

.story-copy h2 {
  margin: 20px 0 26px;
  font: 750 clamp(40px, 5vw, 67px)/1 var(--display);
  letter-spacing: -0.055em;
}

.story-copy > p {
  color: var(--muted);
  font-size: 15px;
}

.story-points {
  display: grid;
  margin-top: 30px;
  gap: 0;
}

.story-point {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 46px 1fr;
  gap: 15px;
}

.story-point span {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--green);
  font: 750 10px/1 var(--display);
  place-items: center;
}

.story-point b {
  display: block;
  font: 720 13px/1.2 var(--display);
}

.story-point small {
  color: var(--muted);
}

.brand-collab {
  display: grid;
  align-items: center;
  padding: 65px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.brand-collab-logos {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-collab-logos img {
  width: 170px;
}

.brand-collab-logos .plus {
  color: var(--green);
  font: 400 34px/1 var(--display);
}

.cft-wordmark {
  display: grid;
  color: var(--ink);
  line-height: 1;
}

.cft-wordmark b {
  font: 800 30px/1 var(--display);
  letter-spacing: 0.12em;
}

.cft-wordmark small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.22em;
}

.brand-collab h2 {
  margin: 15px 0;
  font: 750 clamp(32px, 4vw, 50px)/1.05 var(--display);
  letter-spacing: -0.045em;
}

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

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--green);
  color: var(--ink);
}

.cta-band::before {
  position: absolute;
  top: 50%;
  right: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(7, 23, 19, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(7, 23, 19, 0.04), 0 0 0 140px rgba(7, 23, 19, 0.03);
  content: "";
  transform: translateY(-50%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-inner h2 {
  max-width: 790px;
  margin: 0;
  font: 760 clamp(40px, 5vw, 67px)/0.98 var(--display);
  letter-spacing: -0.055em;
}

.cta-inner p {
  margin: 18px 0 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  background: var(--ink);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  top: -50%;
  right: -5%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(169, 239, 67, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(169, 239, 67, 0.025), 0 0 0 180px rgba(169, 239, 67, 0.014);
  content: "";
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.breadcrumbs a:hover {
  color: var(--acid);
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0;
  font: 760 clamp(46px, 6vw, 76px)/0.98 var(--display);
  letter-spacing: -0.057em;
}

.page-hero p {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.57);
}

.catalog-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 32px;
}

.catalog-filters {
  position: sticky;
  top: 135px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.filter-group + .filter-group {
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.filter-label {
  display: block;
  margin-bottom: 12px;
}

.filter-options {
  display: grid;
  gap: 8px;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
}

.filter-options input {
  accent-color: var(--green);
}

.filter-options small {
  margin-left: auto;
  color: #9aa8a3;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.catalog-search {
  position: relative;
  flex: 1;
}

.catalog-search input {
  min-height: 50px;
  padding: 0 45px 0 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.catalog-search svg {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 18px;
  color: var(--muted);
  transform: translateY(-50%);
}

.catalog-toolbar select {
  min-height: 50px;
  padding: 0 38px 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.catalog-result-count {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
}

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

.catalog-main .product-card {
  min-height: 400px;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 36px;
}

.empty-state {
  display: grid;
  min-height: 340px;
  padding: 40px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  place-items: center;
  text-align: center;
}

.empty-state h3 {
  margin: 0 0 8px;
  font: 720 23px/1.2 var(--display);
}

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

.product-hero {
  padding: 58px 0 70px;
  background: var(--paper);
}

.product-hero .breadcrumbs {
  color: var(--muted);
}

.product-detail-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
}

.product-gallery {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(rgba(7, 23, 19, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 23, 19, 0.045) 1px, transparent 1px),
    var(--white);
  background-size: 36px 36px;
  place-items: center;
}

.product-gallery::before {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(108, 173, 46, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(108, 173, 46, 0.025);
  content: "";
}

.product-gallery > img {
  position: relative;
  z-index: 2;
  width: min(86%, 720px);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(5, 25, 19, 0.14)) contrast(1.04) saturate(1.04);
  image-rendering: auto;
  transform: translateZ(0);
}

.gallery-tag {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font: 700 9px/1 var(--display);
}

.product-detail h1 {
  margin: 17px 0 8px;
  font: 760 clamp(40px, 5vw, 65px)/0.98 var(--display);
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.product-reference {
  color: var(--muted);
  font-size: 11px;
}

.product-lead {
  margin: 25px 0;
  color: var(--muted);
}

.product-key-specs {
  display: grid;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.product-key-specs div {
  min-width: 0;
  padding: 18px 16px 18px 0;
}

.product-key-specs div:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.product-key-specs small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.product-key-specs b {
  display: block;
  margin-top: 5px;
  font: 720 14px/1.3 var(--display);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.source-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 9px;
}

.source-note .status-dot {
  margin-right: 2px;
}

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

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

.content-card + .content-card {
  margin-top: 20px;
}

.content-card h2 {
  margin: 0 0 24px;
  font: 750 29px/1.1 var(--display);
  letter-spacing: -0.035em;
}

.landing-article h2:not(:first-of-type) {
  margin-top: 34px;
}

.landing-support ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.landing-support li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.72);
}

.landing-support li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(169, 239, 67, 0.12);
  content: "";
  transform: translateY(-50%);
}

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

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

.spec-table tr {
  border-top: 1px solid var(--line);
}

.spec-table th,
.spec-table td {
  padding: 14px 8px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 43%;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.spec-table td {
  font: 650 11px/1.5 var(--display);
}

.drawing-panel img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.download-list {
  display: grid;
  gap: 10px;
}

.download-item {
  display: grid;
  align-items: center;
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  gap: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.download-item:hover {
  border-color: var(--green);
  background: rgba(108, 173, 46, 0.04);
}

.file-type {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--paper);
  color: var(--green);
  font: 800 8px/1 var(--display);
  place-items: center;
  text-transform: uppercase;
}

.download-item b {
  display: block;
  overflow: hidden;
  font: 650 10px/1.3 var(--display);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-item small {
  color: var(--muted);
  font-size: 8px;
}

.product-aside {
  position: sticky;
  top: 135px;
}

.support-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.support-card h3 {
  margin: 15px 0;
  font: 740 26px/1.05 var(--display);
  letter-spacing: -0.035em;
}

.support-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.support-card .button {
  width: 100%;
  margin-top: 12px;
}

.application-detail-grid,
.about-grid,
.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.service-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(7, 23, 19, 0.96), rgba(7, 23, 19, 0.72)),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #0b231d;
  background-size: auto, 58px 58px, 58px 58px, auto;
  color: var(--white);
}

.service-hero-grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.service-hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  font: 760 clamp(44px, 6vw, 78px)/0.98 var(--display);
  letter-spacing: -0.058em;
}

.service-hero-copy p {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.service-hero-copy .button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.service-hero-visual {
  position: relative;
  min-height: 540px;
}

.service-hero-visual::before,
.service-hero-visual::after {
  position: absolute;
  border: 1px solid rgba(169, 239, 67, 0.24);
  border-radius: 50%;
  content: "";
  animation: orbitBreath 5.5s ease-in-out infinite;
}

.service-hero-visual::before {
  inset: 10% 3% 12% 12%;
}

.service-hero-visual::after {
  inset: 22% 18% 22% 24%;
  border-color: rgba(94, 225, 184, 0.18);
  animation-direction: reverse;
}

.service-hero-photo {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 8%;
  width: min(32vw, 380px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(3deg);
}

.service-hero-photo-secondary {
  top: 8%;
  right: auto;
  bottom: auto;
  left: 10%;
  width: min(27vw, 330px);
  transform: rotate(-5deg);
}

.service-hero-photo img {
  width: 100%;
  aspect-ratio: 0.75;
  object-fit: cover;
}

.service-hero-photo-secondary img {
  aspect-ratio: 4 / 3;
}

.service-hero-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 23, 19, 0.78);
  color: var(--acid);
  font: 800 9px/1 var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.service-rotor {
  position: absolute;
  top: 50%;
  left: 53%;
  width: min(36vw, 520px);
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(90deg, #dfe9e5, #7a8984 18%, #f7faf8 35%, #63736d 58%, #f1f7f1 80%, #bdcbc6);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%) rotate(-8deg);
}

.service-rotor::before,
.service-rotor::after {
  position: absolute;
  top: 50%;
  width: 30%;
  height: 20px;
  border-radius: 999px;
  background: #c9d5d0;
  content: "";
  transform: translateY(-50%);
}

.service-rotor::before {
  left: -20%;
}

.service-rotor::after {
  right: -20%;
}

.service-rotor span {
  position: absolute;
  inset: -18px 24%;
  border-top: 2px solid var(--acid);
  border-bottom: 2px solid rgba(94, 225, 184, 0.45);
  border-radius: 50%;
  animation: scanLine 2.2s ease-in-out infinite;
}

.service-scope {
  position: absolute;
  z-index: 2;
  top: 18%;
  left: 6%;
  display: grid;
  gap: 6px;
  min-width: 158px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(7, 23, 19, 0.76);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.service-scope-alt {
  top: auto;
  right: 5%;
  bottom: 16%;
  left: auto;
}

.service-scope b {
  color: var(--mint);
  font: 800 10px/1 var(--display);
  letter-spacing: 0.12em;
}

.service-scope strong {
  font: 760 27px/1 var(--display);
  letter-spacing: -0.04em;
}

.service-scope small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

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

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

.service-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.service-card svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}

.service-card h3 {
  margin: 28px 0 10px;
  font: 760 23px/1.08 var(--display);
  letter-spacing: -0.035em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.service-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: var(--line-light);
}

.service-step {
  min-height: 390px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.service-step img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  border-radius: 12px;
  object-fit: cover;
}

.service-step span {
  color: var(--acid);
  font: 800 12px/1 var(--display);
  letter-spacing: 0.12em;
}

.service-step h3 {
  margin: 14px 0 12px;
  font: 750 22px/1.08 var(--display);
  letter-spacing: -0.035em;
}

.service-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.service-assets {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.service-assets h2 {
  max-width: 760px;
  margin: 14px 0 16px;
  font: 750 clamp(34px, 5vw, 58px)/1.03 var(--display);
  letter-spacing: -0.048em;
}

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

.service-assets code {
  padding: 2px 7px;
  border-radius: 7px;
  background: rgba(7, 23, 19, 0.08);
}

.asset-folder-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.asset-folder-list span {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--green);
  font: 800 12px/1 var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.large-copy h2 {
  margin: 17px 0 24px;
  font: 750 clamp(38px, 5vw, 62px)/1.02 var(--display);
  letter-spacing: -0.05em;
}

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

.feature-stack {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 56px 1fr;
  gap: 20px;
}

.feature-row > span {
  color: var(--green);
  font: 800 11px/1 var(--display);
}

.feature-row h3 {
  margin: 0 0 7px;
  font: 720 16px/1.2 var(--display);
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-card {
  min-height: 190px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card svg {
  width: 24px;
  color: var(--green);
}

.contact-card h3 {
  margin: 28px 0 7px;
  font: 720 15px/1.2 var(--display);
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.policy-content {
  max-width: 780px;
}

.policy-content h2 {
  margin-top: 38px;
  font: 720 24px/1.2 var(--display);
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.compare-page-grid {
  display: grid;
  overflow-x: auto;
  grid-template-columns: 190px repeat(var(--compare-columns, 2), minmax(230px, 1fr));
}

.compare-cell {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.compare-cell.is-label {
  color: var(--muted);
  font-size: 10px;
}

.compare-product-head img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.compare-product-head h3 {
  overflow-wrap: anywhere;
  font: 720 17px/1.15 var(--display);
}

.compare-dock {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 680px;
  margin: auto;
  padding: 13px 15px 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  background: rgba(7, 23, 19, 0.92);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.compare-dock[hidden] {
  display: none;
}

.compare-dock > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 6px rgba(169, 239, 67, 0.12);
}

.compare-dock p {
  display: grid;
  margin: 0;
}

.compare-dock b {
  font: 700 11px/1.2 var(--display);
}

.compare-dock small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
}

.compare-thumbs {
  display: flex;
}

.compare-thumbs img {
  width: 36px;
  height: 36px;
  margin-left: -5px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
}

.compare-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-clear {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font: 700 10px/1 var(--display);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.compare-clear:hover {
  border-color: rgba(169, 239, 67, 0.45);
  background: rgba(169, 239, 67, 0.12);
  color: var(--white);
}

.compare-dock .button {
  min-height: 40px;
  background: var(--acid);
  color: var(--ink);
  font-size: 10px;
}

.chat-assistant {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 24px;
  display: grid;
  justify-items: end;
  pointer-events: none;
  transition: bottom var(--transition);
}

body.has-compare-dock .chat-assistant {
  bottom: 112px;
}

.chat-assistant button,
.chat-assistant input,
.chat-panel {
  pointer-events: auto;
}

.chat-launcher {
  display: grid;
  min-width: 310px;
  min-height: 64px;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0%, rgba(169, 239, 67, 0.16), transparent 44%),
    linear-gradient(135deg, rgba(7, 23, 19, 0.98), rgba(13, 40, 33, 0.96));
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  text-align: left;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.chat-launcher:hover {
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
}

.chat-launcher:focus-visible,
.chat-close:focus-visible,
.chat-quick-actions button:focus-visible,
.chat-compose input:focus-visible,
.chat-compose button:focus-visible,
.chat-action:focus-visible {
  outline: 3px solid rgba(169, 239, 67, 0.32);
  outline-offset: 2px;
}

.chat-launcher-icon,
.chat-agent-avatar {
  position: relative;
  flex: 0 0 auto;
}

.chat-launcher-icon {
  width: 46px;
  height: 46px;
}

.chat-launcher-icon img,
.chat-agent-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: var(--paper);
  object-fit: cover;
}

.chat-launcher-icon i,
.chat-agent-avatar i {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(169, 239, 67, 0.1);
}

.chat-launcher-copy {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.chat-launcher-copy strong {
  overflow: hidden;
  font: 850 12px/1.2 var(--display);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-launcher-copy small {
  margin-top: 4px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-launcher-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
}

.chat-assistant.is-open .chat-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: grid;
  overflow: hidden;
  width: min(420px, calc(100vw - 32px));
  height: min(650px, calc(100vh - 120px));
  grid-template-rows: auto 1fr auto auto auto;
  border: 1px solid rgba(7, 23, 19, 0.12);
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  animation: chat-panel-in 0.26s ease both;
}

.chat-panel[hidden] {
  display: none;
}

@keyframes chat-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
}

.chat-header {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background:
    radial-gradient(circle at 18% -42%, rgba(169, 239, 67, 0.22), transparent 55%),
    radial-gradient(circle at 92% 20%, rgba(94, 225, 184, 0.15), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
  color: var(--white);
}

.chat-agent {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.chat-agent-avatar {
  width: 44px;
  height: 44px;
}

.chat-agent > span:last-child {
  display: grid;
  min-width: 0;
}

.chat-agent strong {
  overflow: hidden;
  font: 850 12px/1.2 var(--display);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-agent small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
}

.chat-agent small i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(169, 239, 67, 0.12);
}

.chat-close {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.chat-close span,
.chat-compose button span {
  display: grid;
  place-items: center;
}

.chat-close svg,
.chat-compose button svg {
  display: block;
  width: 18px;
  height: 18px;
  color: currentColor;
  stroke-width: 2;
}

.chat-close:hover {
  border-color: rgba(169, 239, 67, 0.42);
  background: rgba(169, 239, 67, 0.12);
  color: var(--acid);
}

.chat-messages {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 18px 16px 10px;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.chat-message {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}

.chat-message.is-user {
  justify-content: flex-end;
}

.chat-message-avatar {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.chat-message-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background: var(--paper);
  object-fit: cover;
}

.chat-bubble {
  max-width: 84%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px 17px 17px 17px;
  background: var(--white);
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.05);
  color: #23302c;
  font-size: 10px;
  line-height: 1.6;
}

.chat-message.is-user .chat-bubble {
  border-color: var(--ink);
  border-radius: 17px 8px 17px 17px;
  background: var(--ink);
  color: var(--white);
}

.chat-bubble p {
  margin: 0;
}

.chat-bubble p + p,
.chat-bubble .chat-result-list,
.chat-bubble .chat-actions,
.chat-bubble .chat-spec-list {
  margin-top: 10px;
}

.chat-bubble strong {
  color: var(--ink);
}

.chat-message.is-user .chat-bubble strong {
  color: var(--white);
}

.chat-result-list {
  display: grid;
  gap: 7px;
}

.chat-product-result {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8faf5;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.chat-product-result:hover {
  border-color: rgba(108, 173, 46, 0.55);
  background: var(--white);
}

.chat-product-result img {
  width: 43px;
  height: 39px;
  border-radius: 7px;
  background: var(--white);
  object-fit: contain;
}

.chat-product-result span {
  display: grid;
  min-width: 0;
}

.chat-product-result strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-product-result small {
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-product-result > svg {
  color: var(--green);
}

.chat-spec-list {
  display: grid;
  gap: 6px;
}

.chat-spec-list div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.chat-spec-list span {
  color: var(--muted);
  font-size: 8px;
}

.chat-spec-list strong {
  font-size: 8.5px;
  text-align: right;
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chat-action {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: 800 8.5px/1 var(--display);
}

.chat-action.is-primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.chat-action svg {
  width: 12px;
  height: 12px;
}

.chat-typing .chat-bubble {
  display: flex;
  min-width: 54px;
  align-items: center;
  gap: 4px;
}

.chat-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted);
  animation: chat-dot 0.9s ease-in-out infinite;
}

.chat-typing i:nth-child(2) {
  animation-delay: 0.12s;
}

.chat-typing i:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes chat-dot {
  50% {
    opacity: 0.35;
    transform: translateY(-3px);
  }
}

.chat-quick-actions {
  display: flex;
  gap: 7px;
  padding: 8px 14px 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.chat-quick-actions::-webkit-scrollbar {
  display: none;
}

.chat-quick-actions button {
  min-height: 32px;
  flex: 0 0 auto;
  padding: 0 11px;
  border: 1px solid #d4dbd1;
  border-radius: 999px;
  background: transparent;
  color: #3d4c47;
  cursor: pointer;
  font-size: 8.5px;
  font-weight: 800;
}

.chat-quick-actions button:hover {
  border-color: rgba(108, 173, 46, 0.58);
  background: var(--white);
}

.chat-compose {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chat-compose input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 10px;
}

.chat-compose input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(169, 239, 67, 0.12);
}

.chat-compose button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  cursor: pointer;
}

.chat-disclaimer {
  margin: 0;
  padding: 0 14px 10px;
  background: var(--white);
  color: var(--muted);
  font-size: 7.5px;
  line-height: 1.45;
  text-align: center;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.search-overlay,
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.search-overlay[hidden],
.modal[hidden] {
  display: none;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(2, 13, 10, 0.75);
  backdrop-filter: blur(7px);
}

.search-dialog,
.inquiry-dialog {
  position: relative;
  z-index: 2;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.search-dialog {
  width: min(900px, calc(100% - 32px));
  max-height: calc(100vh - 50px);
  margin: 25px auto;
  padding: clamp(25px, 5vw, 58px);
  overflow-y: auto;
  border-radius: 26px;
}

.search-dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}

.search-dialog h2,
.inquiry-dialog h2 {
  margin: 14px 0 28px;
  font: 750 clamp(31px, 4vw, 50px)/1.02 var(--display);
  letter-spacing: -0.05em;
}

.search-field {
  position: relative;
  display: block;
}

.search-field input {
  width: 100%;
  height: 67px;
  padding: 0 70px 0 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: var(--white);
  font: 650 15px/1 var(--display);
}

.search-field > span[data-icon="search"] {
  position: absolute;
  top: 50%;
  left: 18px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--green);
  transform: translateY(-50%);
}

.search-field > span[data-icon="search"] svg {
  display: block;
  width: 21px;
  height: 21px;
}

.search-field kbd {
  position: absolute;
  top: 50%;
  right: 15px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 9px;
  transform: translateY(-50%);
}

.search-results {
  display: grid;
  margin-top: 18px;
  gap: 7px;
}

.search-result {
  display: grid;
  align-items: center;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  grid-template-columns: 80px minmax(0, 1fr) 20px;
  gap: 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.search-result:hover {
  border-color: var(--line);
  background: var(--white);
}

.search-result img {
  width: 80px;
  height: 56px;
  object-fit: contain;
}

.search-result b {
  display: block;
  font: 700 13px/1.2 var(--display);
}

.search-result small {
  color: var(--muted);
  font-size: 9px;
}

.inquiry-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  padding: clamp(28px, 5vw, 58px);
  overflow-y: auto;
  border-radius: 28px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.inquiry-dialog > p {
  color: var(--muted);
}

.inquiry-dialog form {
  display: grid;
  margin-top: 28px;
  gap: 17px;
}

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

.inquiry-dialog label {
  display: grid;
  gap: 8px;
}

.inquiry-dialog input,
.inquiry-dialog select,
.inquiry-dialog textarea {
  min-height: 50px;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  text-transform: none;
  resize: vertical;
}

.inquiry-dialog textarea {
  padding-top: 14px;
}

.inquiry-dialog form > small {
  color: var(--muted);
  font-size: 9px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font: 700 11px/1.45 var(--display);
}

.form-feedback.is-pending {
  color: var(--green);
}

.form-feedback.is-success {
  color: #12805c;
}

.form-feedback.is-error {
  color: #c0392b;
}

.button.is-loading {
  opacity: 0.78;
  cursor: wait;
}

.site-footer {
  background: #04100d;
  color: var(--white);
}

.footer-top {
  display: grid;
  padding: 75px 0 58px;
  grid-template-columns: 1.45fr 0.7fr 0.7fr 1.15fr;
  gap: 45px;
}

.brand-footer img {
  filter: brightness(0) invert(1);
}

.brand-footer > span {
  border-left-color: var(--line-light);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.46);
}

.footer-intro > p {
  max-width: 390px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.made-in {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.made-in span {
  padding: 7px 9px;
  border: 1px solid var(--line-light);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.5);
  font: 700 7px/1 var(--display);
  letter-spacing: 0.08em;
}

.footer-top h3 {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.9);
  font: 700 11px/1 var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-top > div:not(.footer-intro) > a {
  display: block;
  margin: 11px 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  transition: color 0.2s ease;
}

.footer-top a:hover {
  color: var(--acid) !important;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  line-height: 1.7;
}

.footer-contact b {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes statusPulse {
  50% { box-shadow: 0 0 0 7px rgba(169, 239, 67, 0.05); }
}

@keyframes scanLine {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

@keyframes orbitBreath {
  50% { opacity: 0.55; transform: translate(-50%, -50%) scale(1.045); }
}

@keyframes spindleFloat {
  50% { transform: translate(-50%, calc(-50% - 12px)) rotate(-5deg); }
}

.product-gallery > img {
  animation-name: productFloat;
}

@keyframes productFloat {
  50% { transform: translateY(-10px) rotate(-1deg); }
}

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

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 36px, 1080px);
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 7.2vw, 75px);
  }

  .category-card {
    grid-column: span 4;
  }

  .category-card:first-child {
    grid-column: span 8;
  }

  .finder-shell {
    grid-template-columns: 1fr;
  }

  .finder-intro {
    min-height: 380px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

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

  .catalog-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .product-detail-grid {
    gap: 40px;
  }

  .product-content {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 26px;
  }

  .footer-top {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 28px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: calc(100% - 28px);
  }

  .utility-inner > p {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .nav-inner {
    min-height: 70px;
  }

  .brand img {
    width: 102px;
  }

  .brand > span {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 105px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(243, 245, 240, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

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

  .main-nav a {
    padding: 15px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

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

  .menu-trigger {
    display: inline-flex;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 620px;
    padding: 70px 0 60px;
  }

  .hero-copy h1 {
    font-size: clamp(51px, 13vw, 80px);
  }

  .hero-visual {
    min-height: 540px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .spindle-stage {
    width: 86vw;
  }

  .orbit-one {
    width: 76vw;
    height: 76vw;
  }

  .orbit-two {
    width: 58vw;
    height: 58vw;
  }

  .hero-bottom {
    position: static;
  }

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

  .hero-metric {
    border-bottom: 1px solid var(--line-light);
  }

  .section {
    padding: 78px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .category-card,
  .category-card:first-child {
    grid-column: span 6;
  }

  .category-card:first-child img {
    right: -10%;
    width: 77%;
  }

  .service-card-grid,
  .service-timeline,
  .asset-folder-list {
    grid-template-columns: 1fr;
  }

  .service-step {
    min-height: auto;
  }

  .service-hero-copy h1 {
    font-size: clamp(42px, 11vw, 64px);
  }

  .finder-form,
  .finder-intro {
    padding: 35px;
  }

  .story-grid,
  .brand-collab,
  .product-detail-grid,
  .product-content,
  .application-detail-grid,
  .service-hero-grid,
  .service-grid,
  .service-assets,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-hero,
  .service-hero-grid {
    min-height: auto;
  }

  .service-hero-grid {
    padding: 74px 0 54px;
  }

  .service-hero-visual {
    min-height: 420px;
  }

  .service-hero-photo {
    right: 8%;
    width: min(58vw, 360px);
  }

  .service-hero-photo-secondary {
    left: 4%;
    width: min(46vw, 300px);
  }

  .service-rotor {
    width: min(72vw, 500px);
  }

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

  .story-visual {
    min-height: 500px;
  }

  .brand-collab {
    padding: 42px;
    gap: 42px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    position: static;
  }

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

  .product-gallery {
    min-height: 440px;
  }

  .product-aside {
    position: static;
  }

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

  .footer-intro {
    grid-column: span 2;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .utility-inner > div {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .utility-inner > div a {
    font-size: 9px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-copy {
    min-height: 600px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 14.5vw, 68px);
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .telemetry {
    min-width: 116px;
    padding: 12px;
  }

  .telemetry b {
    font-size: 16px;
  }

  .telemetry-a {
    top: 11%;
    left: 4%;
  }

  .telemetry-b {
    right: 4%;
    bottom: 12%;
  }

  .rpm-gauge {
    right: 4%;
    width: 85px;
    height: 85px;
  }

  .hero-metric {
    min-height: 88px;
    padding: 15px;
  }

  .hero-metric b {
    font-size: 22px;
  }

  .section-head h2,
  .finder-intro h2 {
    font-size: 37px;
  }

  .category-card,
  .category-card:first-child {
    grid-column: span 12;
  }

  .finder-intro,
  .finder-form {
    padding: 28px 22px;
  }

  .finder-steps,
  .finder-result,
  .product-grid,
  .catalog-main .product-grid,
  .application-grid,
  .form-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .finder-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card {
    min-height: 400px;
  }

  .story-visual {
    min-height: 400px;
  }

  .service-hero-visual {
    min-height: 520px;
  }

  .service-hero-photo {
    right: 2%;
    bottom: 4%;
    width: min(72vw, 360px);
  }

  .service-hero-photo-secondary {
    left: 0;
    width: min(64vw, 310px);
  }

  .service-card-grid,
  .service-timeline,
  .asset-folder-list {
    grid-template-columns: 1fr;
  }

  .story-copy,
  .brand-collab {
    padding: 32px 22px;
  }

  .brand-collab-logos {
    gap: 15px;
  }

  .brand-collab-logos img {
    width: 126px;
  }

  .cta-inner {
    align-items: start;
    flex-direction: column;
  }

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

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

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-options {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    min-height: 330px;
  }

  .product-key-specs {
    grid-template-columns: 1fr;
  }

  .product-key-specs div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .content-card {
    padding: 24px 18px;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    padding: 8px 4px;
  }

  .spec-table td {
    padding-top: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-intro {
    grid-column: span 1;
  }

  .search-dialog,
  .inquiry-dialog {
    width: calc(100% - 16px);
    margin: 8px auto;
    max-height: calc(100vh - 16px);
    border-radius: 18px;
  }

  .search-field kbd {
    display: none;
  }

  .search-field input {
    padding-right: 20px;
  }

  .search-result {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .search-result > svg {
    display: none;
  }

  .compare-dock {
    align-items: flex-start;
    right: 8px;
    bottom: 8px;
    left: 8px;
    gap: 12px;
  }

  .chat-assistant {
    right: 8px;
    bottom: 8px;
  }

  .chat-launcher {
    min-width: 0;
    min-height: 56px;
    grid-template-columns: 40px 1fr;
    padding: 7px 16px 7px 8px;
  }

  .chat-launcher-icon {
    width: 40px;
    height: 40px;
  }

  .chat-launcher-arrow {
    display: none;
  }

  .chat-panel {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: min(78vh, 650px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 24px 24px 0 0;
  }

  .chat-header {
    min-height: 70px;
  }

  .chat-messages {
    padding-right: 13px;
    padding-left: 13px;
  }

  body.has-compare-dock .chat-assistant {
    bottom: 126px;
  }

  .compare-thumbs {
    display: none;
  }

  .compare-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .compare-actions .button,
  .compare-clear {
    min-height: 36px;
    white-space: nowrap;
  }
}

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

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