:root {
  --ink: #0b1017;
  --ink-2: #111923;
  --muted: #66717d;
  --line: #dce2e7;
  --paper: #f5f7f8;
  --white: #ffffff;
  --accent: #b8ff3d;
  --accent-2: #8fdc20;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", "DM Sans", Arial, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: var(--white);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.6px;
}

.logo > span:last-child > span { opacity: .58; }

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 19px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

.nav a { opacity: .82; transition: opacity .2s ease; }
.nav a:hover { opacity: 1; }

.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  opacity: 1 !important;
}

.nav-cta span,
.btn span,
.text-link span,
.service-card a span { margin-left: 7px; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: white;
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 32%, rgba(184,255,61,.09), transparent 25%),
    radial-gradient(circle at 14% 80%, rgba(71,112,146,.12), transparent 30%),
    var(--ink);
  display: flex;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -190px;
  bottom: -260px;
  border: 1px solid rgba(184,255,61,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(184,255,61,.025), 0 0 0 160px rgba(184,255,61,.015);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,.64);
}

.eyebrow.dark { color: #6d7882; }

.pulse, .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(184,255,61,.08);
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 96px);
  line-height: .98;
  letter-spacing: -5px;
}

.hero h1 em,
.process-section h2 em,
.contact-section h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -4px;
}

.hero h1 em { color: var(--accent); }

.hero-copy {
  max-width: 610px;
  margin: 31px 0 35px;
  color: rgba(255,255,255,.66);
  font-size: 17px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 13px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.btn-primary { color: var(--ink); background: var(--accent); }
.btn-primary:hover { background: #caff76; }

.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.18);
}

.btn-ghost:hover { background: rgba(255,255,255,.07); }

.hero-status {
  position: absolute;
  right: 5%;
  bottom: 52px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  letter-spacing: .5px;
}

.trust-strip {
  background: var(--accent);
  color: var(--ink);
}

.trust-inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.trust-inner i {
  width: 4px;
  height: 4px;
  background: rgba(11,16,23,.35);
  border-radius: 50%;
}

.section { padding: 125px 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -3px;
}

h2 span { color: #78838e; }

.intro-copy {
  align-self: end;
  max-width: 530px;
  color: var(--muted);
  font-size: 17px;
}

.intro-copy p { margin: 0 0 20px; }

.services-section { background: #edf1f3; }

.section-heading,
.process-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 65px;
}

.section-heading > p,
.process-header > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 29px;
  grid-column: span 2;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) { grid-column: span 3; }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(11,16,23,.08);
}

.service-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #aab4bc;
  font-size: 11px;
  font-weight: 700;
}

.featured .service-number { color: rgba(255,255,255,.32); }

.service-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  margin-bottom: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 21px;
}

.featured .service-icon {
  border-color: rgba(255,255,255,.17);
  color: var(--accent);
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -.8px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.featured p { color: rgba(255,255,255,.57); }

.service-card a {
  position: absolute;
  left: 29px;
  bottom: 27px;
  font-size: 11px;
  font-weight: 700;
}

.service-card a span { color: #81909c; }
.featured a { color: var(--accent); }

.process-section {
  padding: 125px 0;
  color: var(--white);
  background: var(--ink);
}

.process-header h2 { color: white; }
.process-header h2 em { color: var(--accent); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 22px;
}

.process-item span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.process-item h3 {
  margin: 28px 0 10px;
  font-family: var(--display);
  font-size: 21px;
}

.process-item p {
  margin: 0;
  color: rgba(255,255,255,.47);
  font-size: 13px;
}

.process-line {
  width: 1px;
  background: rgba(255,255,255,.12);
}

.about-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 510px;
  color: var(--white);
  background: #141d26;
}

.about-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: var(--accent);
}

.about-content {
  position: relative;
  z-index: 2;
  padding: 75px 70px;
}

.about-content h2 { color: white; }
.about-content h2 span { color: var(--accent); }

.about-content p {
  max-width: 590px;
  margin: 30px 0;
  color: rgba(255,255,255,.55);
}

.text-link {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.about-pattern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: center;
  padding: 70px;
  transform: rotate(12deg) scale(1.2);
  opacity: .55;
}

.about-pattern div {
  aspect-ratio: 1;
  border: 1px solid rgba(184,255,61,.17);
  margin: -1px;
}

.contact-section {
  padding: 125px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(184,255,61,.07), transparent 25%),
    #0a0f15;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-section h2 { color: white; }
.contact-section h2 em { color: var(--accent); }

.contact-grid > div > p {
  max-width: 500px;
  margin: 27px 0;
  color: rgba(255,255,255,.54);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 38px;
  font-size: 13px;
}

.contact-details a {
  color: var(--accent);
  font-weight: 700;
}

.contact-details span { color: rgba(255,255,255,.36); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.025);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(255,255,255,.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  outline: none;
  color: white;
  background: rgba(255,255,255,.045);
  padding: 13px 14px;
  font: inherit;
  font-size: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.27); }

.btn-light {
  align-self: flex-start;
  margin-top: 4px;
  color: var(--ink);
  background: var(--accent);
  cursor: pointer;
}

.contact-form small {
  color: rgba(255,255,255,.3);
  font-size: 10px;
}

.footer {
  color: rgba(255,255,255,.55);
  background: #080c11;
}

.footer-top {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo { color: white; }
.footer-top p { margin: 0; font-size: 12px; }

.back-top {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  color: rgba(255,255,255,.28);
}

@media (max-width: 900px) {
  .nav { gap: 20px; }
  .hero { min-height: 700px; }
  .hero-status { display: none; }
  .two-col,
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .process-line { display: none; }
  .about-card { grid-template-columns: 1fr; }
  .about-pattern { display: none; }
}

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

  .nav {
    position: absolute;
    top: 75px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #121a23;
    border: 1px solid rgba(255,255,255,.1);
  }

  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; }
  .nav-cta { text-align: center; margin-top: 5px; }

  .menu-toggle { display: block; }

  .hero { min-height: 720px; }
  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
    letter-spacing: -3.5px;
  }

  .hero-copy { font-size: 15px; }

  .trust-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .trust-inner i { display: none; }

  .section,
  .process-section,
  .contact-section { padding: 85px 0; }

  .section-heading,
  .process-header {
    display: block;
    margin-bottom: 45px;
  }

  .section-heading > p,
  .process-header > p { margin-top: 25px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
    min-height: 320px;
  }

  .process-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-content { padding: 55px 35px; }

  .contact-grid { gap: 45px; }
  .contact-form { padding: 24px; }

  .footer-top,
  .footer-bottom {
    min-height: auto;
    padding: 25px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
