:root {
  --white: #ffffff;
  --off-white: #f7fff9;
  --soft-mint: #eafff1;
  --mint: #caffdd;
  --fluorescent: #39ff88;
  --emerald: #00c853;
  --deep-green: #063b24;
  --text: #071b12;
  --muted: #4f675a;
  --line: rgba(0, 200, 83, 0.18);
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 70px rgba(6, 59, 36, 0.12);
  --shadow-soft: 0 16px 48px rgba(0, 200, 83, 0.12);
  --gradient: linear-gradient(135deg, var(--fluorescent), var(--emerald));
  --gradient-soft: linear-gradient(135deg, rgba(57, 255, 136, 0.2), rgba(0, 200, 83, 0.08));
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(57, 255, 136, 0.28), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(0, 200, 83, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--white) 0%, var(--off-white) 48%, var(--white) 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--deep-green);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - clamp(32px, 6vw, 72px), var(--container));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.glow {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.72;
}

.glow-one {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 120px;
  background: rgba(57, 255, 136, 0.22);
}

.glow-two {
  width: 360px;
  height: 360px;
  right: -140px;
  top: 22%;
  background: rgba(0, 200, 83, 0.16);
}

.glow-three {
  width: 300px;
  height: 300px;
  left: 35%;
  bottom: -120px;
  background: rgba(202, 255, 221, 0.42);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 200, 83, 0.12);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px);
  box-shadow: 0 10px 40px rgba(6, 59, 36, 0.06);
}

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

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(57, 255, 136, 0.55);
  border-radius: 15px;
  color: var(--deep-green);
  font-weight: 900;
  background: var(--gradient);
  box-shadow: 0 14px 34px rgba(57, 255, 136, 0.32);
}

.brand-name {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #315242;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--deep-green);
  background: rgba(57, 255, 136, 0.16);
  transform: translateY(-1px);
}

.nav-links .nav-button {
  margin-left: 8px;
  padding: 11px 18px;
  color: var(--deep-green);
  background: var(--gradient);
  box-shadow: 0 14px 34px rgba(57, 255, 136, 0.24);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--deep-green);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section.compact {
  padding: clamp(62px, 7vw, 96px) 0;
}

.hero {
  padding-top: clamp(54px, 7vw, 86px);
}

.hero-grid,
.split-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.hero-content {
  max-width: 650px;
}

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

.eyebrow span {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 0 18px rgba(57, 255, 136, 0.7);
}

h1,
h2,
h3 {
  color: var(--text);
  letter-spacing: -0.055em;
}

h1 {
  max-width: 12.2em;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 5.2vw, 3.875rem);
  line-height: 1.07;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.9vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--deep-green);
  background: var(--gradient);
  box-shadow: 0 18px 42px rgba(57, 255, 136, 0.28);
}

.button-secondary {
  color: var(--deep-green);
  border: 1px solid rgba(0, 200, 83, 0.22);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

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

.trust-badges span {
  border: 1px solid rgba(0, 200, 83, 0.16);
  border-radius: 999px;
  padding: 9px 12px;
  color: #244c38;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(6, 59, 36, 0.05);
}

.glass-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 255, 249, 0.76)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-visual {
  min-width: 0;
}

.dashboard-card {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 30px);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 78% 18%, rgba(57, 255, 136, 0.34), transparent 13rem),
    linear-gradient(135deg, rgba(57, 255, 136, 0.18), transparent 42%);
  pointer-events: none;
}

.dashboard-card > * {
  position: relative;
}

.dashboard-top,
.score-panel,
.insight-card,
.chart-panel {
  border: 1px solid rgba(0, 200, 83, 0.14);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 42px rgba(6, 59, 36, 0.08);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 18px;
  padding: 12px 14px;
}

.dashboard-top p {
  margin: 0;
  color: var(--deep-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-dots {
  display: inline-flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 16px rgba(57, 255, 136, 0.55);
}

.score-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  border-radius: 24px;
  padding: 22px;
}

.metric-label,
.chart-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.score-panel strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.orbital-badge {
  display: grid;
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  place-items: center;
  border: 10px solid rgba(57, 255, 136, 0.22);
  border-top-color: var(--fluorescent);
  border-right-color: var(--emerald);
  border-radius: 50%;
  color: var(--deep-green);
  background: var(--white);
  font-weight: 900;
  box-shadow: 0 0 34px rgba(57, 255, 136, 0.28);
}

.service-pills,
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.service-pills span,
.feature-list span {
  border: 1px solid rgba(0, 200, 83, 0.16);
  border-radius: 999px;
  padding: 10px 12px;
  color: #214734;
  background: rgba(234, 255, 241, 0.74);
  font-size: 0.92rem;
  font-weight: 750;
  text-align: center;
}

.insight-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
  border-radius: 22px;
  padding: 18px;
}

.insight-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.insight-card p {
  margin: 0;
  font-size: 0.96rem;
}

.spark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--gradient);
  box-shadow: 0 0 24px rgba(57, 255, 136, 0.48);
}

.chart-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 18px;
  margin-top: 16px;
  border-radius: 22px;
  padding: 18px;
}

.chart-copy strong {
  color: var(--deep-green);
  font-size: 1.35rem;
}

.chart-bars {
  display: flex;
  height: 112px;
  align-items: end;
  justify-content: flex-end;
  gap: 10px;
}

.chart-bars span {
  width: clamp(20px, 4vw, 34px);
  min-height: 22px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--fluorescent), var(--emerald));
  box-shadow: 0 10px 28px rgba(57, 255, 136, 0.26);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(30px, 4vw, 48px);
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.services-grid,
.process-grid,
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
}

.service-card,
.process-card,
.solution-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before,
.process-card::before,
.solution-card::before,
.mini-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gradient);
  opacity: 0.85;
}

.service-card:hover,
.process-card:hover,
.solution-card:hover,
.mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 255, 136, 0.46);
  box-shadow: 0 28px 78px rgba(0, 200, 83, 0.16);
}

.card-badge,
.process-card span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--deep-green);
  background: var(--gradient);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(57, 255, 136, 0.26);
}

.service-card p,
.process-card p,
.solution-card p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.62;
}

.split-section,
.why-section {
  position: relative;
}

.split-section::before,
.why-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 28px clamp(16px, 4vw, 54px);
  z-index: -1;
  border: 1px solid rgba(0, 200, 83, 0.12);
  border-radius: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 18% 20%, rgba(57, 255, 136, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(234, 255, 241, 0.84), rgba(255, 255, 255, 0.62));
}

.feature-card {
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3.4vw, 36px);
}

.feature-list {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list span {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 1rem;
}

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

.why-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
}

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

.mini-card {
  position: relative;
  display: flex;
  min-height: 128px;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.mini-card span {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 24px rgba(57, 255, 136, 0.78);
}

.mini-card strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

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

.contact-section {
  position: relative;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.contact-links {
  display: grid;
  gap: 10px;
  max-width: 480px;
  margin-top: 28px;
  border-radius: 24px;
  padding: 18px;
}

.contact-links a {
  overflow-wrap: anywhere;
  color: var(--deep-green);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 12px;
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3.4vw, 34px);
}

.contact-form label {
  color: var(--deep-green);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 200, 83, 0.18);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 200, 83, 0.65);
  box-shadow: 0 0 0 4px rgba(57, 255, 136, 0.16);
}

.field-error {
  border-color: #d92d20 !important;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.1) !important;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status.error {
  color: #b42318;
}

.form-status.success {
  color: var(--deep-green);
}

.site-footer {
  border-top: 1px solid rgba(0, 200, 83, 0.14);
  padding: 26px 0;
  background: rgba(255, 255, 255, 0.76);
}

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

.footer-grid p {
  margin: 0;
  color: #315242;
  font-weight: 650;
}

.footer-grid div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-grid a {
  color: var(--deep-green);
  font-weight: 800;
}

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

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

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

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

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

@media (max-width: 1040px) {
  .nav-links a {
    padding-inline: 9px;
    font-size: 0.88rem;
  }

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

  .hero-content,
  .section-heading.align-left,
  .contact-copy {
    max-width: 760px;
  }

  .dashboard-card {
    margin-inline: auto;
  }

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

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 61;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    border: 1px solid rgba(0, 200, 83, 0.18);
    border-radius: 26px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(6, 59, 36, 0.18);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .nav-links .nav-button {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    padding: 13px 16px;
    text-align: center;
  }

  h1 {
    max-width: 11.8em;
    font-size: clamp(2rem, 10vw, 2.5rem);
    line-height: 1.08;
  }

  .section {
    padding-block: 64px;
  }

  .hero {
    padding-top: 42px;
  }
}

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

  .nav {
    min-height: 70px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .brand-name {
    max-width: 178px;
    line-height: 1.05;
  }

  .hero-grid,
  .split-grid,
  .why-grid,
  .contact-grid {
    gap: 34px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .trust-badges,
  .service-pills,
  .feature-list,
  .why-list,
  .process-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    display: grid;
  }

  .dashboard-card {
    border-radius: 26px;
  }

  .score-panel,
  .insight-card,
  .chart-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .score-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .chart-bars {
    justify-content: stretch;
  }

  .chart-bars span {
    flex: 1;
  }

  .split-section::before,
  .why-section::before,
  .contact-section::before {
    inset: 18px 8px;
    border-radius: 28px;
  }

  .feature-list span {
    min-height: 54px;
  }

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

  .footer-grid div {
    justify-content: flex-start;
  }
}

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

  .brand {
    gap: 8px;
  }

  .brand-name {
    max-width: 142px;
    font-size: 0.92rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .service-card,
  .process-card,
  .solution-card,
  .contact-form,
  .feature-card {
    padding: 20px;
  }
}
