﻿:root {
  --bg: #040818;
  --bg-alt: #0a1230;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f2f7ff;
  --muted: #a8b8d6;
  --heading: #ffffff;
  --brand: #0b84ff;
  --mint: #11efb3;
  --hero-glow: radial-gradient(circle at 12% 16%, rgba(11, 132, 255, 0.34), transparent 35%),
    radial-gradient(circle at 85% 12%, rgba(17, 239, 179, 0.2), transparent 28%),
    radial-gradient(circle at 52% 100%, rgba(11, 132, 255, 0.18), transparent 38%);
  --header-shadow: 0 12px 32px rgba(4, 9, 25, 0.32);
  --card-shadow: 0 16px 36px rgba(8, 20, 47, 0.28);
}

body[data-theme='light'] {
  --bg: #f3f8ff;
  --bg-alt: #e7eef9;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(19, 47, 98, 0.14);
  --text: #152544;
  --muted: #4c6389;
  --heading: #0b1e40;
  --hero-glow: radial-gradient(circle at 12% 16%, rgba(11, 132, 255, 0.14), transparent 35%),
    radial-gradient(circle at 85% 12%, rgba(17, 239, 179, 0.13), transparent 28%),
    radial-gradient(circle at 52% 100%, rgba(11, 132, 255, 0.1), transparent 38%);
  --header-shadow: 0 12px 24px rgba(15, 35, 80, 0.1);
  --card-shadow: 0 14px 34px rgba(16, 38, 87, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 52%, var(--bg) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 300ms ease, color 300ms ease;
}

body::before {
  content: '';
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 132, 255, 0.16), transparent 68%);
  top: calc(var(--pointer-y, 50) * 1%);
  left: calc(var(--pointer-x, 50) * 1%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 300ms ease;
  opacity: 0.55;
}

body[data-theme='light']::before {
  opacity: 0.38;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
.display {
  font-family: 'Sora', 'Manrope', sans-serif;
  color: var(--heading);
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 140px 140px;
  mix-blend-mode: soft-light;
  opacity: 0.05;
  z-index: -1;
  mask-image: radial-gradient(circle at center, black, transparent 88%);
}

body[data-theme='light'] .noise {
  opacity: 0.02;
  mix-blend-mode: multiply;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.glass {
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.panel {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: var(--card-shadow);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8cceff;
}

.tag::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand), var(--mint));
}

.text-muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--mint));
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 132, 255, 0.28);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.site-header-wrap {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 90;
  padding-top: 1rem;
}

.site-header {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--header-shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 8% 20%, rgba(11, 132, 255, 0.24), transparent 36%),
    radial-gradient(circle at 90% 0%, rgba(17, 239, 179, 0.14), transparent 28%);
  backdrop-filter: blur(22px) saturate(165%);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(100deg, transparent 18%, rgba(255, 255, 255, 0.28) 50%, transparent 82%);
  transform: translateX(-120%);
  animation: nav-sheen 8s linear infinite;
  pointer-events: none;
}

.site-header::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  top: var(--nav-y, 50%);
  left: var(--nav-x, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(11, 132, 255, 0.26), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 280ms ease;
}

.site-header.is-hovered::after {
  opacity: 1;
}

.site-header.is-scrolled {
  transform: translateY(-2px);
  border-color: rgba(11, 132, 255, 0.46);
  box-shadow: 0 18px 34px rgba(6, 16, 38, 0.32), 0 0 0 1px rgba(17, 239, 179, 0.2);
}

body[data-theme='light'] .site-header {
  border-color: rgba(19, 47, 98, 0.2);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at 8% 20%, rgba(11, 132, 255, 0.16), transparent 36%),
    radial-gradient(circle at 90% 0%, rgba(17, 239, 179, 0.1), transparent 28%);
}

body[data-theme='light'] .site-header::after {
  background: radial-gradient(circle, rgba(11, 132, 255, 0.2), transparent 70%);
}

.site-header-inner {
  position: relative;
  z-index: 2;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 0.8rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(11, 132, 255, 0.3));
}

.brand p:first-child {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.brand p:last-child {
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--heading);
  border-color: rgba(11, 132, 255, 0.46);
  background: linear-gradient(120deg, rgba(11, 132, 255, 0.24), rgba(17, 239, 179, 0.14));
  box-shadow: 0 8px 18px rgba(11, 132, 255, 0.2);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.theme-btn:hover {
  background: linear-gradient(130deg, rgba(11, 132, 255, 0.22), rgba(17, 239, 179, 0.16));
  border-color: rgba(17, 239, 179, 0.5);
  box-shadow: 0 8px 16px rgba(11, 132, 255, 0.2);
  transform: translateY(-1px);
}

.menu-btn {
  width: 42px;
  height: 42px;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease;
}

.menu-btn:hover {
  border-color: rgba(11, 132, 255, 0.5);
  background: linear-gradient(130deg, rgba(11, 132, 255, 0.22), rgba(17, 239, 179, 0.14));
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.8rem 0.95rem 1rem;
}

.mobile-menu.show {
  display: block;
}

.mobile-menu nav {
  display: grid;
  gap: 0.45rem;
}

.mobile-menu nav a {
  padding: 0.6rem 0.75rem;
  border-radius: 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.mobile-menu nav a.is-active,
.mobile-menu nav a:hover {
  background: var(--surface-strong);
  color: var(--heading);
}

main {
  padding-top: 6.75rem;
}

.home-page main {
  padding-top: 0;
}

.full-hero-page main {
  padding-top: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.1rem 0 2.8rem;
  background-image: var(--hero-glow);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.06) 50%, transparent 78%);
  transform: translateX(-120%);
  animation: hero-scan 9s linear infinite;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
}

.hero.hero-full {
  min-height: calc(100vh - 0.5rem);
  min-height: calc(100svh - 0.5rem);
  display: block;
  padding: 0;
  background: none;
  border-bottom: 1px solid var(--line);
}

.hero-full-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(4, 8, 24, 0.88) 0%, rgba(4, 8, 24, 0.54) 48%, rgba(4, 8, 24, 0.82) 100%),
    radial-gradient(circle at 13% 20%, rgba(11, 132, 255, 0.42), transparent 36%),
    radial-gradient(circle at 87% 24%, rgba(17, 239, 179, 0.2), transparent 34%);
}

body[data-theme='light'] .hero-full-overlay {
  background:
    linear-gradient(102deg, rgba(8, 22, 46, 0.72) 0%, rgba(7, 20, 43, 0.34) 48%, rgba(8, 22, 46, 0.68) 100%),
    radial-gradient(circle at 13% 20%, rgba(11, 132, 255, 0.34), transparent 36%),
    radial-gradient(circle at 87% 24%, rgba(17, 239, 179, 0.18), transparent 34%);
}

.hero-full-content {
  position: relative;
  z-index: 2;
  width: min(1220px, 100%);
  margin-inline: auto;
  min-height: calc(100vh - 0.5rem);
  min-height: calc(100svh - 0.5rem);
  padding-inline: clamp(0.9rem, 3.2vw, 2.6rem);
  padding-top: clamp(4.9rem, 6.6vw, 6.2rem);
  padding-bottom: clamp(0.85rem, 1.8vw, 1.45rem);
  display: grid;
  align-items: center;
}

.hero-full-grid {
  width: 100%;
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.hero-full .hero-intro {
  max-width: 760px;
  text-align: left;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  animation: none;
}

.hero-full .hero-intro h1 {
  font-size: clamp(2.05rem, 4.6vw, 4.15rem);
  line-height: 0.96;
  margin-top: 0.9rem;
  max-width: 14ch;
  color: #f7fbff;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.38);
}

.hero-full .hero-intro p {
  margin-top: 1rem;
  max-width: 56ch;
  color: #e8f2ff;
}

body[data-theme='light'] .hero-full .hero-intro p {
  color: #f6faff;
}

.hero-full .hero-actions {
  justify-content: flex-start;
}

.hero-full .tag {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(7, 20, 43, 0.3);
  color: #daf0ff;
}

.hero-chip-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-chip-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(6, 17, 40, 0.34);
  color: #d6e7ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body[data-theme='light'] .hero-chip-row span {
  background: rgba(255, 255, 255, 0.26);
  color: #f5f9ff;
}

.hero-command {
  position: relative;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(8, 20, 44, 0.76), rgba(8, 18, 38, 0.62)),
    radial-gradient(circle at 100% 0%, rgba(17, 239, 179, 0.18), transparent 38%);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  padding: 0.95rem;
}

body[data-theme='light'] .hero-command {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(245, 250, 255, 0.24)),
    radial-gradient(circle at 100% 0%, rgba(17, 239, 179, 0.14), transparent 38%);
}

.hero-command-label {
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8d6f6;
  font-weight: 800;
}

.hero-command-grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.58rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-command-card {
  border-radius: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 20, 44, 0.5);
  padding: 0.62rem;
}

body[data-theme='light'] .hero-command-card {
  background: rgba(255, 255, 255, 0.24);
}

.hero-command-card small {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #c4ddf7;
}

.hero-command-card strong {
  display: block;
  margin-top: 0.3rem;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.2rem;
  color: #f3f8ff;
}

.hero-command-footer {
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 0.65rem;
}

.hero-command-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: #c2dbf5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-command-headline strong {
  color: #95ffe2;
}

.hero h1 {
  font-size: clamp(2.15rem, 6vw, 4.6rem);
  line-height: 0.97;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}

.hero p {
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
  max-width: 620px;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-image {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 260ms ease;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.logo-inline-card {
  margin-top: 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(11, 132, 255, 0.14), rgba(255, 255, 255, 0.03));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-inline-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.stat-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.stat-pill {
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.65rem 0.6rem;
  text-align: center;
}

.stat-pill strong {
  display: block;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.08rem;
}

.partner-strip {
  margin-top: 1.2rem;
  border-block: 1px solid var(--line);
  padding: 0.95rem 0;
}

.partner-strip .items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  justify-content: center;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: 3.4rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  margin-top: 0.55rem;
}

.section-head p {
  margin-top: 0.8rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.card-grid {
  display: grid;
  gap: 0.95rem;
}

.capability-grid {
  display: grid;
  gap: 0.95rem;
}

.capability-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.05rem;
  border: 1px solid rgba(11, 132, 255, 0.34);
  background:
    radial-gradient(circle at 0% 0%, rgba(11, 132, 255, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(10, 24, 58, 0.88), rgba(6, 13, 35, 0.92));
  padding: 1.05rem;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 230ms ease, border-color 230ms ease, box-shadow 230ms ease;
}

.capability-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(17, 239, 179, 0.2) 45%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  animation: tech-border-flow 5.4s ease-in-out infinite;
  pointer-events: none;
}

.capability-card::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  right: 0.6rem;
  top: 0.6rem;
  border-radius: 50%;
  background: #11efb3;
  box-shadow: 0 0 0 0 rgba(17, 239, 179, 0.6);
  animation: tech-node-pulse 2.6s ease-out infinite;
}

body[data-theme='light'] .capability-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(11, 132, 255, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 255, 0.92));
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 239, 179, 0.54);
  box-shadow: 0 18px 34px rgba(11, 132, 255, 0.18);
}

.capability-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(17, 239, 179, 0.55);
  color: #97ffe0;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

body[data-theme='light'] .capability-chip {
  color: #0a7f62;
  border-color: rgba(10, 127, 98, 0.42);
}

.capability-card h3 {
  margin-top: 0.65rem;
  font-size: 1.07rem;
}

.capability-card p {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--muted);
}

.capability-points {
  list-style: none;
  margin-top: 0.68rem;
  display: grid;
  gap: 0.34rem;
  font-size: 0.82rem;
  color: #c7d7f1;
}

body[data-theme='light'] .capability-points {
  color: #35527f;
}

.capability-points li::before {
  content: '▹ ';
  color: #11efb3;
  font-weight: 700;
}

.clients-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0 1.2rem;
}

.clients-head {
  margin-bottom: 0.75rem;
  text-align: center;
}

.clients-head h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.clients-marquee {
  width: 100%;
  overflow: hidden;
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  animation: clients-left 28s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.client-mini-card {
  width: 162px;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.55rem;
  text-align: center;
  flex: 0 0 auto;
}

.client-mini-card img {
  width: 100%;
  height: 72px;
  border-radius: 0.55rem;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.32rem;
}

.client-mini-card p {
  margin-top: 0.42rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.feature-card {
  padding: 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(11, 132, 255, 0.14), rgba(17, 239, 179, 0.05));
  transition: transform 220ms ease, border-color 220ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 132, 255, 0.46);
}

.feature-card h3 {
  font-size: 1.14rem;
}

.feature-card p {
  margin-top: 0.55rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.list-tight {
  margin-top: 0.8rem;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  gap: 0.85rem;
}

.process-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1rem;
  transform-style: preserve-3d;
  will-change: transform;
}

.process-card small {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #88ceff;
}

.process-card h3 {
  margin-top: 0.5rem;
}

.process-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.93rem;
}

.image-split {
  display: grid;
  gap: 0.9rem;
}

.image-split img {
  border-radius: 1rem;
  border: 1px solid var(--line);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.info-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 1rem;
  padding: 1rem;
}

.info-card h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8fcbff;
}

.info-card p,
.info-card a {
  margin-top: 0.45rem;
  display: block;
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

.map-shell {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface);
}

.map-shell iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.map-shell .caption {
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.tool-grid {
  display: grid;
  gap: 1rem;
}

.tool-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1rem;
}

.tool-card.quote-spotlight {
  position: relative;
  overflow: hidden;
  border-color: rgba(11, 132, 255, 0.4);
  background:
    radial-gradient(circle at 0% 0%, rgba(11, 132, 255, 0.18), transparent 34%),
    linear-gradient(140deg, color-mix(in srgb, var(--surface) 90%, #0d2248 10%), var(--surface));
}

.tool-card.quote-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(17, 239, 179, 0.15) 48%, transparent 80%);
  transform: translateX(-120%);
  animation: quote-sheen 7s linear infinite;
  pointer-events: none;
}

.tool-card h3 {
  font-size: 1.1rem;
}

.tool-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.93rem;
}

.inline-form {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.inline-form .field {
  flex: 1 1 220px;
}

.domain-result,
.quote-result {
  margin-top: 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 75%, transparent);
  padding: 0.75rem 0.85rem;
  font-size: 0.92rem;
}

.domain-result strong,
.quote-result strong {
  color: var(--heading);
}

.status-available {
  color: #4af0b6;
  font-weight: 800;
}

.status-taken {
  color: #ff8f8f;
  font-weight: 800;
}

.quote-options {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.option-row {
  display: grid;
  gap: 0.6rem;
}

.check-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.check-wrap input[type='checkbox'] {
  accent-color: var(--brand);
}

.check-grid {
  display: grid;
  gap: 0.45rem;
}

.quote-actions {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.price-line {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 0.95rem;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: var(--heading);
  position: relative;
  padding-right: 2.2rem;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-weight: 800;
  font-size: 1rem;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  font-size: 0.95rem;
}

.field,
textarea,
select {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 0.74rem 0.84rem;
  font: inherit;
}

.field::placeholder,
textarea::placeholder {
  color: var(--muted);
}

.field:focus,
textarea:focus,
select:focus {
  border-color: rgba(11, 132, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(11, 132, 255, 0.15);
  outline: none;
}

.grid-2 {
  display: grid;
  gap: 0.8rem;
}

.cta-band {
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(11, 132, 255, 0.2), rgba(17, 239, 179, 0.12));
  padding: 1.35rem;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  line-height: 1.15;
}

.cta-band p {
  margin-top: 0.65rem;
  max-width: 700px;
  color: #d5e7ff;
}

body[data-theme='light'] .cta-band p {
  color: #2e4f85;
}

.code-mock {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--bg) 80%, black 20%);
  padding: 0.9rem;
  overflow: auto;
}

body[data-theme='light'] .code-mock {
  background: #0f1b37;
}

.code-mock pre {
  margin: 0;
  color: #97e5ff;
  font-size: 0.82rem;
  line-height: 1.62;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
}

.image-feature-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.image-tile {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 260ms ease, border-color 260ms ease;
}

.image-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 132, 255, 0.44);
}

.image-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-tile .caption {
  padding: 0.75rem 0.85rem;
}

.image-tile .caption strong {
  font-size: 0.96rem;
}

.image-tile .caption p {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 0.32rem;
}

.signal-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.signal-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(11, 132, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(9, 24, 56, 0.88), rgba(6, 14, 36, 0.92)),
    radial-gradient(circle at 0% 0%, rgba(11, 132, 255, 0.24), transparent 44%);
  padding: 1rem;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 230ms ease, border-color 230ms ease, box-shadow 230ms ease;
  animation: signal-card-breathe 5.8s ease-in-out infinite;
}

body[data-theme='light'] .signal-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 255, 0.95)),
    radial-gradient(circle at 0% 0%, rgba(11, 132, 255, 0.18), transparent 44%);
}

.signal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.26;
  pointer-events: none;
  animation: signal-grid-scan 7.5s linear infinite;
}

.signal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 239, 179, 0.58);
  box-shadow: 0 16px 34px rgba(11, 132, 255, 0.18);
}

.signal-card:nth-child(2) {
  animation-delay: 0.35s;
}

.signal-card:nth-child(3) {
  animation-delay: 0.7s;
}

.signal-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.signal-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.78rem;
  border: 1px solid rgba(17, 239, 179, 0.45);
  color: #8fe7ff;
  background: linear-gradient(135deg, rgba(11, 132, 255, 0.2), rgba(17, 239, 179, 0.12));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body[data-theme='light'] .signal-icon {
  color: #13639b;
}

.signal-icon svg {
  width: 21px;
  height: 21px;
}

.signal-metric {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #8ecdfb;
  font-weight: 800;
  position: relative;
  padding-left: 0.72rem;
}

body[data-theme='light'] .signal-metric {
  color: #1b5a97;
}

.signal-metric::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #11efb3;
  box-shadow: 0 0 0 0 rgba(17, 239, 179, 0.62);
  animation: signal-live-dot 2.2s ease-out infinite;
}

.signal-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 0.72rem;
  font-size: 1.05rem;
}

.signal-card p {
  position: relative;
  z-index: 1;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.signal-line {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.signal-line span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--mint));
  box-shadow: 0 0 14px rgba(11, 132, 255, 0.42);
  animation: signal-load 1.7s ease-out forwards, signal-pulse 2.4s ease-in-out 1.7s infinite;
}

.signal-card:nth-child(2) .signal-line span {
  animation-delay: 0.25s, 1.95s;
}

.signal-card:nth-child(3) .signal-line span {
  animation-delay: 0.45s, 2.15s;
}

footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding: 2rem 0 1rem;
  background: color-mix(in srgb, var(--bg) 92%, black 8%);
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-col h3 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.footer-col ul {
  list-style: none;
  margin-top: 0.7rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.whatsapp-inline svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #25d366;
  flex: 0 0 auto;
}

.whatsapp-fab {
  position: fixed;
  left: 0.9rem;
  right: auto;
  bottom: 1.2rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.62rem 0.9rem 0.62rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.52);
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  font-weight: 800;
  letter-spacing: 0.01em;
  animation: whatsapp-fab-float 2.4s ease-in-out infinite;
}

@media (max-width: 1023px) {
  .hero-full-content {
    padding-top: clamp(4.7rem, 10vw, 5.35rem);
    padding-bottom: 0.9rem;
  }

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

  .hero-command {
    display: none;
  }

  .hero-full .hero-intro h1 {
    max-width: 100%;
  }
}

.whatsapp-fab::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: whatsapp-fab-ring 2.4s ease-out infinite;
  pointer-events: none;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 34px rgba(18, 140, 126, 0.45);
  filter: brightness(1.02);
}

.whatsapp-fab svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
}

.whatsapp-fab .label {
  font-size: 0.85rem;
  white-space: nowrap;
}

.whatsapp-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 12, 30, 0.64);
  backdrop-filter: blur(3px);
}

.whatsapp-modal {
  width: min(100%, 460px);
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--card-shadow);
  padding: 1rem;
}

.whatsapp-modal h3 {
  font-size: 1.15rem;
}

.whatsapp-modal p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.whatsapp-modal textarea {
  margin-top: 0.75rem;
  min-height: 120px;
  resize: vertical;
}

.whatsapp-modal-error {
  margin-top: 0.5rem;
  color: #ff9b9b;
  font-size: 0.85rem;
  min-height: 1.2em;
}

.whatsapp-modal-actions {
  margin-top: 0.85rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
}

.footer-bottom {
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  font-size: 0.83rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

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

.pulse-dot {
  position: relative;
  padding-left: 0.85rem;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgba(17, 239, 179, 0.7);
  animation: pulse-dot 2.4s ease-out infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(17, 239, 179, 0.48); }
  70% { box-shadow: 0 0 0 13px rgba(17, 239, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 239, 179, 0); }
}

@keyframes hero-scan {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes clients-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes signal-card-breathe {
  0% { box-shadow: 0 0 0 rgba(11, 132, 255, 0); }
  50% { box-shadow: 0 12px 22px rgba(11, 132, 255, 0.14); }
  100% { box-shadow: 0 0 0 rgba(11, 132, 255, 0); }
}

@keyframes signal-grid-scan {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 18px 18px, 18px 18px; }
}

@keyframes signal-live-dot {
  0% { box-shadow: 0 0 0 0 rgba(17, 239, 179, 0.62); }
  70% { box-shadow: 0 0 0 10px rgba(17, 239, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 239, 179, 0); }
}

@keyframes signal-load {
  from { width: 0%; }
  to { width: var(--level, 78%); }
}

@keyframes signal-pulse {
  0% { box-shadow: 0 0 9px rgba(11, 132, 255, 0.24); }
  50% { box-shadow: 0 0 16px rgba(17, 239, 179, 0.42); }
  100% { box-shadow: 0 0 9px rgba(11, 132, 255, 0.24); }
}

@keyframes nav-sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes tech-border-flow {
  0% { transform: translateX(-120%); }
  50% { transform: translateX(12%); }
  100% { transform: translateX(120%); }
}

@keyframes tech-node-pulse {
  0% { box-shadow: 0 0 0 0 rgba(17, 239, 179, 0.56); }
  70% { box-shadow: 0 0 0 10px rgba(17, 239, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 239, 179, 0); }
}

@keyframes quote-sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes whatsapp-fab-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes whatsapp-fab-ring {
  0% { transform: scale(1); opacity: 0.7; }
  80% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}

@media (min-width: 720px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .option-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }

  .image-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .signal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 719px) {
  .hero-full-content {
    align-items: end;
    padding-top: 5.2rem;
    padding-bottom: 1.1rem;
  }

  .hero-full-grid {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-full .hero-intro {
    text-align: left;
  }

  .hero-full .hero-intro h1 {
    max-width: 100%;
    font-size: clamp(1.86rem, 9.1vw, 2.55rem);
  }

  .hero-full .hero-intro p {
    max-width: 100%;
    margin-top: 0.82rem;
    font-size: 0.98rem;
    line-height: 1.63;
  }

  .hero-full .hero-actions {
    justify-content: flex-start;
  }

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

  .hero-command-card strong {
    font-size: 1.05rem;
  }
}

@media (min-width: 960px) {
  .menu-btn,
  .mobile-menu {
    display: none;
  }

  .nav-links,
  .header-actions {
    display: flex;
  }

  .site-header-inner {
    padding-inline: 1.25rem;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .image-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .whatsapp-fab {
    bottom: 0.9rem;
    padding: 0.58rem 0.78rem 0.58rem 0.66rem;
    left: 0.7rem;
    right: auto;
  }

  .whatsapp-fab .label {
    font-size: 0.8rem;
  }
}

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