:root {
  --bg: #070a17;
  --bg-2: #0d1224;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f8fbff;
  --muted: #aab4ca;
  --line: rgba(255, 255, 255, 0.14);
  --primary: #6ee7ff;
  --secondary: #9b7bff;
  --accent: #2cffb9;
  --danger: #ff4edb;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body.lock-scroll {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 18px;
  background: radial-gradient(circle at center, #12183a 0%, #070a17 58%);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader p {
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 110px;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-orbit {
  position: absolute;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  animation: spin 1.7s linear infinite;
}

.loader-orbit span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 28px var(--primary);
}

.loader-orbit span:nth-child(1) { left: 48px; top: -8px; }
.loader-orbit span:nth-child(2) { right: 4px; bottom: 18px; background: var(--secondary); box-shadow: 0 0 28px var(--secondary); }
.loader-orbit span:nth-child(3) { left: 8px; bottom: 12px; background: var(--accent); box-shadow: 0 0 28px var(--accent); }

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  display: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 22px var(--primary);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(110, 231, 255, 0.6);
  border-radius: 50%;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.is-hover {
  width: 70px;
  height: 70px;
  border-color: rgba(44, 255, 185, 0.65);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 10, 23, 0.72);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #06101c;
  box-shadow: 0 12px 35px rgba(110, 231, 255, 0.28);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

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

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  min-height: 46px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 100vh;
  position: relative;
  padding: 150px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(155, 123, 255, 0.28), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(44, 255, 185, 0.16), transparent 28%),
    linear-gradient(180deg, #080b1a 0%, #0a0f22 58%, #070a17 100%);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.7;
  animation: floatGlow 7s ease-in-out infinite alternate;
}

.hero-glow-one {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: 16%;
  background: rgba(110, 231, 255, 0.18);
}

.hero-glow-two {
  width: 340px;
  height: 340px;
  right: -100px;
  top: 18%;
  background: rgba(155, 123, 255, 0.16);
  animation-delay: -2s;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 60px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(44, 255, 185, 0.6);
  animation: pulse 1.5s infinite;
}

h1,
h2,
h3 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(46px, 7vw, 92px);
  margin-top: 18px;
  max-width: 850px;
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(120deg, var(--primary), var(--accent), var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200%;
  animation: gradientShift 5s ease-in-out infinite;
}

.hero-lead {
  margin-top: 24px;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.btn {
  min-height: 54px;
  padding: 0 26px;
}

.btn-primary {
  color: #06101c;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 48px rgba(44, 255, 185, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(110, 231, 255, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
  max-width: 600px;
}

.hero-stats div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 630px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.phone-frame {
  width: min(420px, 92vw);
  height: 590px;
  border-radius: 46px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  transform: rotateX(8deg) rotateY(-10deg);
  animation: deviceFloat 6s ease-in-out infinite;
}

.phone-frame::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 45px;
  background: radial-gradient(circle at 20% 10%, rgba(110, 231, 255, 0.28), transparent 28%), linear-gradient(180deg, rgba(7, 10, 23, 0.8), rgba(13, 18, 36, 0.94));
}

.phone-top {
  position: absolute;
  left: 50%;
  top: 17px;
  transform: translateX(-50%);
  width: 118px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #060817;
  z-index: 2;
}

.dashboard-card {
  position: absolute;
  z-index: 3;
  left: 34px;
  right: 34px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.dashboard-card h3 {
  margin-top: 10px;
  font-size: 23px;
}

.dashboard-card p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 14px;
}

.card-badge {
  font-size: 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.active-card {
  top: 86px;
  animation: cardFloat 5s ease-in-out infinite;
}

.second-card {
  top: 270px;
  transform: translateX(38px);
  animation: cardFloat 5.6s ease-in-out infinite reverse;
}

.third-card {
  top: 416px;
  transform: translateX(-22px);
  animation: cardFloat 5.2s ease-in-out infinite;
}

.progress-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-top: 20px;
}

.progress-bar span {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: inherit;
  animation: progressPulse 2s ease-in-out infinite alternate;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.mini-grid span {
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.28), rgba(155, 123, 255, 0.18));
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 74px;
  margin-top: 10px;
}

.chart-bars i {
  flex: 1;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--secondary));
  animation: barWave 1.8s ease-in-out infinite alternate;
}

.chart-bars i:nth-child(1) { height: 38%; }
.chart-bars i:nth-child(2) { height: 78%; animation-delay: 0.2s; }
.chart-bars i:nth-child(3) { height: 55%; animation-delay: 0.35s; }
.chart-bars i:nth-child(4) { height: 92%; animation-delay: 0.5s; }

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: spin 15s linear infinite;
}

.orbit-one {
  width: 520px;
  height: 520px;
  border-top-color: rgba(110, 231, 255, 0.7);
}

.orbit-two {
  width: 650px;
  height: 650px;
  border-bottom-color: rgba(44, 255, 185, 0.5);
  animation-duration: 24s;
  animation-direction: reverse;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.scroll-indicator i {
  width: 2px;
  height: 38px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}

.scroll-indicator i::after {
  content: '';
  position: absolute;
  left: 0;
  top: -18px;
  width: 100%;
  height: 18px;
  background: var(--primary);
  animation: scrollLine 1.5s ease-in-out infinite;
}

.logo-strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.ticker {
  white-space: nowrap;
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  gap: 38px;
  padding: 22px 0;
  animation: ticker 24s linear infinite;
}

.ticker span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 115px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 58px;
}

.section-head h2,
.process-copy h2,
.training-card h2,
.about-copy h2,
.contact-copy h2 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 60px);
}

.section-head p,
.process-copy p,
.training-card p,
.about-copy p,
.contact-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.services {
  background: linear-gradient(180deg, #070a17 0%, #0b1022 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.showcase-card,
.training-card,
.career-panel,
.main-glass,
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  border-radius: var(--radius);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.service-card {
  padding: 30px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(110, 231, 255, 0.24), transparent 34%);
  transition: opacity 0.25s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(110, 231, 255, 0.35);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  font-size: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 28px;
}

.service-card p {
  color: var(--muted);
  margin-top: 14px;
}

.service-card ul {
  margin-top: 22px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-card li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.service-card li::before {
  content: '✦';
  color: var(--accent);
  margin-right: 10px;
}

.process {
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, rgba(155, 123, 255, 0.16), transparent 28%);
}

.process-grid,
.training-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 50px;
  align-items: center;
}

.process-copy .btn {
  margin-top: 32px;
}

.timeline {
  display: grid;
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 33px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(var(--primary), var(--secondary), var(--accent));
  opacity: 0.5;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline-item span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #06101c;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(110, 231, 255, 0.25);
  z-index: 1;
}

.timeline-item h3 {
  font-size: 25px;
}

.timeline-item p {
  color: var(--muted);
  margin-top: 8px;
}

.showcase {
  background: linear-gradient(180deg, #0b1022, #070a17);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.showcase-card {
  padding: 30px;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.showcase-card.large {
  grid-row: span 2;
  min-height: 624px;
}

.showcase-card h3 {
  font-size: 30px;
  margin-top: 24px;
}

.showcase-card p {
  color: var(--muted);
  margin-top: 12px;
}

.mock-browser {
  min-height: 380px;
  border-radius: 30px;
  padding: 24px;
  background: rgba(5, 8, 19, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
}

.mock-browser::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -40px;
  bottom: -40px;
  background: rgba(110, 231, 255, 0.2);
  filter: blur(18px);
  animation: floatGlow 5s ease-in-out infinite alternate;
}

.browser-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
}

.browser-dots span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mock-line {
  width: 58%;
  height: 18px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
}

.mock-line.wide {
  width: 82%;
  height: 38px;
  background: linear-gradient(90deg, rgba(110, 231, 255, 0.5), rgba(155, 123, 255, 0.42));
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.mock-grid i {
  min-height: 128px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  animation: cardFloat 4s ease-in-out infinite;
}

.mock-grid i:nth-child(2) { animation-delay: 0.3s; }
.mock-grid i:nth-child(3) { animation-delay: 0.6s; }

.radial-score {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--primary), var(--accent), var(--secondary), rgba(255, 255, 255, 0.12));
  position: relative;
  animation: spin 8s linear infinite;
}

.radial-score::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #0b1022;
}

.radial-score span {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 30px;
}

.sparkline {
  height: 130px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.sparkline span {
  width: 19%;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--secondary));
  animation: barWave 1.8s ease-in-out infinite alternate;
}

.sparkline span:nth-child(1) { height: 42%; }
.sparkline span:nth-child(2) { height: 72%; animation-delay: 0.25s; }
.sparkline span:nth-child(3) { height: 58%; animation-delay: 0.45s; }
.sparkline span:nth-child(4) { height: 95%; animation-delay: 0.65s; }

.training {
  background: radial-gradient(circle at 80% 20%, rgba(44, 255, 185, 0.13), transparent 25%);
}

.training-card,
.career-panel {
  padding: 36px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.career-panel h3 {
  font-size: 31px;
  margin-bottom: 18px;
}

.track-list {
  display: grid;
  gap: 12px;
}

.track {
  width: 100%;
  padding: 17px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.track:hover,
.track.active {
  background: rgba(110, 231, 255, 0.12);
  border-color: rgba(110, 231, 255, 0.34);
  transform: translateX(6px);
}

.track-content {
  margin-top: 22px;
  padding: 22px;
  border-radius: 20px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about {
  background: linear-gradient(180deg, #070a17, #0b1022);
}

.about-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}

.main-glass {
  width: min(430px, 100%);
  padding: 34px;
  position: relative;
  z-index: 2;
  animation: deviceFloat 6s ease-in-out infinite;
}

.main-glass h3 {
  font-size: 36px;
}

.main-glass p {
  color: var(--muted);
  margin-top: 14px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-row span {
  color: var(--muted);
}

.shape {
  position: absolute;
  border-radius: 34px;
  opacity: 0.78;
  filter: blur(0.2px);
}

.shape-one {
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg, var(--primary), transparent);
  left: 8%;
  top: 16%;
  animation: shapeMove 8s ease-in-out infinite alternate;
}

.shape-two {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--secondary), var(--danger));
  right: 10%;
  bottom: 12%;
  animation: shapeMove 7s ease-in-out infinite alternate-reverse;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-points div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.about-points span {
  color: var(--accent);
  margin-right: 10px;
}

.contact {
  background: radial-gradient(circle at 20% 0%, rgba(110, 231, 255, 0.15), transparent 28%);
}

.contact-grid {
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a,
.contact-list > div {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-list a:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-list strong,
.contact-list small {
  display: block;
}

.contact-list small {
  color: var(--muted);
  margin-top: 4px;
}

.contact-form {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.form-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -100px;
  border-radius: 50%;
  background: rgba(110, 231, 255, 0.18);
  filter: blur(24px);
}

.contact-form h3 {
  font-size: 33px;
  margin-bottom: 24px;
  position: relative;
}

.contact-form label {
  display: block;
  margin-bottom: 17px;
  position: relative;
}

.contact-form span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  background: rgba(6, 8, 20, 0.55);
  color: var(--text);
  border-radius: 16px;
  padding: 15px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(110, 231, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(110, 231, 255, 0.08);
  background: rgba(6, 8, 20, 0.75);
}

.contact-form option {
  background: #10162a;
}

.full {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  margin-top: 13px;
}

.site-footer {
  padding: 70px 0 28px;
  background: #050713;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  margin-bottom: 14px;
}

.site-footer a {
  display: block;
  margin-top: 9px;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

#backToTop {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

#backToTop:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.delay-1 { transition-delay: 0.14s; }
.delay-2 { transition-delay: 0.28s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(26px, -26px, 0) scale(1.08); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(44, 255, 185, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(44, 255, 185, 0); }
  100% { box-shadow: 0 0 0 0 rgba(44, 255, 185, 0); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0) rotateX(8deg) rotateY(-10deg); }
  50% { transform: translateY(-22px) rotateX(5deg) rotateY(-6deg); }
}

@keyframes cardFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}

@keyframes progressPulse {
  from { width: 58%; }
  to { width: 88%; }
}

@keyframes barWave {
  from { transform: scaleY(0.75); filter: brightness(0.9); }
  to { transform: scaleY(1); filter: brightness(1.18); }
}

@keyframes scrollLine {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(60px); opacity: 0; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes shapeMove {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(28px, -28px, 0) rotate(18deg); }
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .process-grid,
  .training-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-visual {
    min-height: 560px;
  }

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

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

  .showcase-card.large {
    grid-row: auto;
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.open {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: rgba(7, 10, 23, 0.94);
    backdrop-filter: blur(22px);
  }

  .nav-links.open a {
    font-size: 26px;
    color: var(--text);
  }

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

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

  .phone-frame {
    height: 540px;
  }

  .orbit-one { width: 420px; height: 420px; }
  .orbit-two { width: 520px; height: 520px; }

  .second-card,
  .third-card {
    transform: translateX(0);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    height: 74px;
  }

  .hero {
    padding: 120px 0 70px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .service-card,
  .training-card,
  .career-panel,
  .contact-form,
  .showcase-card {
    padding: 24px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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