:root {
  --bg: #06080f;
  --bg-soft: #0c1220;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #e9edf7;
  --muted: rgba(233, 237, 247, 0.72);
  --soft: rgba(233, 237, 247, 0.52);
  --accent: #34d399;
  --accent-2: #22d3ee;
  --shadow: 0 30px 90px -45px rgba(0, 0, 0, 0.8);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(52, 211, 153, 0.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(34, 211, 238, 0.12), transparent 24%),
    linear-gradient(180deg, #06080f 0%, #070a13 46%, #0a0f1c 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1));
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

 a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
  transition: 180ms ease;
}

.nav a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.nav-cta {
  background: #fff;
  color: #000 !important;
  font-weight: 700;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: transparent !important;
}

.page {
  position: relative;
  padding: 40px 0 80px;
}

.site-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
}

.site-glow-left {
  left: -9rem;
  top: 5rem;
  background: rgba(52, 211, 153, 0.34);
}

.site-glow-right {
  right: -11rem;
  top: 8rem;
  background: rgba(34, 211, 238, 0.28);
}

.hero-grid,
.split-grid,
.cta-block {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  min-height: calc(100vh - 160px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow,
.card-tag,
.panel-kicker,
.service-title {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow,
.panel-kicker,
.card-tag {
  color: rgba(233, 237, 247, 0.56);
}

.hero-copy h1,
.section-head h2,
.panel-frame h2,
.cta-block h2 {
  margin: 0;
  line-height: 1.08;
}

.hero-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(2.9rem, 7vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.lead,
.section-head p,
.info-card p,
.stack-card p,
.service-columns li,
.panel-grid span,
.cta-block p {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 64ch;
  font-size: 1.02rem;
}

.lead a {
  color: #ffffff;
  font-weight: 700;
}

.hero-actions,
.pill-row,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #04110c;
  box-shadow: 0 16px 44px -18px rgba(52, 211, 153, 0.8);
}

.btn-primary:hover {
  background: #63e6b2;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.36);
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.66);
}

.shell-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.shell-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%);
}

.hero-panel {
  padding: 20px;
}

.panel-frame {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(52, 211, 153, 0.18);
  background: linear-gradient(145deg, rgba(13, 20, 35, 0.95), rgba(9, 16, 29, 0.96));
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 60px -28px rgba(52, 211, 153, 0.5);
}

.panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.panel-top span:nth-child(1) {
  background: #34d399;
}

.panel-top span:nth-child(2) {
  background: #22d3ee;
}

.panel-top span:nth-child(3) {
  background: #a78bfa;
}

.panel-frame h2 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.18;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.panel-grid div {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.panel-grid strong,
.info-card h3,
.service-title {
  display: block;
  color: #fff;
}

.panel-grid strong {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.panel-grid span {
  font-size: 0.88rem;
}

.section-block {
  margin-top: 26px;
}

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

.section-head h2,
.cta-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-head p,
.cta-block p {
  margin-top: 12px;
  font-size: 0.98rem;
}

.compact {
  margin-bottom: 18px;
}

.card-grid.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 22px;
}

.info-card h3 {
  margin: 12px 0 12px;
  font-size: 1.24rem;
}

.card-tag {
  color: rgba(52, 211, 153, 0.88);
}

.feature-band {
  padding: 26px;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-title {
  color: #fff;
  margin-bottom: 14px;
}

.service-columns ul {
  margin: 0;
  padding-left: 18px;
}

.service-columns li {
  margin-bottom: 10px;
}

.split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  align-items: start;
}

.stack {
  display: grid;
  gap: 14px;
}

.stack-card {
  padding: 18px 20px;
}

.stack-card span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
}

.cta-block {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(34, 211, 238, 0.08) 48%, rgba(255, 255, 255, 0.03));
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid.three-up,
  .service-columns,
  .split-grid,
  .cta-block {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 10px;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .topbar-inner {
    min-height: 72px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .page {
    padding: 26px 0 64px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: 2.55rem;
  }

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

  .btn,
  .cta-actions .btn {
    width: 100%;
  }
}
