:root {
  --black: #050505;
  --panel: #0d0d0d;
  --panel-soft: #151515;
  --orange: #ff5a1f;
  --orange-2: #ff8a28;
  --text: #f7f3ee;
  --muted: #a9a09a;
  --line: rgba(255, 90, 31, 0.25);
  --white-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 90, 31, 0.16), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(255, 138, 40, 0.12), transparent 26%),
    var(--black);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 90, 31, 0.08), transparent);
  animation: sweep 9s linear infinite;
}

img,
video {
  display: block;
  width: 100%;
}

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

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

.cursor-glow {
  position: fixed;
  z-index: 50;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.22), transparent 66%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 14px;
  left: clamp(14px, 4vw, 52px);
  right: clamp(14px, 4vw, 52px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 90, 31, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 0 clamp(18px, 5vw, 76px) 34px;
  display: grid;
  align-content: end;
  gap: 24px;
  background: var(--black);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.15) 0%, rgba(5, 5, 5, 0.35) 55%, rgba(5, 5, 5, 0.92) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.15) 46%, rgba(5, 5, 5, 0.05) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 100vh;
  padding-top: 112px;
  padding-bottom: 40px;
}

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

.system-band,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.hero-copy > p:not(.eyebrow),
.system-copy p,
.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.6;
}

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

.primary-link,
.secondary-link,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 900;
}

.primary-link,
.contact-form button {
  border: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #111;
  box-shadow: 0 18px 42px rgba(255, 90, 31, 0.26);
}

.primary-link:hover,
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(255, 90, 31, 0.36);
}

.secondary-link {
  border: 1px solid var(--line);
  background: rgba(255, 90, 31, 0.08);
  color: var(--text);
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-metrics span,
.service-card,
.process-step,
.automation-board,
.contact-form {
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.78);
  box-shadow: var(--shadow);
}

.hero-metrics span {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero-metrics strong {
  display: block;
  color: var(--text);
  font-size: 24px;
}

main > section,
main > .hero,
.system-band,
.contact-section {
  border-bottom: 1px solid var(--white-line);
}

.section {
  padding: 86px clamp(18px, 5vw, 76px);
}

.section-head {
  max-width: 890px;
  margin-bottom: 34px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  min-height: 280px;
  border-color: rgba(45, 200, 120, 0.32);
  background:
    linear-gradient(160deg, rgba(45, 200, 120, 0.13), transparent 55%),
    linear-gradient(200deg, rgba(90, 220, 150, 0.06), transparent 65%),
    rgba(9, 13, 10, 0.9);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(45, 200, 120, 0.2), transparent 48%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #4ee08a;
  box-shadow: 0 26px 60px rgba(45, 200, 120, 0.18), var(--shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card span {
  position: relative;
  color: #4ee08a;
  font-weight: 900;
}

.service-card h3,
.service-card p {
  position: relative;
}

.service-card p,
.process-step p {
  color: var(--muted);
  line-height: 1.62;
}

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

.products-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 90, 31, 0.10), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(255, 138, 40, 0.08), transparent 38%),
    #0a0605;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.products-lede {
  max-width: 640px;
  margin-top: 14px;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 90, 31, 0.13), transparent 55%),
    linear-gradient(200deg, rgba(255, 138, 40, 0.06), transparent 65%),
    rgba(9, 9, 9, 0.92);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange-2);
  box-shadow: 0 26px 60px rgba(255, 90, 31, 0.16), var(--shadow);
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.product-badge {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px;
  background: rgba(255, 90, 31, 0.1);
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-badge-soon {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--white-line);
}

.product-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
}

.product-sub {
  margin-top: -6px;
  color: var(--orange-2);
  font-size: 14px;
  font-weight: 800;
}

.product-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-tags li {
  border: 1px solid var(--white-line);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.product-link {
  margin-top: auto;
  padding-top: 6px;
  color: var(--text);
  font-weight: 900;
  border-bottom: 1px solid var(--line);
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.product-link:hover {
  color: var(--orange-2);
  border-color: var(--orange-2);
}

.product-card-soon {
  border-style: dashed;
  border-color: var(--white-line);
  background: rgba(13, 13, 13, 0.7);
  justify-content: center;
  text-align: center;
  align-items: center;
}

.product-card-soon .product-top {
  justify-content: center;
}

.product-accent-red {
  border-color: rgba(225, 45, 45, 0.35);
  background:
    linear-gradient(160deg, rgba(225, 45, 45, 0.16), transparent 55%),
    linear-gradient(200deg, rgba(255, 90, 90, 0.07), transparent 65%),
    rgba(12, 8, 8, 0.92);
}
.product-accent-red .product-badge {
  border-color: rgba(225, 45, 45, 0.45);
  background: rgba(225, 45, 45, 0.12);
  color: #ff6b6b;
}
.product-accent-red .product-sub {
  color: #ff6b6b;
}
.product-accent-red .product-link {
  border-color: rgba(225, 45, 45, 0.45);
}
.product-accent-red:hover {
  border-color: #ff6b6b;
  box-shadow: 0 26px 60px rgba(225, 45, 45, 0.2), var(--shadow);
}
.product-accent-red:hover .product-link {
  color: #ff6b6b;
  border-color: #ff6b6b;
}

.product-accent-blue {
  border-color: rgba(70, 140, 255, 0.35);
  background:
    linear-gradient(160deg, rgba(70, 140, 255, 0.16), transparent 55%),
    linear-gradient(200deg, rgba(120, 170, 255, 0.07), transparent 65%),
    rgba(8, 10, 14, 0.92);
}
.product-accent-blue .product-badge {
  border-color: rgba(70, 140, 255, 0.45);
  background: rgba(70, 140, 255, 0.12);
  color: #7fb0ff;
}
.product-accent-blue .product-sub {
  color: #7fb0ff;
}
.product-accent-blue .product-link {
  border-color: rgba(70, 140, 255, 0.45);
}
.product-accent-blue:hover {
  border-color: #7fb0ff;
  box-shadow: 0 26px 60px rgba(70, 140, 255, 0.2), var(--shadow);
}
.product-accent-blue:hover .product-link {
  color: #7fb0ff;
  border-color: #7fb0ff;
}

.product-accent-teal {
  border-color: rgba(45, 200, 175, 0.35);
  background:
    linear-gradient(160deg, rgba(45, 200, 175, 0.16), transparent 55%),
    linear-gradient(200deg, rgba(90, 220, 195, 0.07), transparent 65%),
    rgba(8, 13, 12, 0.92);
}
.product-accent-teal .product-badge {
  border-color: rgba(45, 200, 175, 0.45);
  background: rgba(45, 200, 175, 0.12);
  color: #5fe0c8;
}
.product-accent-teal .product-sub {
  color: #5fe0c8;
}
.product-accent-teal .product-link {
  border-color: rgba(45, 200, 175, 0.45);
}
.product-accent-teal:hover {
  border-color: #5fe0c8;
  box-shadow: 0 26px 60px rgba(45, 200, 175, 0.2), var(--shadow);
}
.product-accent-teal:hover .product-link {
  color: #5fe0c8;
  border-color: #5fe0c8;
}

.product-accent-purple {
  border-color: rgba(170, 110, 255, 0.35);
  background:
    linear-gradient(160deg, rgba(170, 110, 255, 0.16), transparent 55%),
    linear-gradient(200deg, rgba(190, 140, 255, 0.07), transparent 65%),
    rgba(11, 9, 14, 0.92);
}
.product-accent-purple .product-badge {
  border-color: rgba(170, 110, 255, 0.45);
  background: rgba(170, 110, 255, 0.12);
  color: #c39bff;
}
.product-accent-purple .product-sub {
  color: #c39bff;
}
.product-accent-purple .product-link {
  border-color: rgba(170, 110, 255, 0.45);
}
.product-accent-purple:hover {
  border-color: #c39bff;
  box-shadow: 0 26px 60px rgba(170, 110, 255, 0.2), var(--shadow);
}
.product-accent-purple:hover .product-link {
  color: #c39bff;
  border-color: #c39bff;
}

.system-band {
  padding: 86px clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(255, 90, 31, 0.11), transparent),
    #090909;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.automation-board {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.board-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: var(--panel-soft);
  overflow: hidden;
}

.board-row::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 31, 0.24), transparent);
  animation: rowScan 3.2s ease-in-out infinite;
}

.board-row:nth-child(2)::before { animation-delay: 0.35s; }
.board-row:nth-child(3)::before { animation-delay: 0.7s; }
.board-row:nth-child(4)::before { animation-delay: 1.05s; }
.board-row:nth-child(5)::before { animation-delay: 1.4s; }

.board-row span,
.board-row strong {
  position: relative;
}

.board-row strong {
  color: var(--orange-2);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-step {
  padding: 24px;
  min-height: 230px;
  border-color: rgba(70, 140, 255, 0.32);
  background:
    linear-gradient(160deg, rgba(70, 140, 255, 0.13), transparent 55%),
    linear-gradient(200deg, rgba(120, 170, 255, 0.06), transparent 65%),
    rgba(8, 10, 14, 0.9);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: #7fb0ff;
  box-shadow: 0 26px 60px rgba(70, 140, 255, 0.18), var(--shadow);
}

.process-step strong {
  color: #7fb0ff;
  font-size: 34px;
}

.trust-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 90, 31, 0.35);
  border-radius: 8px;
  background: rgba(255, 90, 31, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(100px, 130px) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
}

.about-photo img {
  width: 100%;
  max-width: 130px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow);
}

.about-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.about-copy p strong {
  color: var(--text);
}

.about-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.about-links a {
  color: var(--orange-2);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}

.about-links a:hover {
  color: var(--text);
  border-color: var(--text);
}

.case-studies-section {
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  background:
    radial-gradient(circle at 85% 15%, rgba(70, 140, 255, 0.08), transparent 40%),
    #0a0a0c;
}

.case-study {
  border: 1px solid var(--white-line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(16, 16, 16, 0.78);
  box-shadow: var(--shadow);
}

.case-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(70, 140, 255, 0.4);
  border-radius: 8px;
  background: rgba(70, 140, 255, 0.1);
  color: #7fb0ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-study h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

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

.case-label {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-grid p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.case-studies-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

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

.pricing-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.78);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
}

.pricing-card-featured {
  border-color: var(--orange-2);
  background:
    linear-gradient(160deg, rgba(255, 90, 31, 0.14), transparent 55%),
    rgba(16, 16, 16, 0.85);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  padding: 5px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #111;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.pricing-amount {
  margin-bottom: 14px;
  color: var(--orange-2);
  font-size: 32px;
  font-weight: 900;
}

.pricing-amount span {
  font-size: 18px;
}

.pricing-desc {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  margin-bottom: 16px;
}

.pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pricing-list li {
  padding-left: 18px;
  position: relative;
  color: var(--text);
  font-size: 14px;
}

.pricing-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange-2);
}

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

.faq-section {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.78);
  padding: 18px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--orange-2);
  font-size: 20px;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.category-section {
  padding-top: 30px;
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-cloud span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 16px;
  background: rgba(255, 90, 31, 0.08);
  color: #f5d7c9;
  font-weight: 800;
  animation: breathe 4.5s ease-in-out infinite;
}

.category-cloud span:nth-child(2n) {
  animation-delay: -1.3s;
}

.category-cloud span:nth-child(3n) {
  animation-delay: -2.4s;
}

.contact-section {
  margin: 40px clamp(18px, 5vw, 76px) 76px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(225, 45, 45, 0.4);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 15%, rgba(225, 45, 45, 0.18), transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(255, 90, 90, 0.13), transparent 42%),
    #0c0707;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: #080808;
  color: var(--text);
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 90, 31, 0.45);
}

.contact-form button {
  cursor: pointer;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-links li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-label {
  min-width: 82px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-links a {
  color: var(--text);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-links a:hover {
  color: var(--orange-2);
  border-color: var(--orange-2);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px clamp(18px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--white-line);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--orange-2);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes dashFlow {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.04);
  }
}

@keyframes rowScan {
  0% {
    transform: translateX(-120%);
  }
  55%,
  100% {
    transform: translateX(320%);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(255, 90, 31, 0);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(255, 90, 31, 0.16);
  }
}

@keyframes sweep {
  0% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(80%);
  }
}

@media (max-width: 1100px) {
  .system-band,
  .contact-section,
  .service-grid,
  .process-line,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-section {
    grid-template-columns: 110px 1fr;
  }

  .case-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 64px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--white-line);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.96);
  }

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

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

  .system-band,
  .contact-section,
  .service-grid,
  .process-line,
  .product-grid,
  .hero-metrics,
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    max-width: 100px;
    margin: 0 auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    left: 10px;
    right: 10px;
  }

  .brand span {
    font-size: 14px;
  }

  .hero,
  .section,
  .system-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-section {
    margin-left: 16px;
    margin-right: 16px;
  }
}
