@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans.woff2") format("woff2");
}

:root {
  --bg: #06101c;
  --bg-2: #0a1b30;
  --navy: #071525;
  --card: #0d243c;
  --line: rgba(46, 230, 214, 0.22);
  --teal: #2ee6d6;
  --teal-2: #12c4c0;
  --text: #eef7fb;
  --muted: #9bb4c4;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal);
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
}

.skip-link:focus {
  left: 12px;
  background: var(--teal);
  color: var(--navy);
  padding: 8px 12px;
  z-index: 40;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #06101c;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.brand-text span {
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand-mark {
  display: grid;
  place-items: center;
  animation: markGlow 3.4s ease-in-out infinite;
}

.brand-mark svg {
  display: block;
}

.site-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 99px;
  transition: width 0.25s ease;
}

.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn):focus-visible::after {
  width: 100%;
}

.site-nav a:hover {
  color: var(--teal);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  color: var(--navy);
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn::after,
.contact-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::after,
.contact-form button:hover::after {
  transform: translateX(120%);
}

.btn-small {
  padding: 8px 16px;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn:hover,
.contact-form button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46, 230, 214, 0.22);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 80% 20%, rgba(18, 196, 192, 0.18), transparent 28%),
    linear-gradient(180deg, #071525, var(--bg));
}

.hero-glow {
  position: absolute;
  inset: auto -10% 0 30%;
  height: 220px;
  background: radial-gradient(circle, rgba(46, 230, 214, 0.18), transparent 60%);
  pointer-events: none;
  animation: glowMove 8s ease-in-out infinite;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.orb-1 {
  width: 180px;
  height: 180px;
  left: -40px;
  top: 40px;
  background: rgba(18, 196, 192, 0.16);
  animation: floatY 7s ease-in-out infinite;
}

.orb-2 {
  width: 140px;
  height: 140px;
  right: 8%;
  top: 18%;
  background: rgba(11, 61, 115, 0.45);
  animation: floatY 9s ease-in-out infinite reverse;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.lede,
.section-head p,
.about-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(13, 36, 60, 0.9), rgba(7, 21, 37, 0.9));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  animation: panelFloat 5.5s ease-in-out infinite;
}

.hero-logo {
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  display: block;
}

.hero-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  padding-left: 22px;
  position: relative;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: 0.55em;
  animation: pulseDot 1.8s ease-in-out infinite;
}

.hero-points li:nth-child(2)::before {
  animation-delay: 0.25s;
}

.hero-points li:nth-child(3)::before {
  animation-delay: 0.5s;
}

.strip {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 22px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

.strip strong {
  display: block;
  color: var(--teal);
  font-size: 1.2rem;
}

.strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 84px 0;
  scroll-margin-top: 90px;
}

.section-alt {
  background: var(--bg-2);
}

.section-head {
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: rgba(13, 36, 60, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 150px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(18, 196, 192, 0.12);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.about-list li {
  background: rgba(13, 36, 60, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--muted);
}

.about-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
}

.steps li {
  background: rgba(13, 36, 60, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.steps li:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
}

.steps span {
  color: var(--teal);
  font-weight: 800;
}

.steps p {
  color: var(--muted);
  margin: 0;
}

.section-contact {
  background:
    radial-gradient(circle at 10% 80%, rgba(18, 196, 192, 0.12), transparent 30%),
    var(--bg);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-card {
  display: grid;
  gap: 2px;
  color: var(--text);
  background: rgba(13, 36, 60, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
  transform: translateX(6px);
  border-color: var(--teal);
}

.contact-card span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: rgba(13, 36, 60, 0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #071525;
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .menu-btn {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 101;
    background: #071525;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .site-nav.open {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-grid,
  .steps,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-panel {
    animation: none;
  }

  .site-nav.open {
    animation: menuIn 0.28s ease;
  }
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.anim-hero {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--d, 0s);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes glowMove {
  0%,
  100% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-8%) scale(1.08);
    opacity: 1;
  }
}

@keyframes markGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(46, 230, 214, 0));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(46, 230, 214, 0.55));
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.55;
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .anim-hero,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
