:root {
  color-scheme: dark;
  --bg: #080b0f;
  --bg-2: #0d1218;
  --panel: #101822;
  --panel-2: #141f2b;
  --text: #f5f7fb;
  --muted: #aab7c7;
  --soft: #d9e1ec;
  --line: #263445;
  --line-2: #334458;
  --accent: #43e6ae;
  --accent-dark: #113f33;
  --blue: #77a8ff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(67, 230, 174, 0.08), transparent 30%),
    linear-gradient(180deg, #101721 0%, #080b0f 48%, #0c1117 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 58%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 11, 15, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(67, 230, 174, 0.55);
  border-radius: 8px;
  background: rgba(67, 230, 174, 0.1);
  color: var(--accent);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

nav a {
  text-decoration: none;
}

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

.hero {
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 58px 0 48px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6.2vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.lede {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 7px;
  border: 1px solid var(--line-2);
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #04110d;
  border-color: transparent;
}

.button.primary:hover {
  background: #5af0bd;
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.hero-facts div {
  min-height: 88px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

dd {
  margin: 8px 0 0;
  color: var(--soft);
  font-weight: 800;
  line-height: 1.3;
}

.hero-visual {
  margin: 0;
  position: relative;
  min-height: 460px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 1% 2% 8%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(67, 230, 174, 0.22), rgba(119, 168, 255, 0.08));
  filter: blur(32px);
  opacity: 0.78;
}

.hero-visual img {
  position: relative;
  width: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.strip {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(16, 24, 34, 0.76);
  overflow: hidden;
}

.strip div {
  min-height: 104px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.strip strong {
  display: block;
  margin-top: 9px;
  color: var(--text);
  line-height: 1.35;
}

.band,
.business-band {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 17px;
}

.section-heading.compact {
  max-width: 520px;
}

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

.service-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 31, 43, 0.88), rgba(12, 18, 26, 0.9));
}

.service-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 34px;
  border-radius: 6px;
  background: rgba(67, 230, 174, 0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.process-list li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(119, 168, 255, 0.12);
  color: var(--blue);
  font-weight: 900;
}

.process-list h3,
.process-list p {
  margin-top: 0;
}

.process-list p {
  margin-bottom: 0;
}

.business-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.business-copy p {
  max-width: 680px;
  font-size: 17px;
}

.business-details {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 24, 34, 0.8);
}

.business-details dl {
  margin: 0;
}

.business-details div {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.business-details div:last-child {
  border-bottom: 0;
}

.business-details a {
  color: var(--accent);
  text-decoration: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 38px;
  align-items: center;
}

.contact-section p {
  max-width: 680px;
  font-size: 17px;
}

.contact-card {
  display: block;
  padding: 26px;
  border: 1px solid rgba(67, 230, 174, 0.32);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(67, 230, 174, 0.12), rgba(67, 230, 174, 0.04));
  text-decoration: none;
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.15;
}

.policy {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.policy h1 {
  font-size: clamp(38px, 6vw, 62px);
}

.policy h2 {
  margin-top: 36px;
  font-size: 24px;
}

.policy p {
  font-size: 17px;
}

footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 34px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 14px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--text);
}

@media (max-width: 980px) {
  .hero,
  .process,
  .business-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual img {
    min-height: 360px;
  }

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

  .strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 290px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .service-grid article {
    min-height: auto;
  }

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