:root {
  --bg: #07111f;
  --bg-2: #0c1628;
  --panel: rgba(255, 255, 255, .08);
  --panel-strong: rgba(255, 255, 255, .13);
  --text: #eef7ff;
  --muted: #a9bad2;
  --line: rgba(255, 255, 255, .14);
  --brand: #15f5ba;
  --brand-2: #00a8ff;
  --brand-3: #7c3aed;
  --shadow: 0 24px 80px rgba(0, 0, 0, .32);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(21, 245, 186, .19), transparent 27rem),
    radial-gradient(circle at 85% 5%, rgba(124, 58, 237, .22), transparent 27rem),
    linear-gradient(180deg, #06101d 0%, #081527 45%, #040913 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, #000, transparent 72%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 105px 0; position: relative; }
.section.compact { padding: 70px 0; }
.section-head { max-width: 760px; margin-bottom: 38px; }
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #bdfbe8;
  background: rgba(21, 245, 186, .08);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: .92;
  letter-spacing: -.08em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}
h3 { font-size: 1.1rem; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.76; }
.lead { font-size: clamp(1rem, 2vw, 1.28rem); max-width: 720px; }
.gradient-text {
  background: linear-gradient(100deg, #fff, #bafbea 35%, #86caff 68%, #d3c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, .73);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; min-width: 180px; }
.logo img { width: 200px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}
.nav-links a { transition: color .25s ease, transform .25s ease; }
.nav-links a:hover { color: var(--text); transform: translateY(-2px); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.menu-btn {
  display: none;
  border: 0;
  color: var(--text);
  background: var(--panel);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 850;
  letter-spacing: -.01em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  transition: transform .7s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(110%) skewX(-18deg); }
.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2) 54%, var(--brand-3));
  color: #06101d;
  box-shadow: 0 16px 38px rgba(0,168,255,.28);
}
.btn-ghost { background: rgba(255,255,255,.06); }
.btn-small { min-height: 42px; padding-inline: 16px; font-size: .9rem; }

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 92px 0 76px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 54px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  color: #d9e8ff;
  background: rgba(255,255,255,.055);
  font-size: .88rem;
  font-weight: 700;
}
.hero-visual {
  min-height: 520px;
  position: relative;
  isolation: isolate;
}
.orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(8px);
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.85), rgba(21,245,186,.34) 28%, rgba(0,168,255,.17) 58%, transparent 72%);
  animation: floaty 8s ease-in-out infinite;
  inset: 24px 38px auto auto;
  z-index: -1;
}
.orb.two {
  width: 240px;
  height: 240px;
  inset: auto auto 25px 15px;
  animation-duration: 10s;
  background: radial-gradient(circle, rgba(124,58,237,.55), rgba(0,168,255,.17) 58%, transparent 74%);
}
.dashboard {
  position: absolute;
  inset: 42px 10px 0 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
  transform: rotate(2deg);
  animation: cardDrift 7s ease-in-out infinite;
}
.dash-top {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}
.dash-top span { width: 12px; height: 12px; border-radius: 50%; background: var(--brand); opacity: .85; }
.dash-top span:nth-child(2) { background: var(--brand-2); }
.dash-top span:nth-child(3) { background: var(--brand-3); }
.code-window { padding: 30px; }
.code-line {
  height: 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  position: relative;
  overflow: hidden;
}
.code-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(21,245,186,.8), transparent);
  animation: scan 2.8s ease-in-out infinite;
}
.code-line:nth-child(1) { width: 62%; }
.code-line:nth-child(2) { width: 88%; animation-delay: .2s; }
.code-line:nth-child(3) { width: 74%; }
.code-line:nth-child(4) { width: 48%; }
.code-line:nth-child(5) { width: 82%; }
.web-card {
  margin-top: 38px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(3, 10, 20, .5);
}
.web-card .mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}
.metric strong { display:block; font-size: 1.55rem; }
.metric span { color: var(--muted); font-size: .84rem; }
.floating-tag {
  position: absolute;
  right: 0;
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 17px;
  border-radius: 20px;
  background: rgba(7,17,31,.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: floaty 7s ease-in-out infinite reverse;
}
.floating-tag svg { color: var(--brand); }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 27s linear infinite;
}
.marquee span {
  padding: 18px 28px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
}

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--x, 35%) var(--y, 20%), rgba(21,245,186,.2), transparent 25%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.service-card { padding: 28px; min-height: 250px; transform: translateY(0); transition: transform .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-9px); border-color: rgba(21,245,186,.38); }
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(21,245,186,.16), rgba(0,168,255,.09));
  margin-bottom: 28px;
}
.service-icon .icon { width: 28px; height: 28px; }

.about-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}
.profile-card { padding: 30px; }
.profile-mark {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--brand-3));
  color: #06101d;
  font-weight: 950;
  font-size: 2rem;
  margin-bottom: 24px;
  box-shadow: 0 20px 54px rgba(0,168,255,.25);
}
.detail-list { display: grid; gap: 12px; }
.detail-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.detail-row span { color: var(--muted); }
.detail-row strong { font-weight: 800; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.stat { padding: 20px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.055); }
.stat strong { font-size: 1.7rem; display: block; }
.stat span { color: var(--muted); font-size: .9rem; }

.process { counter-reset: step; }
.step-card { padding: 28px; min-height: 210px; }
.step-card::after {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(255,255,255,.08);
  font-size: 4rem;
  font-weight: 950;
  line-height: 1;
}

.pricing-card { padding: 30px; }
.price { font-size: 2rem; font-weight: 950; letter-spacing: -.04em; margin: 12px 0 20px; }
.feature-list { display: grid; gap: 12px; margin: 0 0 26px; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.feature-list .icon { color: var(--brand); margin-top: 2px; width: 18px; height: 18px; }

.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; }
.contact-card { padding: 30px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.contact-item:last-child { border-bottom: 0; }
.contact-item .service-icon { width: 44px; height: 44px; border-radius: 14px; margin: 0; }
.contact-item p { margin: 0; }
.contact-item strong { display: block; margin-bottom: 4px; }
.form {
  display: grid;
  gap: 14px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 17px;
  color: var(--text);
  background: rgba(255,255,255,.07);
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.form textarea { min-height: 150px; resize: vertical; }
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: rgba(21,245,186,.55);
  box-shadow: 0 0 0 4px rgba(21,245,186,.11);
}
.form-note { font-size: .9rem; color: var(--muted); margin: 0; }

.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.policy-card { padding: 28px; }
.policy-card a { color: #bdfbe8; font-weight: 850; }
.page-hero { padding: 80px 0 30px; }
.text-card { padding: 34px; }
.text-card h2 { font-size: 1.6rem; margin-top: 26px; }
.text-card h2:first-child { margin-top: 0; }
.text-card ul { color: var(--muted); line-height: 1.8; }

.site-footer {
  padding: 45px 0;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-weight: 700; }
.footer-links a:hover { color: var(--text); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes floaty { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-18px,0); } }
@keyframes cardDrift { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-12px); } }
@keyframes scan { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 82px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 24px;
    background: rgba(7,17,31,.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: inline-grid; place-items: center; }
  .nav-cta .btn { display: none; }
  .hero-grid, .about-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .hero-visual { min-height: 455px; }
  .grid-3, .policy-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 78px 0; }
  .grid-3, .grid-2, .policy-grid, .stats-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-visual { min-height: 390px; }
  .dashboard { inset: 20px 0 0 0; transform: none; }
  .floating-tag { right: 12px; bottom: 24px; }
  .web-card .mini-grid { grid-template-columns: 1fr; }
  .detail-row { grid-template-columns: 1fr; gap: 4px; }
  .logo img { width: 172px; }
  .nav { height: 76px; }
  .nav-links { inset-top: 76px; }
  h1 { letter-spacing: -.06em; }
}

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