:root {
  --bg: #071019;
  --bg-soft: #0d1b2a;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.13);
  --text: #f5fbff;
  --muted: #a7b7c9;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #5ee7ff;
  --blue: #6f8cff;
  --violet: #b277ff;
  --green: #63f6ba;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(94, 231, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 15%, rgba(178, 119, 255, 0.2), transparent 30rem),
    linear-gradient(145deg, #050a11 0%, var(--bg) 48%, #0b1124 100%);
}

body.nav-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.brand img,
.site-header img,
img[src*="logo"] {
  display: block;
  width: 30px !important;
  max-width: 30px !important;
  height: 30px !important;
  max-height: 30px !important;
  object-fit: contain;
}

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

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

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 34px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 16, 25, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.brand,
.site-nav,
.hero-actions,
.trust-row,
.dashboard-top,
.metric-grid,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  flex: 0 0 42px;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(94, 231, 255, 0.18);
}

.brand-logo {
  display: block;
  width: 30px;
  max-width: 30px;
  height: 30px;
  max-height: 30px;
  object-fit: contain;
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  color: var(--text);
  background: var(--card);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.section {
  padding: 82px 0;
}

.section-grid,
.split,
.cta {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 110px);
  padding-bottom: 78px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 650px;
  font-size: 1.18rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn.primary {
  color: #04121b;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 18px 44px rgba(94, 231, 255, 0.2);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.pill-grid span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

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

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.orb-one {
  width: 260px;
  height: 260px;
  top: 42px;
  left: 10px;
  background: rgba(94, 231, 255, 0.18);
}

.orb-two {
  width: 340px;
  height: 340px;
  right: 0;
  bottom: 28px;
  background: rgba(178, 119, 255, 0.18);
}

.dashboard-card {
  position: relative;
  width: min(100%, 470px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(13, 27, 42, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.dashboard-top {
  gap: 8px;
  margin-bottom: 24px;
}

.dashboard-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.signal-panel {
  min-height: 230px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 70% 30%, rgba(94, 231, 255, 0.3), transparent 14rem),
    linear-gradient(135deg, rgba(111, 140, 255, 0.26), rgba(99, 246, 186, 0.09));
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.signal-panel p {
  margin-bottom: 46px;
  color: var(--text);
  font-weight: 800;
}

.signal-panel strong {
  display: block;
  font-size: 4rem;
  letter-spacing: -0.08em;
}

.signal-panel span {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.metric-grid div,
.service-card,
.process-list div,
.contact-form {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.metric-grid div {
  padding: 18px;
  border-radius: 22px;
}

.metric-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.metric-grid strong {
  font-size: 1.45rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 300px;
  padding: 24px;
  border-radius: 28px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 231, 255, 0.42);
  background: var(--card-strong);
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 18px;
  color: #06121b;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  font-size: 1.25rem;
  font-weight: 900;
}

.split {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.045);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div {
  padding: 20px;
  border-radius: 22px;
}

.process-list span {
  color: var(--green);
  font-weight: 900;
}

.process-list h3 {
  margin-top: 8px;
}

.process-list p,
.service-card p {
  margin-bottom: 0;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span {
  font-weight: 700;
}

.cta {
  align-items: start;
  margin-bottom: 40px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 20%, rgba(94, 231, 255, 0.16), transparent 24rem),
    rgba(255, 255, 255, 0.05);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--text);
  background: rgba(5, 10, 17, 0.74);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(94, 231, 255, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
}

@media (max-width: 980px) {
  .section-grid,
  .split,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 26px, 1180px);
  }

  .site-header {
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7, 16, 25, 0.96);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 20px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .service-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .split,
  .cta {
    padding: 24px;
    border-radius: 28px;
  }

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