:root {
  --bg: #050b14;
  --bg-2: #08111e;
  --surface: #0c1827;
  --surface-2: #102238;
  --text: #edf5ff;
  --muted: #8fa2b8;
  --muted-2: #687b91;
  --blue: #248dff;
  --blue-light: #63b0ff;
  --blue-dark: #0c67d4;
  --green: #72d6a0;
  --danger: #ff7c83;
  --border: rgba(255, 255, 255, 0.08);
  --border-blue: rgba(99, 176, 255, 0.18);
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Sora", system-ui, sans-serif;
  --sans: "Manrope", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(
      900px 500px at 8% -10%,
      rgba(36, 141, 255, 0.09),
      transparent 65%
    ),
    radial-gradient(
      800px 500px at 100% 10%,
      rgba(36, 141, 255, 0.05),
      transparent 65%
    ),
    var(--bg);
  font: 400 1rem/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.1;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.12) 0.5px,
    transparent 0.5px
  );
  background-size: 5px 5px;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.035em;
  line-height: 1.08;
}
p,
ul,
ol {
  margin: 0;
}
ul,
ol {
  padding: 0;
}
.container {
  width: min(calc(100% - 32px), 1180px);
  margin: auto;
}
.section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}
.section::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 0;
  left: 5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.07),
    transparent
  );
}
.section.sand {
  background: linear-gradient(
    180deg,
    rgba(11, 24, 40, 0.78),
    rgba(7, 17, 30, 0.7)
  );
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}
.h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 650;
}
.h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 600;
}
.lead {
  max-width: 65ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
}
.mt-10 {
  margin-top: 40px;
}
.muted {
  color: var(--muted);
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.45s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 70%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease);
}
.btn:hover::before {
  left: 140%;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  box-shadow: 0 10px 30px rgba(36, 141, 255, 0.22);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(36, 141, 255, 0.3);
}
.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 176, 255, 0.4);
  background: rgba(36, 141, 255, 0.08);
}
.btn .arrow {
  transition: transform 0.45s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(5px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(5, 12, 22, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(36, 141, 255, 0.45),
    transparent
  );
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  font: 650 0.9rem var(--display);
  white-space: nowrap;
}
.brand .mark {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  overflow: hidden;

  border: 1px solid rgba(99, 176, 255, 0.28);
  border-radius: 12px;

  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(99, 176, 255, 0.22),
      transparent 60%
    ),
    linear-gradient(
      135deg,
      rgba(36, 141, 255, 0.18),
      rgba(5, 11, 20, 0.9)
    );

  box-shadow:
    0 8px 25px rgba(36, 141, 255, 0.2),
    inset 0 0 18px rgba(99, 176, 255, 0.05);

  transition:
    transform 0.45s var(--ease),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

/* Blue glow around the logo */
.brand .mark::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(36, 141, 255, 0.35),
    transparent 65%
  );

  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

/* Logo itself */
.brand .mark img {
  position: relative;
  z-index: 1;

  width: 100%;
  height: 100%;

  object-fit: contain;

  filter:
    drop-shadow(0 0 5px rgba(99, 176, 255, 0.8))
    drop-shadow(0 0 12px rgba(36, 141, 255, 0.35));

  transition:
    transform 0.45s var(--ease),
    filter 0.45s ease;
}

.nav {
  display: none !important;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  color: rgba(234, 242, 251, 0.62);
  font-size: 0.77rem;
  font-weight: 650;
  white-space: nowrap;
  transform: translateY(0);
  transition:
    color 0.45s var(--ease),
    transform 0.55s var(--ease),
    font-weight 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 3px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #63b0ff 0, #248dff 55%, #0b6dd6 100%);
  box-shadow:
    0 0 7px rgba(36, 141, 255, 0.7),
    0 0 18px rgba(36, 141, 255, 0.24);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.7s var(--ease);
}
.nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}
.nav a:hover::after {
  transform: scaleX(1);
}
.nav a.active {
  color: #fff;
  font-weight: 900;
}
.nav a.active::after {
  transform: scaleX(1);
  box-shadow:
    0 0 8px rgba(36, 141, 255, 0.8),
    0 0 24px rgba(36, 141, 255, 0.28);
}
.header-cta {
  display: none !important;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-cta .phone {
  color: var(--muted);
  font-size: 0.77rem;
  white-space: nowrap;
}
.header-cta .btn {
  white-space: nowrap;
}
.burger {
  width: 42px;
  height: 42px;
  display: grid !important;
  place-items: center;
  flex: 0 0 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.burger-icon {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  pointer-events: none;
}
.burger:active {
  transform: scale(0.96);
}
.burger:focus-visible {
  outline: 2px solid rgba(99, 176, 255, 0.9);
  outline-offset: 3px;
}
.mobile-nav {
  display: grid !important;
  grid-template-rows: 0fr;
  width: 100%;
  overflow: hidden;
  background: rgba(4, 10, 18, 0.97);
  border-top: 1px solid transparent;
  transition:
    grid-template-rows 0.5s var(--ease),
    border-color 0.3s ease;
}
.mobile-nav > .container {
  min-height: 0;
  overflow: hidden;
}
.mobile-nav.open {
  grid-template-rows: 1fr;
  border-top-color: rgba(255, 255, 255, 0.06);
}
.mobile-nav .container {
  padding-top: 0;
  padding-bottom: 18px;
}
.mobile-nav a:not(.btn) {
  position: relative;
  display: block;
  padding: 14px 0 14px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(234, 242, 251, 0.75);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease),
    color 0.25s ease;
}
.mobile-nav.open a:not(.btn) {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav a:not(.btn).active {
  color: #fff;
  font-weight: 800;
}
.mobile-nav a:not(.btn).active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue-dark));
  box-shadow:
    0 0 8px rgba(36, 141, 255, 0.8),
    0 0 16px rgba(36, 141, 255, 0.3);
  transform: translateY(-50%);
}
.mobile-nav .btn {
  display: inline-flex;
  width: 100%;
  margin-top: 16px;
}
@media (max-width: 1023px) {
  .nav {
    display: none !important;
  }
  .header-cta {
    display: none !important;
  }
  .burger {
    display: grid !important;
  }
  .mobile-nav {
    display: grid !important;
  }
}
@media (min-width: 1024px) {
  .nav {
    display: flex !important;
  }
  .header-cta {
    display: flex !important;
  }
  .burger {
    display: none !important;
  }
  .mobile-nav {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .header-inner {
    min-height: 68px;
    gap: 12px;
  }
  .brand {
    gap: 9px;
    font-size: 0.82rem;
  }
  .brand .mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.62rem;
  }
  .burger {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 10px;
  }
  .burger-icon {
    font-size: 1.2rem;
  }
  .mobile-nav .container {
    width: calc(100% - 28px);
    padding-bottom: 16px;
  }
  .mobile-nav a:not(.btn) {
    padding: 14px 0 14px 9px;
    font-size: 0.9rem;
  }
  .mobile-nav .btn {
    min-height: 48px;
    margin-top: 14px;
    padding: 12px 16px;
    font-size: 0.78rem;
  }
}
@media (max-width: 380px) {
  .header-inner {
    min-height: 64px;
  }
  .brand {
    gap: 8px;
    font-size: 0.76rem;
  }
  .brand .mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .burger {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-nav,
  .mobile-nav a:not(.btn),
  .nav a {
    transition: none !important;
  }
}
.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #040a12;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(99, 176, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 176, 255, 0.055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
.hero-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  top: 50%;
  right: -220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(36, 141, 255, 0.18),
    transparent 68%
  );
  transform: translateY(-50%);
  filter: blur(10px);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.7fr);
  align-items: center;
  gap: 70px;
  padding: 100px 0;
}
.hero-copy {
  animation: heroText 0.9s var(--ease) both;
}
.hero h1 {
  margin-top: 14px;
}
.hero .lead {
  color: rgba(235, 243, 251, 0.72);
  font-size: 1.06rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 650px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stats dt {
  font: 650 1.35rem var(--display);
}
.stats dd {
  margin: 4px 0 0;
  color: rgba(234, 242, 251, 0.48);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-terminal {
  overflow: hidden;
  border: 1px solid var(--border-blue);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(15, 29, 47, 0.86),
    rgba(5, 12, 22, 0.88)
  );
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 80px rgba(36, 141, 255, 0.08);
  transform: rotate(1.5deg);
  animation: terminalIn 1s 0.12s var(--ease) both;
}
.terminal-top {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.terminal-top > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #536276;
}
.terminal-top small {
  margin-left: auto;
  color: #64758a;
  font-size: 0.62rem;
}
.terminal-body {
  padding: 24px;
  color: #b9c9da;
  font:
    0.76rem/2.05 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}
.code-blue {
  color: var(--blue-light);
}
.code-green {
  color: var(--green);
}
.code-muted {
  color: #667a91;
}
.cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  margin-left: 3px;
  vertical-align: -2px;
  background: var(--blue-light);
  animation: blink 1s steps(1) infinite;
}
.grid {
  display: grid;
  gap: 16px;
}
.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.55s var(--ease),
    border-color 0.45s,
    box-shadow 0.55s var(--ease);
}

.advanced {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(111, 157, 255, 0.15),
    rgba(111, 157, 255, 0.03)
  );
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.55s var(--ease),
    border-color 0.45s,
    box-shadow 0.55s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -100px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(36, 141, 255, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(99, 176, 255, 0.25);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}
.card:hover::before {
  opacity: 1;
}
.card h3 {
  margin-bottom: 8px;
  font-size: 1.03rem;
}
.card p {
  color: var(--muted);
  font-size: 0.85rem;
}
.card ul {
  display: grid;
  gap: 7px;
  margin-top: 17px;
  list-style: none;
  font-size: 0.82rem;
}
.card li {
  color: rgba(234, 242, 251, 0.75);
}
.card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue-light);
  font-weight: 800;
}
.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--border-blue);
  border-radius: 12px;
  background: rgba(36, 141, 255, 0.07);
  color: var(--blue-light);
  font:
    800 0.78rem ui-monospace,
    monospace;
}
.service-card {
  min-height: 285px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.section-note,
.section-description {
  max-width: 42ch;
  color: var(--muted);
  font-size: 0.82rem;
}
.section-note {
  padding: 8px 12px;
  border: 1px solid var(--border-blue);
  border-radius: 999px;
  background: rgba(36, 141, 255, 0.05);
  color: var(--blue-light);
}
.split {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: center;
}
.profile-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-blue);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(36, 141, 255, 0.12),
      transparent 45%
    ),
    linear-gradient(145deg, rgba(17, 34, 53, 0.88), rgba(6, 13, 23, 0.9));
  box-shadow: var(--shadow);
}
.profile-orbit {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(99, 176, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(36, 141, 255, 0.08);
}
.profile-orbit::after {
  content: "";
  position: absolute;
  top: 47px;
  right: 26px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 20px var(--blue);
}
.profile-avatar {
  position: relative;
  width: 105px;
  height: 100px;
  display: grid;
  place-items: center;
  overflow: visible;
  transition: 0.35s;
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  transition: 0.35s;
}
.profile-avatar:hover {
  transform: translateY(-3px) scale(1.025);
}
.profile-avatar:hover img {
  transform: scale(1.035);
  filter: drop-shadow(0 0 6px rgba(36, 141, 255, 0.9))
    drop-shadow(0 0 15px rgba(36, 141, 255, 0.6))
    drop-shadow(0 0 30px rgba(36, 141, 255, 0.3));
}
.profile-name {
  position: relative;
  margin-top: 22px;
  font: 650 1.2rem var(--display);
}
.profile-role {
  position: relative;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}
.profile-line {
  width: 80px;
  height: 1px;
  margin: 5px 0;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.profile-meta {
  position: relative;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}
.profile-meta b {
  color: var(--text);
}
.skills-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012)
  );
  box-shadow: var(--shadow);
}
.skill-level {
  color: var(--blue-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.skill-main h3 {
  margin-top: 8px;
  font-size: 1.5rem;
}
.skill-main p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}
.skill-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 9px;
}
.skill-tag {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: #aebed0;
  font:
    0.74rem ui-monospace,
    monospace;
}
.skill-tag.strong {
  border-color: rgba(36, 141, 255, 0.24);
  background: rgba(36, 141, 255, 0.07);
  color: #d9ebff;
}
.experience-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--muted);
  font-size: 0.78rem;
}
.experience-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 14px var(--blue);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}
.steps li {
  position: relative;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  transition: 0.5s var(--ease);
}
.steps li::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(var(--blue-light), transparent);
}
.steps li:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 141, 255, 0.25);
}
.steps .no {
  color: var(--blue-light);
  font: 800 0.72rem var(--display);
}
.steps h3 {
  margin: 6px 0 7px;
  font-size: 1rem;
}
.steps p {
  color: var(--muted);
  font-size: 0.82rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: center;
}
.contact-highlight {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}
.contact-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--blue-light);
  background: rgba(36, 141, 255, 0.1);
  font:
    800 0.72rem ui-monospace,
    monospace;
}
.contact-highlight strong {
  font-size: 0.82rem;
}
.contact-highlight p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
}
.form-card {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.018)
  );
  box-shadow: var(--shadow);
}
.field {
  margin-top: 10px;
}
.field:first-child {
  margin-top: 0;
}
.field label {
  display: block;
  color: rgba(234, 242, 251, 0.8);
  font-size: 0.77rem;
  font-weight: 700;
}
.field input,
.field textarea {
  width: 100%;
  margin-top: 6px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  outline: 0;
  color: var(--text);
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.84rem;
}
.field textarea {
  min-height: 125px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(36, 141, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(36, 141, 255, 0.1);
}
.field.invalid input,
.field.invalid textarea {
  border-color: rgba(255, 95, 103, 0.7);
}
.error,
.privacy-error {
  display: none;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.7rem;
}
.field.invalid .error {
  display: block;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.72rem;
}
.checkbox input {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  accent-color: var(--blue);
}
.btn.full {
  width: 100%;
  margin-top: 20px;
}
.form-note {
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 0.68rem;
}
.success {
  padding: 42px 0;
  text-align: center;
}
.success:not(.show) {
  display: none;
}
.success.show {
  display: block;
}
.success .icon {
  color: var(--blue-light);
  font-size: 2.2rem;
}
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      700px 400px at 80% 50%,
      rgba(36, 141, 255, 0.14),
      transparent 65%
    ),
    linear-gradient(135deg, #06101d, #0a1929);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 72px 0;
}
.cta-band p:not(.eyebrow) {
  margin-top: 10px;
  color: rgba(234, 242, 251, 0.65);
}
.cta-actions {
  display: flex;
  gap: 10px;
}
.site-footer {
  color: #fff;
  background:
    radial-gradient(
      600px 300px at 75% 0,
      rgba(36, 141, 255, 0.065),
      transparent 65%
    ),
    #030810;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  padding: 48px 0;
}
.footer-brand {
  font: 1.05rem var(--display);
}
.site-footer h3 {
  margin-bottom: 13px;
  color: rgba(234, 242, 251, 0.45);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.site-footer p,
.site-footer address,
.site-footer li {
  color: rgba(234, 242, 251, 0.62);
  font-size: 0.8rem;
  font-style: normal;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  list-style: none;
}
.site-footer a:hover {
  color: var(--blue-light);
}
.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(234, 242, 251, 0.38);
  font-size: 0.68rem;
}
.pricing-section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  background: radial-gradient(
    800px 400px at 50% 0,
    rgba(36, 141, 255, 0.08),
    transparent 70%
  );
}
.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.015),
    transparent
  );
}
.pricing-header {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 48px;
}
.pricing-title {
  margin-top: 14px;
}
.pricing-title span {
  color: var(--blue-light);
}
.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pricing-card {
  min-width: 0;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.pricing-card .card-content {
  flex: 1;
}
.pricing-card h2 {
  margin: 0;
  color: #f2f6fa;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.card-description {
  min-height: 64px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}
.pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 25px 0;
}
.pricing-card .price span {
  color: var(--muted-2);
  font-size: 0.68rem;
}
.pricing-card .price strong {
  color: #fff;
  font-family: var(--display);
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
}
.feature-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 21px;
  color: rgba(234, 242, 251, 0.72);
  font-size: 0.75rem;
  line-height: 1.45;
}
.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--blue-light);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(99, 176, 255, 0.4);
}
.pricing-button {
  width: 100%;
  margin-top: 28px;
}
.pricing-card--featured {
  border-color: rgba(99, 176, 255, 0.34);
  background:
    radial-gradient(
      500px 250px at 50% 0,
      rgba(36, 141, 255, 0.13),
      transparent 70%
    ),
    linear-gradient(
      145deg,
      rgba(36, 141, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    );
  box-shadow:
    0 20px 65px rgba(0, 0, 0, 0.24),
    0 0 40px rgba(36, 141, 255, 0.06);
}
.featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid rgba(99, 176, 255, 0.28);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  background: rgba(36, 141, 255, 0.12);
  color: #8bc7ff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}
.pricing-card--backend .card-icon {
  color: var(--green);
  border-color: rgba(114, 214, 160, 0.16);
  background: rgba(114, 214, 160, 0.045);
}
.pricing-card--soon {
  opacity: 0.55;
}
.pricing-card--soon:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}
.pricing-card--soon .card-icon {
  color: #8b95a3;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}
.soon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 28px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: #737d89;
  font-size: 0.71rem;
  font-weight: 800;
}
.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #697482;
}
.pricing-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.pricing-card .card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(99, 176, 255, 0.16);
  border-radius: 12px;
  background: rgba(36, 141, 255, 0.055);
  color: var(--blue-light);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: inset 0 0 18px rgba(36, 141, 255, 0.025);
}
.card-label {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}
.pricing-footer div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pricing-footer strong {
  color: #edf3f8;
  font-size: 0.78rem;
}
.pricing-footer span {
  color: var(--muted-2);
  font-size: 0.68rem;
}
.pricing-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}
.pricing-footer a:hover {
  color: #fff;
}
.pricing-footer a .arrow {
  color: inherit;
  font-size: 1rem;
  transition: transform 0.45s var(--ease);
}
.pricing-footer a:hover .arrow {
  transform: translate(3px, -3px);
}
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes heroText {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes terminalIn {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(4deg);
  }
  to {
    opacity: 1;
    transform: rotate(1.5deg);
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(99, 176, 255, 0.9);
  outline-offset: 4px;
}
@media (min-width: 1024px) {
  .nav,
  .header-cta {
    display: flex;
  }
  .burger {
    display: none;
  }
}
@media (max-width: 1023px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero-terminal {
    width: 100%;
    max-width: 650px;
    margin: auto;
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .profile-card {
    max-width: 620px;
    margin: auto;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .skills-panel {
    grid-template-columns: 1fr;
  }
  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 76px;
  }
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    font-size: 0.95rem;
  }
  .container {
    width: calc(100% - 28px);
    max-width: none;
  }
  .site-header {
    position: sticky;
    top: 0;
  }
  .header-inner {
    min-height: 68px;
    gap: 12px;
  }
  .brand {
    min-width: 0;
    gap: 9px;
    font-size: 0.82rem;
  }
  .brand .mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.62rem;
  }
  .burger {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 10px;
  }
  .mobile-nav .container {
    width: calc(100% - 28px);
    padding-bottom: 16px;
  }
  .mobile-nav a:not(.btn) {
    padding: 14px 0 14px 8px;
    font-size: 0.9rem;
  }
  .mobile-nav .btn {
    min-height: 48px;
    margin-top: 14px;
    padding: 12px 16px;
    font-size: 0.78rem;
  }
  .section {
    padding: 64px 0;
  }
  .eyebrow {
    gap: 7px;
    font-size: 0.61rem;
    letter-spacing: 0.14em;
  }
  .eyebrow::before {
    width: 16px;
  }
  .h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1.02;
  }
  .h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1.08;
  }
  .lead {
    max-width: 100%;
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .mt-10 {
    margin-top: 28px;
  }
  .btn {
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 11px;
    font-size: 0.78rem;
  }
  .btn:hover {
    transform: none;
  }
  .hero {
    min-height: auto;
    align-items: stretch;
  }
  .hero .container {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding: 64px 0 56px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    margin-top: 12px;
  }
  .hero .lead {
    margin-top: 17px;
    font-size: 0.92rem;
    line-height: 1.72;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 24px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .stats {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 34px;
    padding-top: 19px;
  }
  .stats dt {
    font-size: 1.05rem;
    line-height: 1;
  }
  .stats dd {
    margin-top: 6px;
    font-size: 0.46rem;
    line-height: 1.35;
    letter-spacing: 0.06em;
  }
  .hero-terminal {
    width: 100%;
    max-width: none;
    margin: 0;
    transform: none;
    border-radius: 16px;
    box-shadow:
      0 20px 55px rgba(0, 0, 0, 0.32),
      0 0 55px rgba(36, 141, 255, 0.07);
  }
  .terminal-top {
    height: 42px;
    padding: 0 13px;
  }
  .terminal-top > span {
    width: 7px;
    height: 7px;
  }
  .terminal-top small {
    max-width: 120px;
    overflow: hidden;
    font-size: 0.55rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .terminal-body {
    padding: 17px 15px 19px;
    font-size: 0.64rem;
    line-height: 1.8;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .terminal-body p {
    width: max-content;
    min-width: 100%;
  }
  .cursor {
    width: 6px;
    height: 12px;
  }
  .hero-grid {
    background-size: 48px 48px;
    opacity: 0.28;
    mask-image: linear-gradient(180deg, #000, transparent 85%);
  }
  .hero-glow {
    width: 420px;
    height: 420px;
    top: 35%;
    right: -250px;
    opacity: 0.7;
  }
  .grid.three,
  .grid.two,
  .steps {
    grid-template-columns: 1fr;
  }
  .grid {
    gap: 12px;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .section-note {
    align-self: flex-start;
    max-width: 100%;
    padding: 7px 10px;
    font-size: 0.67rem;
  }
  .card {
    padding: 19px;
    border-radius: 14px;
  }
  .card:hover {
    transform: none;
  }
  .card h3 {
    font-size: 0.98rem;
  }
  .card p {
    font-size: 0.8rem;
    line-height: 1.65;
  }
  .card ul {
    gap: 7px;
    margin-top: 15px;
    font-size: 0.77rem;
  }
  .service-card {
    min-height: auto;
  }
  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 17px;
    border-radius: 10px;
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .profile-card {
    width: 100%;
    min-height: 330px;
    max-width: none;
    border-radius: 20px;
    padding: 25px 16px;
  }
  .profile-orbit {
    width: 240px;
    height: 240px;
  }
  .profile-orbit::after {
    top: 38px;
    right: 18px;
    width: 7px;
    height: 7px;
  }
  .profile-avatar {
    width: 92px;
    height: 88px;
  }
  .profile-avatar:hover {
    transform: none;
  }
  .profile-avatar:hover img {
    transform: none;
    filter: none;
  }
  .profile-name {
    margin-top: 17px;
    font-size: 1.08rem;
  }
  .profile-role {
    font-size: 0.71rem;
    text-align: center;
  }
  .profile-line {
    width: 65px;
    margin: 6px 0;
  }
  .profile-meta {
    gap: 6px;
    font-size: 0.65rem;
  }
  .skills-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 20px;
    border-radius: 18px;
  }
  .skill-main h3 {
    font-size: 1.25rem;
  }
  .skill-main p {
    font-size: 0.8rem;
  }
  .skill-list {
    gap: 7px;
  }
  .skill-tag {
    padding: 8px 10px;
    border-radius: 9px;
    font-size: 0.66rem;
  }
  .experience-note {
    gap: 10px;
    padding: 13px 14px;
    font-size: 0.7rem;
    line-height: 1.6;
  }
  .steps {
    gap: 10px;
  }
  .steps li {
    padding: 18px 18px 18px 20px;
    border-radius: 14px;
  }
  .steps li:hover {
    transform: none;
  }
  .steps .no {
    font-size: 0.68rem;
  }
  .steps h3 {
    font-size: 0.95rem;
  }
  .steps p {
    font-size: 0.77rem;
    line-height: 1.65;
  }
  .contact-grid {
    gap: 28px;
  }
  .contact-highlight {
    gap: 11px;
    margin-top: 19px;
    padding: 13px;
    border-radius: 12px;
  }
  .contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .contact-highlight strong {
    font-size: 0.77rem;
  }
  .contact-highlight p {
    font-size: 0.68rem;
    line-height: 1.55;
  }
  .form-card {
    padding: 18px;
    border-radius: 18px;
  }
  .field {
    margin-top: 12px;
  }
  .field label {
    font-size: 0.73rem;
  }
  .field input,
  .field textarea {
    min-height: 46px;
    padding: 11px 12px;
    font-size: 0.82rem;
    border-radius: 10px;
  }
  .field textarea {
    min-height: 130px;
  }
  .checkbox {
    gap: 8px;
    margin-top: 15px;
    font-size: 0.67rem;
    line-height: 1.55;
  }
  .checkbox input {
    flex: 0 0 auto;
  }
  .btn.full {
    margin-top: 17px;
  }
  .form-note {
    font-size: 0.62rem;
    line-height: 1.5;
  }
  .cta-band .container {
    padding: 52px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }
  .cta-band .h2 {
    max-width: 100%;
  }
  .cta-band p:not(.eyebrow) {
    font-size: 0.82rem;
    line-height: 1.65;
  }
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .pricing-section {
    padding: 64px 0;
  }
  .pricing-header {
    margin-bottom: 34px;
  }
  .pricing-title {
    margin-top: 12px;
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .pricing-header .lead {
    font-size: 0.88rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pricing-card {
    min-height: auto;
    padding: 21px;
    border-radius: 15px;
  }
  .pricing-card .card-header {
    margin-bottom: 23px;
  }
  .pricing-card .card-icon {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    font-size: 0.67rem;
  }
  .card-label {
    padding: 5px 8px;
    font-size: 0.52rem;
  }
  .pricing-card h2 {
    font-size: 1.08rem;
  }
  .card-description {
    min-height: auto;
    margin-top: 8px;
    font-size: 0.77rem;
    line-height: 1.6;
  }
  .pricing-card .price {
    margin: 20px 0;
  }
  .pricing-card .price strong {
    font-size: 1.85rem;
  }
  .pricing-card .price span {
    font-size: 0.64rem;
  }
  .feature-list {
    gap: 9px;
  }
  .feature-list li {
    padding-left: 19px;
    font-size: 0.71rem;
  }
  .pricing-button,
  .soon-button {
    margin-top: 23px;
  }
  .featured-badge {
    padding: 5px 9px;
    font-size: 0.51rem;
  }
  .pricing-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
    padding: 16px;
  }
  .pricing-footer strong {
    font-size: 0.73rem;
  }
  .pricing-footer span {
    font-size: 0.63rem;
    line-height: 1.5;
  }
  .pricing-footer a {
    width: 100%;
    justify-content: space-between;
    font-size: 0.68rem;
  }
  .site-footer {
    padding-bottom: env(safe-area-inset-bottom);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 38px 0 30px;
  }
  .footer-main {
    padding-bottom: 4px;
  }
  .footer-brand {
    display: block;
    font-size: 0.96rem;
    line-height: 1.35;
  }
  .site-footer p,
  .site-footer address,
  .site-footer li {
    font-size: 0.73rem;
    line-height: 1.65;
  }
  .site-footer h3 {
    margin-bottom: 10px;
    font-size: 0.61rem;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 7px 15px;
  }
  .footer-links li {
    min-width: 0;
  }
  .site-footer a {
    word-break: break-word;
  }
  .footer-bottom {
    padding: 14px 0;
    font-size: 0.61rem;
    line-height: 1.5;
  }
  .contact-fallback {
    margin-top: 20px;
    padding: 16px;
    border-radius: 14px;
  }
  .contact-fallback-top {
    gap: 10px;
  }
  .contact-fallback-icon {
    width: 35px;
    height: 35px;
    border-radius: 9px;
    font-size: 0.78rem;
  }
  .contact-fallback-label {
    font-size: 0.55rem;
  }
  .contact-fallback h3 {
    font-size: 0.84rem;
  }
  .contact-fallback > p {
    margin-top: 12px;
    font-size: 0.7rem;
    line-height: 1.65;
  }
  .contact-fallback-links {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }
  .contact-method {
    min-height: 50px;
    padding: 10px;
  }
  .contact-method-content strong {
    font-size: 0.65rem;
  }
  .contact-method-content small {
    font-size: 0.54rem;
  }
  .card:hover,
  .steps li:hover,
  .contact-method:hover,
  .contact-fallback:hover,
  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
  }
  .btn:hover .arrow {
    transform: none;
  }
}
@media (max-width: 380px) {
  .container {
    width: calc(100% - 24px);
  }
  .header-inner {
    min-height: 64px;
  }
  .brand {
    font-size: 0.76rem;
  }
  .brand .mark {
    width: 34px;
    height: 34px;
  }
  .burger {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .hero .container {
    padding-top: 52px;
    padding-bottom: 48px;
  }
  .hero .lead {
    font-size: 0.86rem;
  }
  .stats {
    gap: 6px;
  }
  .stats dt {
    font-size: 0.96rem;
  }
  .stats dd {
    font-size: 0.42rem;
  }
  .terminal-body {
    padding: 15px 12px 17px;
    font-size: 0.59rem;
  }
  .section {
    padding: 55px 0;
  }
  .profile-card {
    min-height: 310px;
  }
  .profile-orbit {
    width: 220px;
    height: 220px;
  }
  .profile-name {
    font-size: 1rem;
  }
  .profile-meta {
    font-size: 0.61rem;
  }
  .card {
    padding: 17px;
  }
  .steps li {
    padding: 17px;
  }
  .pricing-card {
    padding: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .cursor {
    animation: none;
  }
  .pricing-card,
  .pricing-card::before,
  .pricing-footer a .arrow,
  .contact-fallback,
  .contact-method,
  .contact-method-arrow {
    transition: none;
  }
}
.contact-fallback {
  position: relative;
  margin-top: 24px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(99, 176, 255, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(
      400px 180px at 0 0,
      rgba(36, 141, 255, 0.09),
      transparent 70%
    ),
    linear-gradient(
      145deg,
      rgba(36, 141, 255, 0.045),
      rgba(255, 255, 255, 0.018)
    );
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.contact-fallback:hover {
  border-color: rgba(99, 176, 255, 0.28);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.2),
    0 0 35px rgba(36, 141, 255, 0.05);
  transform: translateY(-2px);
}
.contact-fallback::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -100px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(36, 141, 255, 0.16),
    transparent 70%
  );
  pointer-events: none;
}
.contact-fallback-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
}
.contact-fallback-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(99, 176, 255, 0.18);
  border-radius: 10px;
  background: rgba(36, 141, 255, 0.08);
  color: var(--blue-light);
  font:
    800 0.85rem ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  box-shadow: 0 0 20px rgba(36, 141, 255, 0.06);
}
.contact-fallback-label {
  display: block;
  margin-bottom: 2px;
  color: var(--blue-light);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-fallback h3 {
  font-size: 0.9rem;
  font-weight: 650;
}
.contact-fallback > p {
  position: relative;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.65;
}
.contact-fallback > p strong {
  color: rgba(237, 245, 255, 0.8);
  font-weight: 700;
}
.contact-fallback-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 17px;
}
.contact-method {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.14);
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.contact-method:hover {
  border-color: rgba(99, 176, 255, 0.28);
  background: rgba(36, 141, 255, 0.07);
  transform: translateY(-2px);
}
.contact-method-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(36, 141, 255, 0.08);
  color: var(--blue-light);
  font:
    800 0.7rem ui-monospace,
    monospace;
}
.contact-method-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.contact-method-content small {
  color: var(--muted-2);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-method-content strong {
  overflow: hidden;
  color: rgba(237, 245, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-method-arrow {
  margin-left: auto;
  color: var(--blue-light);
  font-size: 0.9rem;
  opacity: 0.65;
  transition:
    transform 0.35s var(--ease),
    opacity 0.35s;
}
.contact-method:hover .contact-method-arrow {
  opacity: 1;
  transform: translateX(3px);
}
@media (max-width: 767px) {
  .contact-fallback {
    padding: 17px;
  }
  .contact-fallback-links {
    grid-template-columns: 1fr;
  }
  .contact-method {
    min-height: 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-fallback,
  .contact-method,
  .contact-method-arrow {
    transition: none;
  }
}


/* =========================================
   LEGAL / IMPRESSUM / DATENSCHUTZ
   ========================================= */

.legal-page {
  min-height: calc(100vh - 78px);
}

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

.legal-content {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.legal-card {
  height: 100%;
}

.legal-card p + p {
  margin-top: 14px;
}

.legal-card a {
  color: var(--blue-light);
  transition: color .3s var(--ease);
}

.legal-card a:hover {
  color: #fff;
}

.legal-card ul {
  display: grid;
  gap: 9px;
  margin-top: 17px;
  padding: 0;
  list-style: none;
}

.legal-card li {
  position: relative;
  padding-left: 21px;
  color: rgba(234,242,251,.72);
  font-size: .82rem;
}

.legal-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-weight: 800;
}

.legal-address {
  color: rgba(234,242,251,.75) !important;
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.07);
}

@media (max-width: 767px) {

  .legal-page {
    min-height: auto;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .legal-content {
    gap: 12px;
    margin-top: 32px;
  }

  .legal-card {
    padding: 19px;
  }

  .legal-card li {
    font-size: .76rem;
    line-height: 1.6;
  }

  .legal-footer {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
    padding-top: 20px;
  }

  .legal-footer .btn {
    width: 100%;
  }
}

.sitelock-section {
  display: flex;
  align-items: flex-start;
}

.sitelock-badge {
  display: block;
  width: 160px;
  height: auto;
  max-width: 100%;
}

/* =========================================================
   PRICING – DESIGN ENHANCEMENTS
   Nur Ergänzungen/Overrides für den bestehenden Pricing-Bereich
   ========================================================= */

/* Preisbereich stärker hervorheben */
.pricing-card .price {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  margin: 25px 0;
  padding: 18px 20px;
  border: 1px solid rgba(99, 176, 255, 0.10);
  border-radius: 14px;
  background:
    radial-gradient(
      180px 100px at 0% 50%,
      rgba(36, 141, 255, 0.10),
      transparent 75%
    ),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* dezenter Lichtverlauf im Preisfeld */
.pricing-card .price::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(
    180deg,
    var(--blue-light),
    var(--blue),
    transparent
  );
  opacity: 0.8;
}

/* "ab" */
.pricing-card .price span {
  position: relative;
  z-index: 1;
  color: var(--muted-2);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Preis */
.pricing-card .price strong {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

/* "einmalig" */
.pricing-card .price strong::after {
  content: "einmalig";
  margin-left: 9px;
  color: var(--muted-2);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0;
  vertical-align: middle;
}


/* =========================================================
   FEATURED PREIS
   ========================================================= */

.pricing-card--featured .price {
  border-color: rgba(99, 176, 255, 0.22);
  background:
    radial-gradient(
      220px 120px at 0% 50%,
      rgba(36, 141, 255, 0.17),
      transparent 75%
    ),
    rgba(36, 141, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 10px 30px rgba(36, 141, 255, 0.07);
}

.pricing-card--featured .price::before {
  background: linear-gradient(
    180deg,
    #9bd1ff,
    var(--blue),
    #0c67d4
  );
  opacity: 1;
}

.pricing-card--featured .price strong {
  text-shadow:
    0 0 25px rgba(99, 176, 255, 0.18);
}


/* =========================================================
   BACKEND PREIS
   ========================================================= */

.pricing-card--backend .price {
  border-color: rgba(114, 214, 160, 0.10);
  background:
    radial-gradient(
      200px 110px at 0% 50%,
      rgba(114, 214, 160, 0.08),
      transparent 75%
    ),
    rgba(255, 255, 255, 0.018);
}

.pricing-card--backend .price::before {
  background: linear-gradient(
    180deg,
    #9ce8bc,
    var(--green),
    transparent
  );
}


/* =========================================================
   CARD TITEL
   ========================================================= */

.pricing-card h2 {
  transition: color 0.35s var(--ease);
}

.pricing-card:hover h2 {
  color: #ffffff;
}


/* =========================================================
   FEATURE LIST
   ========================================================= */

.pricing-card .feature-list {
  gap: 10px;
}

.pricing-card .feature-list li {
  transition:
    color 0.3s ease,
    transform 0.3s var(--ease);
}

.pricing-card:hover .feature-list li {
  color: rgba(234, 242, 251, 0.82);
}

.pricing-card:hover .feature-list li::before {
  box-shadow:
    0 0 8px rgba(99, 176, 255, 0.5),
    0 0 14px rgba(36, 141, 255, 0.15);
}


/* =========================================================
   "NICHT AUTOMATISCH ENTHALTEN"
   Wird nur für den letzten card-description-Absatz verwendet
   ========================================================= */

.pricing-card .card-content > .card-description:last-child {
  position: relative;
  margin-top: 25px;
  padding: 14px 15px 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.13);
  color: var(--muted-2);
  font-size: 0.68rem;
  line-height: 1.65;
}

.pricing-card .card-content > .card-description:last-child::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: rgba(99, 176, 255, 0.45);
}

.pricing-card .card-content > .card-description:last-child strong {
  display: block;
  margin-bottom: 3px;
  color: rgba(237, 245, 255, 0.78);
  font-size: 0.67rem;
}


/* =========================================================
   BUTTON – etwas hochwertiger
   ========================================================= */

.pricing-card .pricing-button {
  min-height: 46px;
  border-radius: 11px;
}

.pricing-card .pricing-button .arrow {
  font-size: 1rem;
}


/* =========================================================
   FEATURED BUTTON
   ========================================================= */

.pricing-card--featured .pricing-button {
  box-shadow:
    0 10px 30px rgba(36, 141, 255, 0.18);
}

.pricing-card--featured .pricing-button:hover {
  box-shadow:
    0 16px 38px rgba(36, 141, 255, 0.28);
}


/* =========================================================
   BACKEND CARD – leichte Abgrenzung
   ========================================================= */

.pricing-card--backend {
  background:
    radial-gradient(
      450px 220px at 50% 0%,
      rgba(114, 214, 160, 0.035),
      transparent 70%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    );
}


/* =========================================================
   "IN ENTWICKLUNG" CARD
   ========================================================= */

.pricing-card--soon .price {
  background: rgba(255, 255, 255, 0.012);
}

.pricing-card--soon .price strong {
  color: rgba(237, 245, 255, 0.72);
}

.pricing-card--soon .price strong::after {
  color: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   FOOTER CTA
   ========================================================= */

.pricing-footer {
  background:
    radial-gradient(
      400px 150px at 0% 50%,
      rgba(36, 141, 255, 0.055),
      transparent 70%
    ),
    rgba(255, 255, 255, 0.018);
}

.pricing-footer strong {
  font-family: var(--display);
}


/* =========================================================
   HINWEISE UNTEN
   ========================================================= */

.pricing-notice {
  position: relative;
  margin-top: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.014);
}

.pricing-notice::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(99, 176, 255, 0.7),
    rgba(99, 176, 255, 0.05)
  );
}

.pricing-notice h2 {
  margin-top: 7px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .pricing-card .price {
    margin: 18px 0 21px;
    padding: 16px 17px;
  }

  .pricing-card .price strong {
    font-size: 2rem;
  }

  .pricing-card .price strong::after {
    font-size: 0.53rem;
  }

  .pricing-card .card-content > .card-description:last-child {
    margin-top: 20px;
    padding: 13px 14px 13px 16px;
    font-size: 0.65rem;
  }

  .pricing-notice {
    padding: 21px;
  }
}