:root {
  color-scheme: dark;
  --ink: #f4f8f8;
  --muted: #aebbbb;
  --soft: #dce8e4;
  --night: #071112;
  --panel: #101a1a;
  --line: rgba(255, 255, 255, 0.12);
  --teal: #10d7bd;
  --green: #82e34c;
  --amber: #ffc857;
  --coral: #ff765f;
  --shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(7, 17, 18, 0.86), rgba(7, 17, 18, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(16, 215, 189, 0.55);
  background: rgba(7, 17, 18, 0.64);
  color: var(--green);
  font-size: 0.92rem;
  box-shadow: 0 12px 32px var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.84;
}

.nav-links a:hover {
  color: var(--teal);
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 118px clamp(20px, 5vw, 72px) 128px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 18, 0.96) 0%, rgba(7, 17, 18, 0.7) 34%, rgba(7, 17, 18, 0.18) 72%),
    linear-gradient(180deg, rgba(7, 17, 18, 0.18) 0%, rgba(7, 17, 18, 0.34) 58%, rgba(7, 17, 18, 0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.7rem, 10vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
}

.button-primary {
  background: var(--teal);
  color: #041111;
  box-shadow: 0 16px 40px rgba(16, 215, 189, 0.2);
}

.button-secondary {
  border-color: rgba(244, 248, 248, 0.35);
  background: rgba(244, 248, 248, 0.06);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-stats {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 28px;
  left: clamp(20px, 5vw, 72px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: rgba(7, 17, 18, 0.42);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  min-height: 96px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--amber);
  font-size: 1.65rem;
  line-height: 1.1;
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(24px, 6vw, 96px);
  align-items: start;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  background: #081112;
}

.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
  max-width: 1120px;
  margin-left: auto;
  color: var(--soft);
  font-size: 1.08rem;
}

.services-section {
  background: #eef4ef;
  color: #111a18;
}

.services-section .eyebrow,
.values-section .eyebrow {
  color: #157b68;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.service-card {
  min-height: 252px;
  padding: 26px;
  border: 1px solid rgba(17, 26, 24, 0.12);
  background: #ffffff;
}

.service-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: #10201e;
  color: var(--green);
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: #4e5a56;
}

.roadmap-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  background: #0b1514;
}

.roadmap-copy p:last-child {
  max-width: 640px;
  color: var(--soft);
  font-size: 1.06rem;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 24px;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.05);
}

.timeline-item:nth-child(2) {
  border-color: var(--amber);
}

.timeline-item:nth-child(3) {
  border-color: var(--coral);
}

.timeline-item span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.timeline-item strong {
  display: block;
  margin-top: 8px;
  font-size: 1.28rem;
}

.timeline-item p {
  margin: 8px 0 0;
  color: var(--soft);
}

.values-section {
  background: #f7f2e8;
  color: #161614;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(22, 22, 20, 0.14);
}

.values-list div {
  min-height: 170px;
  padding: 30px;
  background: #fdfaf1;
}

.values-list strong {
  display: block;
  font-size: 1.3rem;
}

.values-list span {
  display: block;
  margin-top: 10px;
  color: #5c574c;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: #0e1a1a;
}

.contact-section h2 {
  max-width: 920px;
}

.contact-section p:last-child {
  max-width: 760px;
  color: var(--soft);
}

.site-footer {
  border-top: 1px solid rgba(16, 215, 189, 0.2);
  color: var(--muted);
  background:
    linear-gradient(180deg, #071112 0%, #090b22 100%);
  font-size: 0.95rem;
}

.footer-info {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.55fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 72px);
}

.footer-company {
  display: grid;
  gap: 28px;
}

.footer-logo {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.company-details {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-details li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.detail-icon {
  display: inline-grid;
  min-height: 25px;
  place-items: center;
  border: 1px solid rgba(130, 227, 76, 0.42);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.footer-menu {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-left: clamp(0px, 3vw, 38px);
  border-left: 1px solid rgba(16, 215, 189, 0.24);
}

.footer-menu a {
  color: var(--soft);
  font-weight: 800;
  opacity: 0.86;
}

.footer-menu a:hover,
.footer-contact a:hover {
  color: var(--teal);
}

.footer-contact {
  display: grid;
  gap: 24px;
}

.contact-mini {
  display: grid;
  gap: 7px;
}

.contact-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(16, 215, 189, 0.4);
  color: var(--teal);
  font-size: 1.05rem;
}

.contact-mini strong {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding-bottom: 232px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 17, 18, 0.94) 0%, rgba(7, 17, 18, 0.64) 70%, rgba(7, 17, 18, 0.3) 100%),
      linear-gradient(180deg, rgba(7, 17, 18, 0.18) 0%, rgba(7, 17, 18, 0.44) 58%, rgba(7, 17, 18, 0.98) 100%);
  }

  .hero-stats,
  .service-grid,
  .values-list {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .intro-copy,
  .roadmap-section,
  .contact-section,
  .footer-info {
    grid-template-columns: 1fr;
  }

  .contact-section .button {
    justify-self: start;
  }

  .footer-menu {
    padding: 28px 0 0;
    border-top: 1px solid rgba(16, 215, 189, 0.22);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 94vh;
    padding-top: 104px;
    padding-bottom: 286px;
  }

  .hero-image {
    object-position: 61% center;
  }

  h1 {
    font-size: clamp(3.1rem, 19vw, 4.9rem);
  }

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

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

  .service-card,
  .timeline-item,
  .values-list div {
    padding: 22px;
  }

  .company-details li {
    grid-template-columns: 34px minmax(0, 1fr);
  }
}
