:root {
  --ink: #101820;
  --ink-soft: #17232e;
  --orange: #ea5b0c;
  --orange-light: #f58220;
  --yellow: #e8ca1c;
  --blue: #165b92;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
}

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

.cover {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 68% 15%, rgba(234, 91, 12, 0.08), transparent 32%),
    linear-gradient(135deg, #0d151c 0%, #101820 48%, #111d27 100%);
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.ambient--orange {
  width: 540px;
  height: 540px;
  right: -190px;
  top: -160px;
  background: rgba(234, 91, 12, 0.18);
}

.ambient--blue {
  width: 380px;
  height: 380px;
  left: -170px;
  bottom: -130px;
  background: rgba(22, 91, 146, 0.18);
}

.grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255,255,255,.85) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.85) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.topbar,
.hero,
.footer {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand img {
  display: block;
  width: 116px;
  height: auto;
  object-fit: contain;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.78);
  transition: color .2s ease;
}

.topbar__link:hover { color: var(--orange-light); }
.topbar__link svg, .button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, .82fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
  padding-block: clamp(64px, 8vh, 108px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow span { width: 34px; height: 2px; background: var(--orange); }

h1 {
  margin: 0;
  max-width: 780px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

h1 span { display: block; color: var(--orange-light); }

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--orange); box-shadow: 0 14px 44px rgba(234,91,12,.25); }
.button--primary:hover { background: var(--orange-light); }
.button--ghost { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); color: rgba(255,255,255,.8); }
.button--ghost:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); }

.services {
  padding-left: clamp(24px, 4vw, 64px);
  border-left: 1px solid var(--line);
}

.services__heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 18px; }
.services__heading p { margin: 0; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 15px; }
.services__heading span { color: rgba(255,255,255,.34); font-size: 11px; }

.service-grid { display: grid; gap: 10px; }

.service-card {
  position: relative;
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(14px);
}

.service-card__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.64);
}

.service-card__icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h2 { margin: 0; font: 700 14px/1.3 "Plus Jakarta Sans", sans-serif; }
.service-card p { margin: 5px 0 0; color: rgba(255,255,255,.42); font-size: 11px; line-height: 1.45; }

.service-card--featured {
  min-height: 110px;
  border-color: rgba(234,91,12,.4);
  background: linear-gradient(115deg, rgba(234,91,12,.2), rgba(234,91,12,.07));
  box-shadow: inset 3px 0 0 var(--orange);
}

.service-card--featured .service-card__icon { color: var(--orange-light); border-color: rgba(234,91,12,.3); background: rgba(234,91,12,.13); }
.service-card--featured h2 { font-size: 15px; }
.badge {
  position: absolute;
  right: 14px;
  top: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(234,91,12,.16);
  color: #ff9a55;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.31);
  font-size: 11px;
}
.footer p { margin: 0; }
.footer a { color: rgba(255,255,255,.62); font-weight: 700; }

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; gap: 56px; }
  .services { padding-left: 0; border-left: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .topbar, .hero, .footer { width: min(100% - 32px, 1200px); }
  .topbar { height: 78px; }
  .brand img { width: 98px; }
  .topbar__link { font-size: 0; }
  .topbar__link svg { width: 22px; }
  .hero { padding-block: 54px; gap: 48px; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  .lead { margin-top: 22px; }
  .actions { margin-top: 30px; }
  .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: auto; }
  .services__heading span { display: none; }
  .footer { padding-block: 22px; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
