:root {
  --bg: #050706;
  --surface: #0b100d;
  --surface-2: #101712;
  --surface-3: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.12);
  --line-green: rgba(113, 226, 54, 0.35);
  --text: #f7fff5;
  --muted: #a6b2a8;
  --green: #71e236;
  --green-2: #9cff5b;
  --black: #000000;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  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 14% 10%, rgba(113, 226, 54, 0.16), transparent 28%),
    radial-gradient(circle at 80% 8%, rgba(113, 226, 54, 0.1), transparent 24%),
    linear-gradient(180deg, #020302 0%, var(--bg) 42%, #070907 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
}

img {
  display: block;
  max-width: 100%;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.section-pad-sm {
  padding: 76px 0;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(var(--container), calc(100% - 32px));
  min-height: 72px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 5, 4, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line-green);
  background: rgba(2, 4, 3, 0.9);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: 194px;
  border-radius: 999px;
  overflow: hidden;
}

.brand img {
  width: 194px;
  height: 49px;
  object-fit: contain;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: #071006;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(113, 226, 54, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: var(--text);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 150px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.88fr;
  gap: 64px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.cta-inner h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
}

.hero-copy p,
.section-heading p,
.about-copy p,
.contact-copy p,
.service-card p,
.why-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: 1.12rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--green);
  box-shadow: 0 0 22px var(--green);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

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

.btn-primary {
  color: #071006;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 18px 48px rgba(113, 226, 54, 0.18);
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--line-green);
  background: rgba(113, 226, 54, 0.08);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
  max-width: 620px;
}

.trust-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.trust-row strong {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  position: relative;
  padding: 24px;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(3, 8, 5, 0.82);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(113, 226, 54, 0.28), transparent 30%),
    linear-gradient(transparent 0 94%, rgba(113, 226, 54, 0.12) 95%);
  background-size: auto, 100% 18px;
  opacity: 0.8;
}

.panel-top,
.radar-card,
.metric-grid {
  position: relative;
  z-index: 1;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-top div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.radar-card {
  margin-top: 44px;
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(113, 226, 54, 0.22);
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.24);
}

.radar-card p {
  color: var(--muted);
  margin: 28px 0 8px;
}

.radar-card strong {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: -0.04em;
}

.radar {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(113, 226, 54, 0.26);
  background:
    radial-gradient(circle, rgba(113, 226, 54, 0.95) 0 8px, transparent 9px),
    radial-gradient(circle, rgba(113, 226, 54, 0.12), transparent 68%);
  box-shadow: inset 0 0 44px rgba(113, 226, 54, 0.08), 0 0 70px rgba(113, 226, 54, 0.1);
}

.radar::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 50%;
  width: 80px;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--green), transparent);
  animation: sweep 3.8s linear infinite;
}

.radar span {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(113, 226, 54, 0.17);
  border-radius: 50%;
}

.radar span:nth-child(2) {
  inset: 52px;
}

.radar span:nth-child(3) {
  inset: 76px;
}

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

.metric-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

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

.metric-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 1.2rem;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.72;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: -140px;
  top: 20%;
  background: radial-gradient(circle, rgba(113, 226, 54, 0.18), transparent 70%);
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  left: -110px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(113, 226, 54, 0.11), transparent 70%);
}

.logo-strip {
  display: flex;
  gap: 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.logo-strip span {
  flex: 1 0 auto;
  min-width: 220px;
  padding: 24px 20px;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.logo-strip span:not(:last-child) {
  border-right: 1px solid var(--line);
}

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

.section-heading.narrow {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.narrow .eyebrow {
  justify-content: center;
}

.section-heading h2,
.about-copy h2,
.cta-inner h2,
.contact-copy h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
}

.section-heading p {
  margin: 20px 0 0;
  font-size: 1.05rem;
}

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

.service-card,
.why-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026));
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card::before,
.why-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 170px;
  background: radial-gradient(circle, rgba(113, 226, 54, 0.16), transparent 66%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-green);
  background: linear-gradient(180deg, rgba(113, 226, 54, 0.08), rgba(255, 255, 255, 0.026));
}

.service-card:hover::before,
.why-card:hover::before {
  opacity: 1;
}

.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #071006;
  background: var(--green);
  font-weight: 950;
  box-shadow: 0 18px 36px rgba(113, 226, 54, 0.16);
}

.service-card h3,
.why-card h3 {
  margin: 30px 0 12px;
  font-size: 1.36rem;
  letter-spacing: -0.03em;
}

.service-card p,
.why-card p {
  margin: 0;
}

.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(113, 226, 54, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.018);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 470px;
}

.device-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(113, 226, 54, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.42);
  box-shadow: var(--shadow);
}

.large-card {
  position: absolute;
  inset: 30px 34px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}

.large-card::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 34px;
  width: 110px;
  height: 110px;
  border: 18px solid var(--green);
  border-right-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(113, 226, 54, 0.18);
}

.large-card p {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 950;
  letter-spacing: 0.14em;
}

.large-card strong {
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.chip {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(113, 226, 54, 0.34);
  background: rgba(113, 226, 54, 0.08);
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  border: 1px solid var(--line-green);
  border-radius: 18px;
  background: rgba(5, 7, 6, 0.82);
  backdrop-filter: blur(14px);
  color: var(--text);
  font-weight: 850;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-one {
  right: 0;
  top: 100px;
}

.card-two {
  left: 42px;
  bottom: 36px;
}

.about-copy p {
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 0 20px rgba(113, 226, 54, 0.22);
}

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

.why-card {
  min-height: 250px;
}

.why-card span {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 10px solid var(--green);
  border-right-color: transparent;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(113, 226, 54, 0.18), rgba(255, 255, 255, 0.03)),
    #060806;
  border-block: 1px solid var(--line-green);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 760px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: start;
}

.contact-copy p {
  font-size: 1.05rem;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-info a,
.contact-info span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.contact-info a:hover,
.contact-info a:focus-visible {
  color: var(--white);
  border-color: var(--line-green);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--text);
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.28);
  outline: none;
  padding: 16px 17px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(166, 178, 168, 0.72);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(113, 226, 54, 0.1);
}

.contact-form option {
  color: #101712;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  background: #030403;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-logo {
  width: 176px;
  overflow: hidden;
  border-radius: 999px;
}

.footer-logo img {
  width: 176px;
  height: 45px;
  object-fit: contain;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 28px;
    align-items: center;
  }

  .brand,
  .brand img {
    width: 166px;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

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

  .site-header.is-open .nav {
    display: grid;
    flex: 1 0 100%;
    width: 100%;
    order: 3;
    margin-left: 0;
    padding: 10px 0 4px;
  }

  .site-header.is-open .header-cta {
    display: inline-flex;
    flex: 1 0 100%;
    order: 4;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 500px;
  }

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

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 82px 0;
  }

  .hero {
    padding-top: 128px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand,
  .brand img {
    width: 145px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .trust-row,
  .metric-grid,
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .trust-row,
  .btn {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }

  .hero-panel {
    padding: 18px;
    min-height: 460px;
  }

  .radar-card {
    min-height: 280px;
  }

  .radar {
    width: 138px;
    height: 138px;
  }

  .about-media {
    min-height: 420px;
  }

  .large-card {
    inset: 22px 0 64px 0;
  }

  .floating-card {
    position: relative;
    display: inline-flex;
    margin: 8px;
  }

  .card-one,
  .card-two {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

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

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