:root {
  color-scheme: dark;
  --bg: #0b0f0e;
  --bg-elev-1: #101715;
  --bg-elev-2: #17201d;
  --text: #f5f8f7;
  --text-dim: #9fb2ad;
  --brand: #c5fe00;
  --brand-ink: #263100;
  --accent: #59d2a6;
  --danger: #ff7351;
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #0b0f0e;
}

body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(89, 210, 166, 0.1), transparent 60%),
    radial-gradient(1000px 550px at 0% 0%, rgba(197, 254, 0, 0.08), transparent 60%),
    linear-gradient(180deg, #0b0f0e 0%, #0f1513 100%);
  color: var(--text);
  line-height: 1.55;
  min-height: 100dvh;
  padding-top: env(safe-area-inset-top, 0px);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
}

.hero::before {
  content: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

header.site-header {
  position: sticky;
  top: 0.55rem;
  z-index: 40;
  background: transparent;
  backdrop-filter: none;
  transition: none;
}

header.site-header.scrolled {
  transform: none;
}

.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 70px;
  padding: 0.35rem 0.55rem;
  gap: 0.55rem;
  border-radius: 15px;
  border: 1px solid rgba(214, 241, 233, 0.16);
  background: rgba(14, 20, 18, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

header.site-header.scrolled .nav-wrap {
  background: rgba(14, 20, 18, 0.84);
  border-color: rgba(214, 241, 233, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: transparent;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  height: 28px;
  max-width: 28px;
  width: auto;
}

.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.36rem;
  margin: 0;
  padding: 0.1rem 0;
  border-radius: 12px;
  border: 0;
  background: transparent;
}

.menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 46px;
  padding: 0.42rem 0.86rem;
  border-radius: 10px;
  line-height: 1;
  flex-direction: row;
  text-align: center;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  line-height: 1;
}

.menu a.active,
.menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.menu .btn.primary {
  min-height: 46px;
  width: auto;
  padding: 0.42rem 1rem;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: 0 0 0 rgba(197, 254, 0, 0.15);
  flex-direction: row;
}

.menu .btn.primary:hover {
  box-shadow: 0 0 18px rgba(197, 254, 0, 0.24);
}

.btn,
button.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.82rem 1.2rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  line-height: 1;
  font-size: 0.95em;
  opacity: 0.95;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), #b7ef00);
  color: var(--brand-ink);
  box-shadow: 0 0 0 rgba(197, 254, 0, 0.2);
}

.btn.primary:hover {
  box-shadow: 0 0 30px rgba(197, 254, 0, 0.28);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 12px;
  border: 1px solid rgba(214, 241, 233, 0.28);
  min-width: 48px;
  height: 42px;
  padding: 0 0.62rem;
  font-weight: 600;
  font-size: 0.95rem;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
}

.mobile-toggle .btn-icon {
  font-size: 1rem;
}

.hero-intro {
  position: relative;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
}

.hero-badges {
  margin-top: 1rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
  gap: 2rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.55rem);
  letter-spacing: -0.02em;
}

.lead {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  max-width: 60ch;
}

.kicker {
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: #bcd6cf;
  font-weight: 700;
}

.panel {
  background: linear-gradient(180deg, rgba(23, 32, 29, 0.9), rgba(16, 23, 21, 0.92));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.25rem;
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  min-height: 124px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.3rem;
}

.metric .hint {
  margin: 0;
}

.metric small.hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.metric small.hint .fa-solid {
  color: #d7f67a;
  font-size: 0.82rem;
}

.metric strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.section {
  padding: 1.1rem 0 4rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: rgba(23, 32, 29, 0.9);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(197, 254, 0, 0.13);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--brand);
}

.card .icon i {
  font-size: 1rem;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.service-title h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: -0.015em;
}

.service-lead {
  font-size: 0.93rem !important;
}

.service-list {
  font-size: 0.9rem;
}

.service-glyph {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 254, 0, 0.14);
  color: #d7f67a;
  flex: 0 0 auto;
}

.services-hero {
  display: grid;
  gap: 0.85rem;
}

.services-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.15rem;
  display: grid;
  gap: 0.68rem;
}

.service-card-featured {
  border: 1px solid rgba(197, 254, 0, 0.26);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(24, 35, 30, 0.96), rgba(16, 23, 21, 0.92)),
    radial-gradient(380px 120px at 20% 0%, rgba(197, 254, 0, 0.12), transparent 70%);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.service-rank {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: #bcd6cf;
  font-weight: 700;
}

.service-lead {
  margin: 0;
}

.service-list {
  margin-top: 0.05rem;
}

.services-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.services-process,
.services-cta {
  padding: 1.15rem;
  display: grid;
  gap: 0.7rem;
}

.services-process h2,
.services-cta h2 {
  margin-bottom: 0;
}

.badge {
  border-radius: 999px;
  background: rgba(89, 210, 166, 0.18);
  color: #b9ffe7;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
}

.cta-band {
  margin-top: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(197, 254, 0, 0.16), rgba(89, 210, 166, 0.1));
}

.trust-strip {
  display: grid;
  gap: 1rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #d7e8e3;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(214, 241, 233, 0.16);
}

.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote-card {
  background: linear-gradient(180deg, rgba(18, 26, 24, 0.92), rgba(16, 23, 21, 0.9));
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.quote-card blockquote {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1.35;
}

.quote-meta {
  margin-top: 0.7rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.step-card {
  background: rgba(23, 32, 29, 0.86);
  border-radius: var(--radius-sm);
  padding: 0.95rem;
  display: grid;
  gap: 0.45rem;
}

.step-index {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(197, 254, 0, 0.18);
  color: #deff85;
}

.list {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-dim);
}

.list li {
  margin-bottom: 0.4rem;
}

.form {
  display: grid;
  gap: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

label {
  font-size: 0.84rem;
  color: #d7e2de;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.74rem 0.78rem;
  font: inherit;
  box-shadow: inset 0 0 0 1px rgba(214, 241, 233, 0.12);
}

select {
  width: 100%;
  border: 1px solid rgba(214, 241, 233, 0.2);
  border-radius: 12px;
  background: rgba(20, 30, 27, 0.9);
  color: var(--text);
  padding: 0.74rem 2.4rem 0.74rem 0.78rem;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a0b8b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  cursor: pointer;
}

select:hover {
  border-color: rgba(214, 241, 233, 0.38);
  background-color: rgba(27, 40, 36, 0.95);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(197, 254, 0, 0.6);
  outline-offset: 0;
}

input::placeholder,
textarea::placeholder {
  color: #89a39c;
}

select option {
  background: #131713;
  color: #fff;
}

small.hint {
  color: var(--text-dim);
}

footer {
  margin-top: 2rem;
  padding: 2.8rem 0;
  color: var(--text-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  body {
    padding-bottom: calc(6.8rem + env(safe-area-inset-bottom, 0px));
  }

  .container {
    width: min(100% - 2rem, var(--max));
  }

  header.site-header {
    top: 0;
  }

  .nav-wrap {
    min-height: 0;
    padding: 0;
    flex-wrap: wrap;
    row-gap: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  header.site-header {
    position: relative;
    top: auto;
  }

  .brand {
    display: none;
  }

  .grid-2,
  .footer-grid,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 1.35rem 0 2.35rem;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(11, 15, 14, 0.72) 0%, rgba(11, 15, 14, 0.36) 55%, rgba(11, 15, 14, 0) 100%);
  }

  .hero .grid-2 {
    gap: 1.35rem;
  }

  .section {
    padding: 0.95rem 0 2.25rem;
  }

  .card-grid {
    gap: 0.9rem;
  }

  .split-panels,
  .step-grid {
    grid-template-columns: 1fr;
    gap: 0.78rem;
  }

  .card,
  .panel {
    box-shadow: var(--shadow);
  }

  footer {
    margin-top: 0.75rem;
    padding: 1.5rem 0 6.4rem;
  }

  .menu {
    position: fixed !important;
    width: min(calc(100% - 1rem), 620px);
    left: 50% !important;
    right: auto !important;
    bottom: calc(0.52rem + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 70;
    order: initial;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.34rem;
    margin-top: 0;
    padding: 0.42rem;
    max-height: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transform: translateX(-50%);
    border-radius: 14px;
    border: 1px solid rgba(214, 241, 233, 0.2);
    background: rgba(13, 19, 18, 0.92);
    box-shadow:
      0 16px 34px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .menu.open {
    max-height: none;
    opacity: 1;
    margin-top: 0;
    padding: 0.42rem;
    pointer-events: auto;
    transform: translateX(-50%);
    border-color: rgba(214, 241, 233, 0.2);
    background: rgba(13, 19, 18, 0.92);
    box-shadow:
      0 16px 34px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .menu a,
  .menu .btn.primary {
    min-height: 54px;
    width: 100%;
    padding: 0.28rem 0.2rem;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    gap: 0.22rem;
    line-height: 1.1;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: transparent;
    color: var(--text-dim);
    box-shadow: none;
  }

  .menu a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
  }

  .menu .btn.primary {
    color: #d6ffa3;
    background: rgba(197, 254, 0, 0.12);
  }

  .menu .btn.primary:hover {
    box-shadow: none;
  }

  .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.02rem;
  }

  .mobile-toggle {
    display: none;
  }
}

@media (max-width: 680px) {
  header.site-header {
    position: relative;
    top: auto;
  }

  .nav-wrap {
    min-height: 0;
    padding: 0;
  }

  .hero {
    padding-top: 1.15rem;
    padding-bottom: 2.25rem;
  }

  .hero::before {
    height: 64px;
  }

  .hero-intro {
    padding: 0.68rem 0.56rem 0.32rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  }

  .section {
    padding: 0.7rem 0 1.85rem;
  }

  h1 {
    font-size: clamp(1.92rem, 8.5vw, 2.65rem);
    letter-spacing: -0.032em;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.58rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-badges {
    margin-top: 0.8rem;
    gap: 0.4rem;
  }

  .badge {
    font-size: 0.72rem;
    padding: 0.24rem 0.5rem;
  }

  .grid-2,
  .footer-grid,
  .card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .services-mid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .service-card,
  .services-process,
  .services-cta {
    padding: 0.95rem;
    border-radius: 14px;
  }

  .service-title {
    gap: 0.46rem;
    margin-bottom: 0.35rem;
  }

  .service-title h2 {
    font-size: clamp(1.24rem, 6.2vw, 1.62rem);
    line-height: 1.2;
  }

  .service-glyph {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .service-lead {
    font-size: 0.98rem;
  }

  .services-hero-pills .logo-pill {
    font-size: 0.72rem;
    padding: 0.26rem 0.54rem;
  }
}
