:root {
  --ink: #f6fbff;
  --muted: #a9b8c6;
  --panel: rgba(10, 20, 29, 0.78);
  --panel-strong: rgba(14, 28, 38, 0.94);
  --line: rgba(176, 223, 235, 0.2);
  --teal: #22d3c5;
  --lime: #75f59a;
  --yellow: #f6c76f;
  --graphite: #061017;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--graphite);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(2, 8, 13, 0.92), rgba(2, 8, 13, 0));
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(117, 245, 154, 0.45);
  border-radius: 8px;
  color: #07120d;
  background: linear-gradient(135deg, var(--lime), var(--teal));
  box-shadow: 0 0 28px rgba(34, 211, 197, 0.28);
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 74px;
}

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

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

.hero-overlay {
  background:
    radial-gradient(circle at 75% 45%, rgba(34, 211, 197, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(3, 10, 15, 0.98) 0%, rgba(3, 10, 15, 0.9) 28%, rgba(3, 10, 15, 0.48) 58%, rgba(3, 10, 15, 0.36) 100%),
    linear-gradient(180deg, rgba(3, 10, 15, 0.18), rgba(3, 10, 15, 0.9));
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 24px 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #d4e0e8;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #04100d;
  background: linear-gradient(135deg, var(--lime), var(--teal));
  box-shadow: 0 16px 36px rgba(34, 211, 197, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.services,
.process,
.contact {
  padding: clamp(72px, 10vw, 126px) clamp(18px, 5vw, 72px);
}

.services {
  background:
    linear-gradient(180deg, #061017, #091820 50%, #071118);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card.featured {
  border-color: rgba(117, 245, 154, 0.5);
  background: linear-gradient(180deg, rgba(21, 48, 48, 0.96), rgba(11, 24, 31, 0.96));
}

.service-card p,
.process-content p,
.timeline p {
  color: var(--muted);
  font-size: 1rem;
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: rgba(117, 245, 154, 0.1);
  color: var(--lime);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  background: #08141b;
}

.process-content {
  position: sticky;
  top: 108px;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}

.timeline span {
  grid-row: span 2;
  color: var(--yellow);
  font-weight: 800;
}

.timeline strong {
  font-size: 1.15rem;
}

.timeline p {
  margin: 0;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 12% 30%, rgba(117, 245, 154, 0.13), transparent 34%),
    linear-gradient(135deg, #0b1e22, #071017);
}

.contact h2 {
  max-width: 860px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #040b10;
  font-size: 0.92rem;
}

.site-footer span {
  color: var(--ink);
  font-weight: 800;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a:hover {
  color: var(--ink);
}

.legal-page {
  background:
    radial-gradient(circle at 88% 12%, rgba(34, 211, 197, 0.12), transparent 30%),
    linear-gradient(180deg, #061017, #08141b);
}

.legal-header {
  position: sticky;
  background: rgba(2, 8, 13, 0.88);
  backdrop-filter: blur(18px);
}

.legal-shell {
  padding: clamp(40px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

.legal-content {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 20, 27, 0.9);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 1;
  margin-bottom: 26px;
}

.legal-content h2 {
  margin-top: 38px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.16;
}

.legal-content p,
.legal-content li {
  color: #c8d6df;
  font-size: 1rem;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 10, 15, 0.86) 0%, rgba(3, 10, 15, 0.86) 48%, rgba(3, 10, 15, 0.98) 100%),
      linear-gradient(90deg, rgba(3, 10, 15, 0.92), rgba(3, 10, 15, 0.58));
  }

  .service-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .process-content {
    position: static;
  }

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

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

@media (max-width: 560px) {
  .hero {
    min-height: 720px;
    padding-top: 104px;
  }

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

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .timeline span {
    grid-row: auto;
  }
}
