:root {
  --bg: hsl(240 20% 5%);
  --bg-soft: hsl(240 31% 10%);
  --bg-panel: rgba(11, 16, 26, 0.82);
  --fg: hsl(224 100% 97%);
  --muted: hsl(218 17% 60%);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(27, 219, 219, 0.28);
  --primary: hsl(180 70% 48%);
  --primary-strong: hsl(181 100% 32%);
  --primary-foreground: hsl(240 20% 5%);
  --radius: 1rem;
  --container: 1280px;
  --header-height: 80px;
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.grid-overlay,
.ambient,
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grid-overlay {
  z-index: -3;
  background-image:
    linear-gradient(to right, rgba(128, 128, 128, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(128, 128, 128, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

.ambient {
  z-index: -2;
  filter: blur(110px);
}

.ambient-a {
  top: -10%;
  left: -10%;
  width: 34rem;
  height: 34rem;
  background: rgba(27, 219, 219, 0.09);
}

.ambient-b {
  right: -8%;
  bottom: 10%;
  width: 28rem;
  height: 28rem;
  background: rgba(27, 219, 219, 0.07);
}

.stars {
  z-index: -1;
  opacity: 0.75;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
  backdrop-filter: blur(16px);
  background: rgba(5, 8, 14, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--primary);
  transform: rotate(45deg);
}

.brand-mark span {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
}

.brand-text {
  font-family: "Space Mono", monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.site-nav {
  display: inline-flex;
  gap: 1.4rem;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: 3.5rem 5rem;
}

.hero-layout,
.story-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-kicker {
  margin-bottom: 1rem;
  color: rgba(226, 236, 247, 0.86);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

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

h1,
h2 {
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
}

h1 span {
  display: block;
  color: var(--primary);
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero-text,
.mono-copy,
.service-card p,
.product-copy p,
.difference-content p,
.contact-info .mono-copy,
.site-footer p {
  color: var(--muted);
  font-family: "Space Mono", monospace;
  line-height: 1.75;
}

.hero-text {
  max-width: 33rem;
  margin-top: 1.5rem;
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-strip span,
.hero-panel span {
  display: block;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-strip strong,
.hero-panel strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 1.4rem;
  border: 1px solid transparent;
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-strong);
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--fg);
}

.button-full {
  width: 100%;
}

.hero-visual,
.story-diagram {
  position: relative;
}

.hero-visual {
  perspective: 1200px;
}

.hero-frame,
.story-panel {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.hero-frame::before,
.story-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(27, 219, 219, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero-frame:hover::before,
.story-panel:hover::before {
  opacity: 1;
}

.hero-orbit {
  min-height: 640px;
  background:
    radial-gradient(circle at center, rgba(27, 219, 219, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.frame-corner,
.point {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
}

.frame-corner-tl,
.point-tl {
  top: -0.25rem;
  left: -0.25rem;
}

.frame-corner-tr,
.point-tr {
  top: -0.25rem;
  right: -0.25rem;
}

.frame-corner-bl,
.point-bl {
  bottom: -0.25rem;
  left: -0.25rem;
}

.frame-corner-br,
.point-br {
  right: -0.25rem;
  bottom: -0.25rem;
}

.hero-grid-lines,
.line {
  position: absolute;
  background: rgba(27, 219, 219, 0.12);
}

.hero-grid-horizontal,
.line-h {
  left: 0;
  width: 100%;
  height: 1px;
}

.hero-grid-horizontal::before,
.hero-grid-horizontal::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: inherit;
}

.hero-grid-horizontal {
  top: 50%;
  background: rgba(27, 219, 219, 0.26);
}

.hero-grid-horizontal::before {
  top: -25%;
}

.hero-grid-horizontal::after {
  top: 25%;
}

.hero-grid-vertical,
.line-v {
  top: 0;
  height: 100%;
  width: 1px;
}

.hero-grid-vertical::before,
.hero-grid-vertical::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: inherit;
}

.hero-grid-vertical {
  left: 50%;
}

.hero-grid-vertical::before {
  left: -25%;
}

.hero-grid-vertical::after {
  left: 25%;
}

.diamond-core,
.story-panel__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--primary);
  background: rgba(5, 8, 14, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(27, 219, 219, 0.32);
  transform: translate(-50%, -50%) rotate(45deg);
}

.diamond-core__inner,
.story-panel__core span {
  width: 1rem;
  height: 1rem;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

.hero-orbit__halo,
.hero-orbit__ring,
.hero-orbit__beam,
.hero-orbit__core,
.hero-panel {
  position: absolute;
}

.hero-orbit__halo {
  inset: 15%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 219, 219, 0.16), transparent 68%);
  filter: blur(30px);
}

.hero-orbit__ring {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(27, 219, 219, 0.18);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.hero-orbit__ring-a {
  width: 68%;
  height: 68%;
}

.hero-orbit__ring-b {
  width: 82%;
  height: 46%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.hero-orbit__ring-c {
  width: 46%;
  height: 82%;
  transform: translate(-50%, -50%) rotate(16deg);
}

.hero-orbit__beam {
  left: 50%;
  width: 54%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(27, 219, 219, 0.82), transparent);
  transform: translateX(-50%);
}

.hero-orbit__beam-a {
  top: 33%;
}

.hero-orbit__beam-b {
  bottom: 31%;
}

.hero-orbit__core {
  top: 50%;
  left: 50%;
  width: 13rem;
  height: 13rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 219, 219, 0.22);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.18), transparent 16%),
    linear-gradient(180deg, rgba(8, 19, 32, 0.96), rgba(5, 10, 18, 0.98));
  box-shadow:
    inset 0 0 30px rgba(27, 219, 219, 0.08),
    0 0 50px rgba(27, 219, 219, 0.14);
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.hero-orbit__core-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 219, 219, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 219, 219, 0.16) 1px, transparent 1px);
  background-size: 1.3rem 1.3rem;
  opacity: 0.4;
  transform: rotate(14deg) scale(1.2);
}

.hero-orbit__core-inner {
  position: absolute;
  inset: 28%;
  border: 1px solid rgba(27, 219, 219, 0.22);
  border-radius: 999px;
  background: rgba(27, 219, 219, 0.16);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-panel {
  width: 13rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 11, 19, 0.74);
  backdrop-filter: blur(16px);
}

.hero-panel-left {
  top: 18%;
  left: 6%;
}

.hero-panel-right {
  right: 6%;
  bottom: 16%;
}

.hero-label,
.story-panel__meta {
  position: absolute;
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  color: rgba(27, 219, 219, 0.48);
  letter-spacing: 0.2em;
}

.hero-label-top,
.story-panel__meta-top {
  top: 1rem;
  left: 1rem;
}

.hero-label-bottom,
.story-panel__meta-bottom {
  right: 1rem;
  bottom: 1rem;
}

.section {
  padding-block: 8rem;
  position: relative;
}

.section-story,
.section-difference {
  background: rgba(16, 21, 34, 0.34);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.pill {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(27, 219, 219, 0.3);
  border-radius: 999px;
  background: rgba(27, 219, 219, 0.05);
  color: var(--primary);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.story-note {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(27, 219, 219, 0.24);
  position: relative;
}

.story-note::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 1px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.story-note p:first-child {
  color: var(--fg);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.story-note p:last-child {
  margin-top: 0.75rem;
}

.story-panel {
  background: rgba(12, 17, 27, 0.78);
}

.story-panel__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(27, 219, 219, 0.14), transparent 70%);
}

.story-panel__box {
  position: absolute;
  inset: 3rem;
  border: 1px solid rgba(27, 219, 219, 0.18);
}

.line-h-a {
  top: 25%;
}

.line-h-b {
  top: 50%;
  background: rgba(27, 219, 219, 0.26);
}

.line-h-c {
  top: 75%;
}

.line-v-a {
  left: 25%;
}

.line-v-b {
  left: 50%;
}

.line-v-c {
  left: 75%;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 5rem;
}

.section-heading.center {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.section-heading.split h2 {
  max-width: 12ch;
}

.text-link {
  color: var(--primary);
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.services-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.products-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  background: rgba(3, 7, 13, 0.5);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(27, 219, 219, 0.6), transparent);
  transform: scaleX(0);
  transition: transform 300ms ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(27, 219, 219, 0.4);
  background: rgba(10, 18, 31, 0.74);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(27, 219, 219, 0.22);
  border-radius: 0.75rem;
  background: rgba(27, 219, 219, 0.08);
}

.service-icon span {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--primary);
  transform: rotate(45deg);
}

.service-card p {
  margin-top: 1rem;
  min-height: 5.5rem;
  font-size: 0.82rem;
}

.service-metrics {
  display: grid;
  gap: 0.6rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(226, 236, 247, 0.78);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
}

.service-metrics li {
  position: relative;
  padding-left: 1rem;
}

.service-metrics li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--primary);
}

.product-card {
  cursor: pointer;
}

.product-media {
  position: relative;
  margin-bottom: 1.5rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  background: var(--bg-soft);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 219, 219, 0.2);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 350ms ease;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.8;
  transition:
    transform 700ms ease,
    filter 700ms ease,
    opacity 700ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
  filter: grayscale(0);
  opacity: 1;
}

.product-card:hover .product-media::after {
  opacity: 1;
}

.media-corner {
  position: absolute;
  width: 1rem;
  height: 1rem;
  z-index: 2;
}

.media-corner-tl {
  top: 1rem;
  left: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.media-corner-tr {
  top: 1rem;
  right: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-right: 1px solid rgba(255, 255, 255, 0.55);
}

.media-corner-bl {
  bottom: 1rem;
  left: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.media-corner-br {
  right: 1rem;
  bottom: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.product-copy {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.product-category {
  margin-bottom: 0.65rem;
  color: var(--primary);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.product-copy p {
  max-width: 24rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
}

.arrow-chip {
  width: 3rem;
  height: 3rem;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 1.1rem;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.product-card:hover .arrow-chip {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.difference-item {
  position: relative;
}

.difference-bg {
  position: absolute;
  top: -2.8rem;
  left: -1rem;
  font-family: "Space Mono", monospace;
  font-size: clamp(4.5rem, 8vw, 6rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
  transition: color 300ms ease;
}

.difference-item:hover .difference-bg {
  color: rgba(27, 219, 219, 0.1);
}

.difference-content {
  position: relative;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 220ms ease;
}

.difference-item:hover .difference-content {
  border-left-color: var(--primary);
}

.difference-content h3 {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.difference-content h3 span {
  color: var(--primary);
  font-family: "Space Mono", monospace;
  font-size: 0.9rem;
}

.difference-content p {
  font-size: 0.8rem;
}

.section-stats {
  background: rgba(27, 219, 219, 0.05);
}

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

.stat {
  padding-inline: 1rem;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.stat:first-child {
  border-left: 0;
}

.stat strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.stat span {
  color: var(--primary);
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-contact .container {
  position: relative;
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  background: rgba(12, 18, 29, 0.9);
  box-shadow: var(--shadow);
}

.contact-shell::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  background: rgba(27, 219, 219, 0.1);
  filter: blur(100px);
}

.contact-info,
.contact-form {
  position: relative;
  z-index: 1;
  padding: 3.5rem;
}

.contact-info {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 7, 13, 0.45);
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

.contact-info .mono-copy {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 0.82rem;
}

.contact-points {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
}

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

.contact-form {
  display: grid;
  gap: 1.4rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form span {
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 7, 13, 0.75);
  color: var(--fg);
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  resize: none;
  outline: none;
  transition: border-color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.site-footer {
  position: relative;
  padding-block: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(16, 21, 34, 0.45);
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-top {
  align-items: center;
}

.footer-brand {
  margin-bottom: 0.75rem;
}

.footer-brand-text {
  font-size: 1rem;
}

.footer-links {
  display: inline-flex;
  gap: 1.5rem;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(148, 160, 179, 0.55);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.2);
  }
}

@media (max-width: 1100px) {
  .hero-layout,
  .story-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .products-grid,
  .difference-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-orbit {
    min-height: 560px;
  }

  .contact-info {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .site-nav {
    display: none;
  }

  .container {
    padding-inline: 1rem;
  }

  .hero,
  .section {
    padding-block: 4.5rem;
  }

  .services-grid,
  .products-grid,
  .difference-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    width: 11rem;
    padding: 0.85rem 0.95rem;
  }

  .hero-panel-left {
    top: 10%;
    left: 4%;
  }

  .hero-panel-right {
    right: 4%;
    bottom: 10%;
  }

  .contact-info,
  .contact-form {
    padding: 2rem 1.25rem;
  }

  .story-panel__box {
    inset: 2rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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