:root {
  --bg: #070707;
  --bg-soft: #121212;
  --text: #f2f2f2;
  --muted: #c1bdb6;
  --accent: #ff7a1a;
  --accent-2: #d65100;
  --border: #252525;
  --status-ok: #3ecf7e;
  --status-ok-soft: rgba(62, 207, 126, 0.14);
  --status-warn: #e6b02a;
  --status-warn-soft: rgba(230, 176, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, #1d0f00 0, transparent 35%),
    radial-gradient(circle at 90% 100%, #261100 0, transparent 40%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

main,
.top-nav {
  position: relative;
  z-index: 1;
}

section[id] {
  scroll-margin-top: 88px;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ambient-orb,
.ambient-line,
.ambient-grid,
.ambient-shape {
  position: absolute;
  display: block;
}

.ambient-orb {
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.38;
}

.orb-1 {
  width: 340px;
  height: 340px;
  top: 8%;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.32), rgba(255, 122, 26, 0));
  animation: floatOrbOne 18s ease-in-out infinite;
}

.orb-2 {
  width: 260px;
  height: 260px;
  top: 52%;
  right: -70px;
  background: radial-gradient(circle, rgba(255, 155, 87, 0.24), rgba(255, 122, 26, 0));
  animation: floatOrbTwo 22s ease-in-out infinite;
}

.orb-3 {
  width: 220px;
  height: 220px;
  bottom: 4%;
  left: 40%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.18), rgba(255, 122, 26, 0));
  animation: floatOrbThree 20s ease-in-out infinite;
}

.ambient-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.52), transparent);
  opacity: 0.62;
  filter: blur(0.2px);
  transform-origin: center;
}

.line-1 {
  width: 46vw;
  top: 18%;
  left: -8vw;
  transform: rotate(-12deg);
  animation: driftLineOne 24s linear infinite;
}

.line-2 {
  width: 34vw;
  top: 72%;
  right: -6vw;
  transform: rotate(16deg);
  animation: driftLineTwo 28s linear infinite;
}

.line-3 {
  width: 40vw;
  top: 40%;
  left: 32%;
  transform: rotate(-32deg);
  opacity: 0.38;
  animation: driftLineThree 26s linear infinite;
}

.ambient-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 26, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 26, 0.055) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), transparent 78%);
  opacity: 0.46;
  animation: gridDrift 26s linear infinite;
}

.ambient-shape {
  border: 1px solid rgba(255, 122, 26, 0.24);
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.06), rgba(255, 122, 26, 0.01));
}

.shape-1 {
  width: 180px;
  height: 180px;
  top: 18%;
  right: 10%;
  border-radius: 28px;
  transform: rotate(18deg);
  animation: floatShapeOne 30s ease-in-out infinite;
}

.shape-2 {
  width: 120px;
  height: 120px;
  bottom: 14%;
  left: 12%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 122, 26, 0.14), rgba(255, 122, 26, 0.02)),
    linear-gradient(180deg, rgba(255, 122, 26, 0.28), rgba(255, 122, 26, 0));
  opacity: 0.5;
  animation: floatShapeTwo 24s ease-in-out infinite;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(7, 7, 7, 0.82);
  border-bottom: 1px solid #1c1c1c;
}

.top-nav-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  color: #ffd8bd;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.top-nav nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.top-nav nav a:hover {
  color: #ffd8bd;
}

.top-nav nav a.is-current {
  color: #ffd8bd;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #4a2e1c;
  background: rgba(255, 122, 26, 0.08);
  border-radius: 10px;
  padding: 9px 8px;
  cursor: pointer;
  justify-content: center;
  align-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #ffd8bd;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.top-nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.top-nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.top-nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.screen {
  padding: 56px 0;
}

.hero-screen {
  padding-top: 42px;
}

.logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 18px;
  margin-bottom: 8px;
}

h1 {
  margin: 4px 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 40px);
}

.subtitle,
.lead-copy p {
  color: var(--muted);
  max-width: 56ch;
}

.subtitle a {
  color: #ffd8bd;
  text-decoration: underline;
  text-decoration-color: rgba(255, 216, 189, 0.35);
  text-underline-offset: 3px;
}

.subtitle a:hover {
  color: #ffbf8d;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.feature-card,
.architecture-main,
.architecture-side,
.cockpit-main,
.side-card,
.form-card {
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.08), rgba(255, 122, 26, 0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

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

.interactive-card {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.interactive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    220px circle at var(--glow-x) var(--glow-y),
    rgba(255, 122, 26, 0.14),
    transparent 68%
  );
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.interactive-card:hover {
  transform:
    perspective(1200px)
    rotateX(var(--rotate-x))
    rotateY(var(--rotate-y))
    translateY(-3px);
  border-color: #4a2d1d;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.interactive-card:hover::after {
  opacity: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chips span {
  border: 1px solid #3c2a1c;
  color: #ffd8bd;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255, 122, 26, 0.08);
}

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

.btn {
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #130600;
}

.btn.ghost {
  border: 1px solid #4a2e1c;
  color: #ffd8bd;
}

.btn.partner {
  border: 1px solid #5a3a22;
  color: #ffbf8d;
  background: rgba(255, 122, 26, 0.08);
}

.hero-panel h3,
.side-card h3 {
  margin-top: 0;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  margin-top: 16px;
  display: block;
}

.dashboard-preview {
  margin-top: 14px;
  margin-bottom: 18px;
}

.dashboard-note {
  color: var(--muted);
  margin: 0 0 8px;
}

.hero-panel ul,
.side-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 12px;
  margin: 0 0 8px;
}

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

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

.service-card {
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.08), rgba(255, 122, 26, 0.02));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.service-card h3 {
  margin: 0 0 8px;
}

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

.feature-card h3 {
  margin-top: 14px;
  margin-bottom: 8px;
}

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

.icon-wrap {
  width: 44px;
  height: 44px;
  border: 1px solid #503224;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 26, 0.1);
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: #ff9a54;
}

.live-services-lead {
  margin: 0 0 22px;
}

.live-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.live-service-card {
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 122, 26, 0.08), rgba(255, 122, 26, 0.02));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px 26px 24px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.live-service-card::before {
  content: "";
  position: absolute;
  inset: -40% 55% auto -20%;
  height: 120%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 122, 26, 0.22), transparent 55%);
  pointer-events: none;
}

.live-service-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.live-service-badge {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #4a2e1c;
}

.live-service-badge-live {
  color: #130600;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.35);
}

.live-service-domain {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  font-size: 14px;
  color: #ffbf8d;
}

.live-service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 28px);
  position: relative;
  z-index: 1;
}

.live-service-card p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  position: relative;
  z-index: 1;
}

.live-service-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.status-hero-screen {
  padding-bottom: 28px;
}

.status-page-head {
  max-width: 880px;
}

.status-page-summary {
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.1), rgba(255, 122, 26, 0.02));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 28px 26px;
  backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.status-page-summary h1 {
  margin: 4px 0 12px;
  font-size: clamp(32px, 4.6vw, 46px);
}

.status-legend {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding-top: 18px;
  border-top: 1px solid #2a2a2a;
}

.status-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.status-board-screen {
  padding-top: 0;
}

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

.status-tile {
  position: relative;
  border-radius: 18px;
  padding: 20px 20px 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(10, 10, 10, 0.88));
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.status-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 18px 0 0 18px;
  background: var(--accent);
  opacity: 0.85;
}

.status-tile-ok::before {
  background: linear-gradient(180deg, var(--status-ok), rgba(62, 207, 126, 0.35));
  box-shadow: 0 0 24px rgba(62, 207, 126, 0.35);
}

.status-tile-warn::before {
  background: linear-gradient(180deg, var(--status-warn), rgba(230, 176, 42, 0.35));
  box-shadow: 0 0 22px rgba(230, 176, 42, 0.28);
}

.status-tile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.status-tile-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.status-tile-title h2 {
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.25;
  font-weight: 600;
}

.status-tile-title a {
  color: #f2f2f2;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 216, 189, 0.25);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.status-tile-title a:hover {
  color: #ffd8bd;
  border-color: rgba(255, 216, 189, 0.55);
}

.status-tile-note {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.status-chip {
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.status-chip-ok {
  color: #0d1f14;
  background: linear-gradient(90deg, #5ae49a, var(--status-ok));
  border-color: rgba(62, 207, 126, 0.45);
}

.status-chip-warn {
  color: #1a1405;
  background: linear-gradient(90deg, #f0cf6a, var(--status-warn));
  border-color: rgba(230, 176, 42, 0.5);
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.status-dot-ok {
  background: radial-gradient(circle at 30% 30%, #b8ffd9, var(--status-ok));
  box-shadow:
    0 0 0 4px var(--status-ok-soft),
    0 0 18px rgba(62, 207, 126, 0.45);
  animation: statusPulseOk 2.4s ease-in-out infinite;
}

.status-dot-warn {
  background: radial-gradient(circle at 30% 30%, #fff2c2, var(--status-warn));
  box-shadow:
    0 0 0 4px var(--status-warn-soft),
    0 0 16px rgba(230, 176, 42, 0.4);
}

@keyframes statusPulseOk {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.92;
  }
}

.status-tile-ok {
  border-color: rgba(62, 207, 126, 0.22);
  background:
    radial-gradient(120% 80% at 100% 0%, var(--status-ok-soft), transparent 55%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(8, 10, 9, 0.92));
}

.status-tile-warn {
  border-color: rgba(230, 176, 42, 0.28);
  background:
    radial-gradient(120% 80% at 100% 0%, var(--status-warn-soft), transparent 52%),
    linear-gradient(180deg, rgba(22, 18, 12, 0.96), rgba(10, 9, 7, 0.92));
}

.cockpit {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.architecture-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

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

.pipeline div {
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 14px;
  background: rgba(16, 16, 16, 0.75);
}

.pipeline p {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 14px;
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.trust-grid div {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 12px;
  background: rgba(16, 16, 16, 0.72);
}

.trust-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.enterprise-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.enterprise-copy,
.enterprise-visual {
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.08), rgba(255, 122, 26, 0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.enterprise-copy ul {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.enterprise-visual {
  display: flex;
  align-items: center;
}

.audience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.audience-card {
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.08), rgba(255, 122, 26, 0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
}

.audience-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

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

.faq-list details {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(16, 16, 16, 0.72);
}

.faq-list summary {
  list-style: none;
  position: relative;
  padding-right: 22px;
  cursor: pointer;
  font-weight: 600;
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ff9a54;
  border-bottom: 2px solid #ff9a54;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-list p {
  color: var(--muted);
  margin: 10px 0 0;
}

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

.flow div {
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 14px;
  background: rgba(16, 16, 16, 0.75);
}

.flow p {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 14px;
}

.lead-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.lead-copy {
  padding-top: 12px;
}

.form-card h2,
.form-card h3 {
  margin-top: 0;
}

.form-card p {
  color: var(--muted);
  margin-top: 0;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.consent-row input[type="checkbox"] {
  appearance: auto;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  margin-top: 1px;
  accent-color: var(--accent);
}

.consent-row a {
  color: #ffd8bd;
}

.consent-row a:hover {
  color: #ffbf8d;
}

input,
select,
textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid #2f2f2f;
  color: var(--text);
  padding: 11px 12px;
  border-radius: 10px;
  font: inherit;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #ff9a54 50%),
    linear-gradient(135deg, #ff9a54 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

select option {
  background: #111;
  color: #f2f2f2;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.18);
}

button {
  border: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #130600;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

button:hover {
  transform: translateY(-1px);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.status {
  min-height: 20px;
  margin: 0;
  font-size: 14px;
}

.status.error {
  color: #ff6d6d;
}

.status.success {
  color: #4fd78e;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid #1f1f1f;
  background: rgba(10, 10, 10, 0.9);
  margin-top: 28px;
}

.footer-content {
  padding-top: 22px;
  padding-bottom: 24px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.footer-content p {
  margin: 0;
}

.footer-content a {
  color: #ffd8bd;
  text-decoration: none;
}

.footer-content a:hover {
  color: #ffbf8d;
}

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

@keyframes floatOrbOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(70px, 36px, 0) scale(1.08);
  }
}

@keyframes floatOrbTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-60px, -42px, 0) scale(0.94);
  }
}

@keyframes floatOrbThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(26px, -34px, 0);
  }
}

@keyframes driftLineOne {
  0% {
    transform: translate3d(0, 0, 0) rotate(-12deg);
  }
  50% {
    transform: translate3d(120px, 24px, 0) rotate(-10deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-12deg);
  }
}

@keyframes driftLineTwo {
  0% {
    transform: translate3d(0, 0, 0) rotate(16deg);
  }
  50% {
    transform: translate3d(-100px, -28px, 0) rotate(14deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(16deg);
  }
}

@keyframes driftLineThree {
  0% {
    transform: translate3d(0, 0, 0) rotate(-32deg);
  }
  50% {
    transform: translate3d(70px, -32px, 0) rotate(-28deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-32deg);
  }
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floatShapeOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(18deg);
  }
  50% {
    transform: translate3d(-24px, 28px, 0) rotate(26deg);
  }
}

@keyframes floatShapeTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(22px, -26px, 0) rotate(6deg);
  }
}

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

  .ambient-orb,
  .ambient-line,
  .ambient-grid,
  .ambient-shape,
  .reveal-on-scroll,
  .interactive-card,
  .status-dot-ok {
    animation: none;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible,
  .interactive-card,
  .interactive-card:hover {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .interactive-card::after {
    display: none;
  }
}

@media (max-width: 880px) {
  .top-nav-inner {
    min-height: 54px;
    position: relative;
  }

  .nav-toggle {
    display: grid;
  }

  .top-nav .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid #2c2c2c;
    border-radius: 14px;
    background: rgba(12, 12, 12, 0.98);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
  }

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

  .top-nav .site-nav a {
    display: block;
    padding: 9px 10px;
    border-radius: 10px;
  }

  .top-nav .site-nav a:hover {
    background: rgba(255, 122, 26, 0.12);
  }

  .hero,
  .card-grid,
  .live-services-grid,
  .status-grid,
  .services-grid,
  .architecture-layout,
  .pipeline,
  .enterprise-layout,
  .cockpit,
  .audience-layout,
  .lead-layout,
  .flow {
    grid-template-columns: 1fr;
  }

  .screen {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  .shape-1,
  .shape-2 {
    opacity: 0.28;
  }
}
