:root {
  --bg: #070d17;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(20, 33, 57, 0.82);
  --text: #f3f8ff;
  --text-soft: rgba(243, 248, 255, 0.74);
  --stroke: rgba(255, 255, 255, 0.15);
  --brand: #35e0b8;
  --brand-strong: #26c49f;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 15% 10%, #10233f 0%, var(--bg) 42%) fixed;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  font-family: "Sora", sans-serif;
}

p {
  margin: 0;
}

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

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-one {
  width: 320px;
  height: 320px;
  background: #2de2b266;
  top: -60px;
  left: -40px;
}

.orb-two {
  width: 370px;
  height: 370px;
  background: #4fa9ff4d;
  top: 80px;
  right: -100px;
  animation-delay: 2.5s;
}

.orb-three {
  width: 300px;
  height: 300px;
  background: #00ffd14a;
  bottom: -110px;
  left: 30%;
  animation-delay: 4s;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(5, 10, 20, 0.7);
  border-bottom: 1px solid var(--stroke);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px clamp(16px, 2vw, 32px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand strong {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.brand small {
  display: block;
  opacity: 0.64;
  font-size: 0.74rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-content: center;
  color: #021017;
  background: linear-gradient(135deg, #d6fef5, #67fad4);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  transition: 220ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(137, 255, 227, 0.18);
}

main {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.hero,
.section {
  padding: clamp(46px, 8vw, 90px) 0;
}

.hero {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ce8ff;
  background: rgba(9, 33, 47, 0.5);
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 4.7vw, 3.7rem);
  max-width: 18ch;
  letter-spacing: -0.03em;
}

.hero h1 span {
  display: block;
  color: #89ffe3;
  margin-top: 8px;
}

.hero-copy {
  margin-top: 16px;
  color: var(--text-soft);
  max-width: 64ch;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn-solid {
  color: #042019;
  background: linear-gradient(120deg, #8bffe5, #35e0b8);
}

.btn-solid:hover {
  background: linear-gradient(120deg, #b2ffef, #5df4d1);
}

.btn-outline,
.btn-ghost {
  border-color: var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: #80ffdf77;
  background: rgba(137, 255, 227, 0.12);
}

.btn-ghost {
  padding: 10px 16px;
}

.stats-card,
.card {
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
}

.stats-card {
  padding: 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.stats-card h3 {
  margin-bottom: 16px;
}

.stats-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.stats-grid article {
  background: var(--surface-strong);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 12px;
}

.stats-grid h4 {
  font-size: 1.36rem;
}

.stats-grid p {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.section-head {
  max-width: 780px;
  display: grid;
  gap: 14px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
}

.section-head p {
  color: var(--text-soft);
}

.card-grid {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

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

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

.card,
.contact-form {
  padding: 20px;
}

.card {
  display: grid;
  gap: 12px;
}

.card h3 {
  font-size: 1.16rem;
}

.card p,
.card li {
  color: var(--text-soft);
}

.card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
}

.link {
  color: #7effd8;
  font-weight: 700;
}

.pill-text {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(137, 255, 227, 0.4);
  border-radius: 999px;
  padding: 4px 10px;
  color: #b5ffed;
  font-size: 0.8rem;
}

.highlight {
  border-color: #53ffd079;
  background: linear-gradient(180deg, rgba(53, 224, 184, 0.14), rgba(255, 255, 255, 0.03));
}

.split {
  margin-top: 10px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.contact-form {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(18, 30, 47, 0.82), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 16, 26, 0.72);
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #65f6d3;
  box-shadow: 0 0 0 3px rgba(101, 246, 211, 0.16);
}

.form-message {
  min-height: 1em;
  margin: 0;
  color: #7effd8;
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--stroke);
  margin-top: 24px;
  padding: 20px;
  text-align: center;
  color: var(--text-soft);
}

.site-footer p {
  margin: 4px 0;
}

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

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

.hover-rise {
  transition: transform 230ms ease, border-color 230ms ease, background-color 230ms ease;
}

.hover-rise:hover {
  transform: translateY(-6px);
  border-color: #8affdf96;
  background-color: rgba(255, 255, 255, 0.08);
}

.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

.floaty {
  animation: floatCard 5.5s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(18px) translateX(-12px) scale(1.04);
  }
}

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

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

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .card-grid.three,
  .card-grid.four,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
  }
}
