@font-face {
  font-family: "Space Grotesk";
  src: url("assets/vendor/fonts/SpaceGrotesk-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("assets/vendor/fonts/Syne-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #050612;
  --panel: rgba(10, 16, 34, 0.72);
  --panel-strong: rgba(14, 24, 50, 0.9);
  --line: rgba(151, 205, 255, 0.2);
  --text: #f6f9ff;
  --muted: #aab8d6;
  --cyan: #48e5ff;
  --blue: #5b7cfa;
  --violet: #a855f7;
  --pink: #ff5ea8;
  --lime: #99ffcc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(72, 229, 255, 0.18), transparent 31rem),
    radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.18), transparent 34rem),
    radial-gradient(circle at 50% 92%, rgba(255, 94, 168, 0.1), transparent 30rem),
    linear-gradient(145deg, #050612 0%, #08142c 42%, #130622 100%);
  color: var(--text);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button, input, textarea { font: inherit; }

#starfield {
  position: fixed;
  inset: 0;
  z-index: -3;
}

.aurora {
  position: fixed;
  inset: -25%;
  z-index: -2;
  background:
    conic-gradient(from 180deg at 52% 48%, transparent, rgba(72, 229, 255, 0.14), transparent, rgba(168, 85, 247, 0.16), transparent, rgba(255, 94, 168, 0.1), transparent);
  filter: blur(70px);
  opacity: 0.9;
  animation: drift 18s ease-in-out infinite alternate;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(5, 6, 18, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-family: "Syne", "Space Grotesk", sans-serif;
  letter-spacing: 0.04em;
}

.brand img,
.footer-brand img { display: block; }

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.6vw, 1.25rem);
}

.nav-links {
  justify-content: center;
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-links a,
.footer-grid a { transition: color 180ms ease; }

.nav-links a:hover,
.footer-grid a:hover { color: var(--cyan); }

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(20rem, 0.96fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: calc(100vh - 5rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

h1, h2, h3 {
  font-family: "Syne", "Space Grotesk", sans-serif;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 0 42px rgba(72, 229, 255, 0.3);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 42rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding-block: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-bar div {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  min-height: 6rem;
  padding: 1rem;
  background: rgba(8, 16, 34, 0.94);
}

.trust-bar img {
  width: 1.45rem;
  height: 1.45rem;
  filter: invert(88%) sepia(29%) saturate(1955%) hue-rotate(160deg) brightness(104%);
}

.trust-bar span,
.trust-bar small {
  display: block;
}

.trust-bar small {
  margin-top: 0.25rem;
  color: var(--muted);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(72, 229, 255, 0.42);
  border-radius: 999px;
  color: var(--text);
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 28px rgba(72, 229, 255, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(153, 255, 204, 0.62);
  box-shadow: 0 0 34px rgba(72, 229, 255, 0.22);
}

.btn-primary {
  color: #03101a;
  background: linear-gradient(135deg, var(--cyan), #7c6cff 48%, var(--lime));
}

.btn-secondary,
.btn-ghost { background: rgba(255, 255, 255, 0.07); }

.btn-small {
  min-height: 2.55rem;
  padding-inline: 0.95rem;
  font-size: 0.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 39rem;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-stats div {
  padding: 1rem;
  background: rgba(10, 16, 34, 0.76);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong { font-size: 1.35rem; }
.hero-stats span { color: var(--muted); font-size: 0.9rem; }

.space-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 34rem;
  isolation: isolate;
}

.image-hero {
  overflow: hidden;
  border: 1px solid rgba(151, 205, 255, 0.18);
  border-radius: 8px;
  background: rgba(3, 9, 22, 0.4);
  box-shadow: 0 0 58px rgba(72, 229, 255, 0.14);
}

.image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 58% 50%, transparent 0 34%, rgba(5, 6, 18, 0.14) 62%, rgba(5, 6, 18, 0.46) 100%),
    linear-gradient(90deg, rgba(5, 6, 18, 0.68), transparent 46%);
  pointer-events: none;
}

.image-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
}

.planet {
  position: absolute;
  width: clamp(13rem, 29vw, 23rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #fff 0 4%, transparent 5%),
    radial-gradient(circle at 36% 34%, #70f2ff, #3958ff 36%, #4b146c 63%, #050612 100%);
  box-shadow: inset -2.3rem -2rem 4rem rgba(0, 0, 0, 0.52), 0 0 4rem rgba(72, 229, 255, 0.44);
  animation: hover 6s ease-in-out infinite;
}

.server-core {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0.55rem;
  width: min(62%, 18rem);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(6, 14, 34, 0.7);
  box-shadow: 0 0 48px rgba(72, 229, 255, 0.26);
  backdrop-filter: blur(14px);
}

.server-core span {
  height: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(168, 85, 247, 0.4));
}

.server-core span:nth-child(2) { width: 82%; }
.server-core span:nth-child(3) { width: 64%; }
.server-core strong { font-size: 2.2rem; letter-spacing: 0; }

.orbit {
  position: absolute;
  z-index: 2;
  width: min(96%, 35rem);
  aspect-ratio: 1;
  border: 1px solid rgba(72, 229, 255, 0.3);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-18deg);
}

.orbit-two {
  width: min(78%, 28rem);
  border-color: rgba(168, 85, 247, 0.35);
  transform: rotateX(70deg) rotateZ(25deg);
}

.satellite {
  position: absolute;
  z-index: 4;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 22px var(--pink);
  animation: satellite 7s linear infinite;
}

.node {
  position: absolute;
  z-index: 5;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 20, 42, 0.84);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(72, 229, 255, 0.18);
}

.node-domain { top: 18%; left: 8%; }
.node-www { right: 6%; top: 34%; }
.node-mail { left: 18%; bottom: 18%; }

.domain-search,
.aapanel-section,
.client-panel,
.security,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(12, 22, 46, 0.82), rgba(22, 9, 38, 0.72));
  box-shadow: 0 0 44px rgba(72, 229, 255, 0.09);
  backdrop-filter: blur(18px);
}

.domain-search {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.25rem, 4vw, 2.2rem);
}

.aapanel-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.75fr);
  align-items: center;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.panel-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 9, 22, 0.72);
  box-shadow: 0 0 44px rgba(72, 229, 255, 0.14);
}

.panel-preview-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.panel-preview-top span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--pink);
}

.panel-preview-top span:nth-child(2) { background: var(--violet); }
.panel-preview-top span:nth-child(3) { background: var(--cyan); }
.panel-preview-top strong { margin-left: auto; }

.panel-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.panel-preview-grid div {
  display: grid;
  gap: 0.3rem;
  min-height: 6rem;
  padding: 1rem;
  background: rgba(10, 16, 34, 0.9);
}

.panel-preview-grid b {
  color: var(--text);
}

.panel-preview-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.client-panel {
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.55fr);
  gap: 1rem;
  align-items: start;
}

.auth-card,
.panel-benefits {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 9, 22, 0.58);
  box-shadow: 0 0 36px rgba(72, 229, 255, 0.08);
}

.auth-card {
  padding: 1rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.auth-tab {
  min-height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
}

.auth-tab.is-active {
  color: #03101a;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--violet), var(--lime));
}

.auth-form {
  display: none;
  gap: 0.85rem;
}

.auth-form.is-active {
  display: grid;
}

.auth-form label,
.auth-row {
  color: var(--text);
  font-weight: 800;
}

.auth-form label {
  display: grid;
  gap: 0.45rem;
}

.auth-form input {
  width: 100%;
  min-height: 3rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(151, 205, 255, 0.26);
  border-radius: 8px;
  outline: none;
  color: var(--text);
  background: rgba(3, 9, 22, 0.64);
}

.auth-form input:focus {
  border-color: rgba(72, 229, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(72, 229, 255, 0.12);
}

.auth-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.check-label {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 0.55rem !important;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.check-label input {
  width: 1rem;
  min-height: 1rem;
  accent-color: var(--cyan);
}

.panel-benefits {
  padding: 1.25rem;
}

.panel-benefits ul {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  color: var(--muted);
}

.panel-benefits li::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.domain-form label {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-weight: 800;
}

.domain-form > input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0 1rem;
  border: 1px solid rgba(151, 205, 255, 0.26);
  border-radius: 999px;
  outline: none;
  color: var(--text);
  background: rgba(3, 9, 22, 0.64);
}

.domain-form > input[name="company"] {
  position: absolute;
  left: -9999px;
}

.domain-form .check-label a {
  color: var(--cyan);
}

.domain-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.domain-form::after {
  content: attr(data-message);
  display: block;
  min-height: 1.2rem;
  margin-top: 0.65rem;
  color: var(--lime);
  font-weight: 700;
}

.domain-form input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0 1rem;
  border: 1px solid rgba(151, 205, 255, 0.26);
  border-radius: 999px;
  outline: none;
  color: var(--text);
  background: rgba(3, 9, 22, 0.64);
}

.domain-form input:focus {
  border-color: rgba(72, 229, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(72, 229, 255, 0.12);
}

.feature-pills,
.advantage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.feature-pills span,
.advantage-grid span {
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

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

.process-section {
  padding-top: clamp(2.5rem, 6vw, 5rem);
}

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

.process-card {
  min-height: 15rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(10, 20, 43, 0.82), rgba(15, 11, 31, 0.78));
}

.process-card > span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--cyan);
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
}

.glass-card,
.price-card,
.console-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.glass-card,
.price-card {
  padding: 1.35rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.glass-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 229, 255, 0.54);
  box-shadow: 0 0 36px rgba(72, 229, 255, 0.12);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  min-width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  padding-inline: 0.6rem;
  border-radius: 8px;
  color: #05101b;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  font-weight: 900;
}

.card-icon img {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
}

.price-card.featured {
  position: relative;
  border-color: rgba(72, 229, 255, 0.66);
  background: linear-gradient(150deg, rgba(12, 28, 58, 0.92), rgba(45, 15, 68, 0.78));
  box-shadow: 0 0 48px rgba(72, 229, 255, 0.18);
}

.badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  color: #03101a;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  font-size: 0.78rem;
  font-weight: 900;
}

.price-card strong {
  display: block;
  margin: 1.35rem 0;
  font-size: 2.3rem;
}

.price-card strong span {
  color: var(--muted);
  font-size: 1rem;
}

.price-card ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
  color: var(--muted);
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.price-card .btn {
  width: 100%;
}

.order-section {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(12, 22, 46, 0.82), rgba(22, 9, 38, 0.72));
  box-shadow: 0 0 44px rgba(72, 229, 255, 0.09);
}

.sales-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.sales-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 800;
}

.sales-form input,
.sales-form select,
.sales-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(151, 205, 255, 0.26);
  border-radius: 8px;
  outline: none;
  color: var(--text);
  background: rgba(3, 9, 22, 0.78);
}

.sales-form textarea {
  min-height: 7rem;
  padding-block: 0.85rem;
  resize: vertical;
}

.sales-form input:focus,
.sales-form select:focus,
.sales-form textarea:focus {
  border-color: rgba(72, 229, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(72, 229, 255, 0.12);
}

.sales-form-wide {
  grid-column: 1 / -1;
}

.sales-form .check-label a {
  color: var(--cyan);
}

.sales-form input[name="company"] {
  position: absolute;
  left: -9999px;
}

.advantages {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.split,
.security {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(19rem, 0.65fr);
  align-items: center;
  gap: 2rem;
}

.console-card {
  padding: 1rem;
  box-shadow: 0 0 44px rgba(72, 229, 255, 0.1);
}

.console-top {
  display: flex;
  gap: 0.4rem;
  padding-bottom: 1rem;
}

.console-top span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--pink);
}

.console-top span:nth-child(2) { background: var(--violet); }
.console-top span:nth-child(3) { background: var(--cyan); }

.console-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.console-row strong {
  color: var(--lime);
  white-space: nowrap;
}

.console-meter {
  height: 0.75rem;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.console-meter span {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--lime));
}

.security {
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.shield-visual {
  display: grid;
  place-items: center;
}

.shield-visual img {
  width: min(100%, 13rem);
  filter: drop-shadow(0 0 28px rgba(72, 229, 255, 0.26));
}

.testimonial-grid strong {
  display: block;
  margin-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  padding: 1rem 1.15rem;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.faq details p {
  margin: 0.8rem 0 0;
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem);
}

.final-cta h2,
.final-cta p {
  max-width: 48rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  width: min(100%, 42rem);
  margin-top: 2rem;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(151, 205, 255, 0.26);
  border-radius: 8px;
  outline: none;
  color: var(--text);
  background: rgba(3, 9, 22, 0.64);
}

.contact-form input {
  min-height: 3rem;
  padding: 0 0.9rem;
}

.contact-form textarea {
  min-height: 8rem;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(72, 229, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(72, 229, 255, 0.12);
}

.contact-form input[name="company"] {
  position: absolute;
  left: -9999px;
}

.contact-form .check-label a {
  color: var(--cyan);
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--lime);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 2.5rem clamp(1rem, 4vw, 4.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(3, 6, 15, 0.42);
}

.footer-brand strong,
.footer-brand span { display: block; }
.footer-brand strong { color: var(--text); }
.footer-brand span { margin-top: 0.25rem; font-weight: 500; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
}

.legal-page {
  background: #071025;
}

.legal-shell {
  width: min(860px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.legal-shell header {
  margin-bottom: 2.5rem;
}

.legal-shell article {
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 16, 34, 0.9);
}

.legal-shell h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.legal-shell h1 {
  max-width: none;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
}

.legal-shell a {
  color: var(--cyan);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.dashboard-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.orders-table {
  display: grid;
  gap: 0.65rem;
}

.orders-table div {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr auto;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(3, 9, 22, 0.55);
}

.orders-table strong,
.orders-table b {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes drift {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(16deg) scale(1.08); }
}

@keyframes hover {
  0%, 100% { transform: translateY(-0.5rem); }
  50% { transform: translateY(0.75rem); }
}

@keyframes satellite {
  from { transform: rotate(0deg) translateX(12rem) rotate(0deg); }
  to { transform: rotate(360deg) translateX(12rem) rotate(-360deg); }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .header-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .hero,
  .aapanel-section,
  .auth-layout,
  .split,
  .security,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid,
  .testimonial-grid,
  .process-grid,
  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .space-visual {
    min-height: 26rem;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(100% - 1rem, 1180px);
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-stats,
  .domain-form div,
  .service-grid,
    .pricing-grid,
    .testimonial-grid,
    .process-grid,
    .trust-bar,
    .sales-form,
    .orders-table div,
    .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn,
  .domain-form button {
    width: 100%;
  }
}

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

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