﻿:root {
  --bg: #0b1218;
  --bg-alt: #101b24;
  --ink: #f1f5f7;
  --muted: #9cb0c0;
  --accent: #7dffb6;
  --accent-2: #33d1ff;
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.04);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  background: radial-gradient(circle at 20% 20%, #12212c 0%, #0a1016 35%, #070b10 100%);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2" stitchTiles="stitch"/></filter><rect width="120" height="120" filter="url(%23n)" opacity="0.04"/></svg>');
  pointer-events: none;
  z-index: 0;
}

.aurora {
  position: fixed;
  inset: -20% -10% 40% -10%;
  background: radial-gradient(circle at 30% 40%, rgba(125, 255, 182, 0.16), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(51, 209, 255, 0.18), transparent 40%),
    radial-gradient(circle at 50% 70%, rgba(125, 255, 182, 0.12), transparent 42%);
  filter: blur(48px);
  mix-blend-mode: screen;
  animation: aurora-drift 16s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  backdrop-filter: blur(14px);
  background: rgba(7, 12, 16, 0.8);
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.brand-name {
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #041014;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(51, 209, 255, 0.25);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

main {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

section {
  padding: 80px 6vw;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
  padding-top: 60px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% -10% -10%;
  background:
    radial-gradient(circle at 20% 20%, rgba(125, 255, 182, 0.25), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(51, 209, 255, 0.22), transparent 40%),
    linear-gradient(135deg, rgba(10, 18, 24, 0.9), rgba(7, 11, 16, 0.8));
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.65));
  background-size: 100% 6px;
  opacity: 0.15;
  animation: scanline 8s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.4rem, 3vw + 1.5rem, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.impact-text {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 30px rgba(51, 209, 255, 0.25);
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.signal-strip {
  margin: 20px 0 26px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(125, 255, 182, 0.25);
  background: rgba(6, 10, 14, 0.65);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 16px 40px rgba(0, 0, 0, 0.3);
}

.signal-track {
  display: flex;
  gap: 28px;
  padding: 10px 18px;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  animation: signal-scroll 18s linear infinite;
}

.signal-track span {
  opacity: 0.85;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: -10% 0 auto 0;
  height: 120%;
  background: radial-gradient(circle at 50% 40%, rgba(125, 255, 182, 0.35), transparent 60%);
  filter: blur(24px);
  z-index: -2;
}

.metric-float {
  position: absolute;
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(125, 255, 182, 0.25);
  background: rgba(8, 14, 18, 0.78);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  font-size: 12px;
  color: var(--muted);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.metric-float strong {
  color: var(--ink);
  font-size: 14px;
}

.metric-float-a {
  top: 6%;
  left: 8%;
}

.metric-float-b {
  bottom: 18%;
  left: 4%;
  animation-delay: 1.8s;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.35)) saturate(1.05) contrast(1.06) brightness(0.98);
}

.orb {
  position: absolute;
  inset: -10% 10% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(125, 255, 182, 0.7), rgba(51, 209, 255, 0.05));
  filter: blur(12px);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 6s ease-in-out infinite;
}

.hero-card {
  position: absolute;
  bottom: -40px;
  right: 0;
  background: rgba(10, 18, 24, 0.9);
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 18px;
  width: 240px;
  backdrop-filter: blur(8px);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(800px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.card-title {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.card-metric {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

.card-note {
  font-size: 11px;
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.proof h2 {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 16px;
}

.proof-right {
  display: grid;
  gap: 16px;
}

.proof-card {
  background: rgba(13, 22, 28, 0.6);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
}

.matrix {
  background: linear-gradient(180deg, rgba(13, 22, 28, 0.6), rgba(9, 14, 19, 0.9));
  border: 1px solid var(--line);
  border-radius: 32px;
}

.matrix-header {
  margin-bottom: 24px;
}

.matrix-header h2 {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 10px;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.matrix-item {
  background: rgba(6, 10, 14, 0.6);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 18px;
}

.matrix-item .label {
  font-weight: 600;
  margin-bottom: 10px;
}

.bar {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
}

.industries h2,
.products h2,
.downloads h2,
.factory h2,
.cta h2 {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 20px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.industry-card {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 18px;
  background: rgba(6, 10, 14, 0.45);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.product-list {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.product-list li {
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  color: var(--muted);
}

.products-gallery {
  display: grid;
  gap: 16px;
}

.products-gallery img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06) brightness(0.98);
}

.downloads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
  background: rgba(8, 14, 18, 0.6);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.downloads-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(6, 10, 14, 0.7);
}

.downloads-card h3 {
  margin-bottom: 8px;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.downloads-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(6, 10, 14, 0.6);
  display: grid;
  gap: 10px;
}

.page-hero {
  text-align: center;
  padding-top: 80px;
}

.page-hero h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.2rem, 2.4vw + 1.4rem, 3.2rem);
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.page-hero p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

.page-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(9, 14, 19, 0.9), rgba(6, 10, 14, 0.8));
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: -10% -10% -10% -10%;
  background:
    radial-gradient(circle at 20% 20%, rgba(125, 255, 182, 0.2), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(51, 209, 255, 0.18), transparent 40%);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.65));
  background-size: 100% 6px;
  opacity: 0.15;
  animation: scanline 8s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.page-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.08) brightness(0.98);
  position: relative;
  z-index: 0;
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.0), rgba(7, 11, 16, 0.85));
  z-index: 1;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.banner-content h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 2.2vw + 1.2rem, 3.2rem);
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.banner-content p {
  color: var(--muted);
  max-width: 720px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.product-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.models {
  display: grid;
  gap: 20px;
  background: rgba(8, 14, 18, 0.6);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.models-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(6, 10, 14, 0.6);
  display: grid;
  gap: 10px;
}

.specs {
  display: grid;
  gap: 24px;
}

.spec-table {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: rgba(6, 10, 14, 0.6);
  overflow-x: auto;
}

.spec-table h3 {
  margin-bottom: 12px;
}

.spec-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table th,
.spec-table td {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  color: var(--muted);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
}

.gateway {
  display: grid;
  gap: 20px;
}

.gateway-header h2 {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 10px;
}

.gateway-header p {
  color: var(--muted);
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gateway-group {
  display: grid;
  gap: 12px;
}

.gateway-group-title {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.gateway-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(6, 10, 14, 0.6);
  text-decoration: none;
  color: var(--ink);
  display: grid;
  gap: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.gateway-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 255, 182, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.gateway-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gateway-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: rgba(125, 255, 182, 0.12);
  color: var(--accent);
  border: 1px solid rgba(125, 255, 182, 0.4);
  flex-shrink: 0;
}

.gateway-tag {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.gateway-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.6);
}

.gateway-card h3 {
  font-size: 18px;
}

.gateway-card p {
  color: var(--muted);
}

.gateway-cta {
  margin-top: auto;
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.float-inquiry {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #041014;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(51, 209, 255, 0.25);
}

.float-inquiry span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.float-inquiry small {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .float-inquiry {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
  }
  .float-inquiry small {
    display: none;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.product-card,
.case-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(6, 10, 14, 0.6);
  display: grid;
  gap: 12px;
}

.about-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(6, 10, 14, 0.6);
  display: grid;
  gap: 12px;
}

.case-meta {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mini-cases {
  display: grid;
  gap: 16px;
}

.mini-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(6, 10, 14, 0.6);
  display: grid;
  gap: 8px;
}

.split-section {
  display: grid;
  gap: 18px;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-header h2 {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 8px;
}

.news-header p {
  color: var(--muted);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.news-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(6, 10, 14, 0.6);
  display: grid;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.news-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-tag {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.news-source {
  color: var(--muted);
  font-size: 12px;
}

.news-cta {
  margin-top: 4px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(6, 10, 14, 0.6);
  overflow: hidden;
}

.split-media {
  position: relative;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.split.reverse .split-media {
  order: 2;
}

.split-section .split:nth-child(even) .split-media {
  order: 2;
}

.split-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06) brightness(0.98);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.pdf-shot {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(125, 255, 182, 0.1), rgba(51, 209, 255, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 6px, transparent 6px 12px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.pdf-shot::before {
  content: attr(data-label);
  position: absolute;
  inset: 16px 16px auto 16px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.pdf-shot::after {
  content: "PDF PREVIEW";
  position: absolute;
  right: -34px;
  top: 18px;
  transform: rotate(40deg);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #041014;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 36px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.split-content {
  padding: 18px 20px;
  display: grid;
  gap: 10px;
}

.split-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.factory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.factory-image img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--line);
  filter: saturate(1.05) contrast(1.06) brightness(0.98);
}

.factory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.factory-tags span {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  background: rgba(10, 18, 24, 0.85);
  border: 1px solid var(--line);
  border-radius: 32px;
}

.cta-contact {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cta-contact span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-form {
  display: grid;
  gap: 12px;
}

.cta-form input,
.cta-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink);
  font-family: inherit;
}

.center-stage {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 80px 6vw;
}

.panel {
  max-width: 640px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  background: rgba(10, 18, 24, 0.85);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 40px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
}

@keyframes aurora-drift {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(4%) scale(1.05);
  }
}

@keyframes signal-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (hover: hover) {
  [data-tilt]:hover {
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aurora,
  .orb,
  [data-tilt] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-card {
    position: static;
    margin-top: 20px;
    width: auto;
  }
  .footer {
    flex-direction: column;
    gap: 12px;
  }
}
