:root {
  --bg: #050609;
  --accent: #ffa31a;
  --text: #f6f1e8;
  --muted: #aaa7a2;
  --muted-strong: #d3cbc0;
  --border: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.045);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      ellipse at 50% 115%,
      rgba(255, 163, 26, 0.5) 0%,
      rgba(129, 77, 13, 0.28) 28%,
      rgba(5, 6, 9, 0) 64%
    ),
    radial-gradient(
      circle at 78% 66%,
      rgba(255, 163, 26, 0.08),
      rgba(255, 163, 26, 0) 34%
    ),
    linear-gradient(180deg, #030407 0%, #07080d 45%, #060608 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 65%, transparent);
  opacity: 0.18;
}

body::after {
  content: "";
  position: fixed;
  right: -18rem;
  bottom: -22rem;
  width: 46rem;
  height: 46rem;
  border-radius: 999px;
  background: rgba(255, 163, 26, 0.13);
  filter: blur(85px);
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(1.25rem, 3vw, 3rem);
}

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.025em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 2rem;
}

.logo-mark span {
  display: block;
  width: 0.55rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--accent);
  transform: skewX(-22deg);
  box-shadow: 0 0 24px rgba(255, 163, 26, 0.24);
}

.logo-text {
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  font-weight: 850;
  line-height: 1;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6.5rem) 0;
}

.hero-card {
  position: relative;
  width: min(100%, 980px);
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.68fr 1.55fr;
  gap: clamp(2rem, 4.5vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.75rem);
  border: 1px solid var(--border);
  border-radius: clamp(1.6rem, 3vw, 2.35rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 163, 26, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025) 52%, rgba(255, 163, 26, 0.045)),
    var(--card);
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(255, 163, 26, 0.13), transparent 28%);
  pointer-events: none;
}

.service-meta,
.content {
  position: relative;
  z-index: 1;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  align-self: stretch;
  justify-content: center;
}

.content {
  padding-left: clamp(0.8rem, 2vw, 1.75rem);
}

.service-count {
  color: rgba(246, 241, 232, 0.48);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.service-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.service-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(255, 163, 26, 0.75);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(4.1rem, 7.4vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 900;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.08),
    0 0 24px rgba(255, 163, 26, 0.08);
}

.supporting-text {
  max-width: none;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .site-header {
    justify-content: flex-start;
  }

  .hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2.5rem;
  }

  .service-meta {
    align-self: auto;
    justify-content: flex-start;
  }

  .content {
    padding-left: 0;
  }

  h1 {
    font-size: clamp(4rem, 13vw, 6.4rem);
    letter-spacing: -0.04em;
  }

  .supporting-text {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 1.15rem;
  }

  .logo-mark {
    height: 1.55rem;
  }

  .logo-mark span {
    width: 0.42rem;
    height: 1.55rem;
  }

  .hero {
    align-items: flex-start;
    padding-top: clamp(3.5rem, 12vw, 5rem);
  }

  .hero-card {
    padding: 1.45rem;
    border-radius: 1.35rem;
  }

  .service-meta {
    gap: 1rem;
  }

  .service-count {
    font-size: 0.95rem;
  }

  .service-pill {
    padding: 0.7rem 0.95rem;
    font-size: 0.78rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.35rem, 17vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  .supporting-text {
    font-size: 0.98rem;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .logo-mark span,
  .service-dot {
    animation: glow-pulse 4.8s ease-in-out infinite;
  }

  @keyframes glow-pulse {
    0%,
    100% {
      opacity: 0.88;
      filter: drop-shadow(0 0 0 rgba(255, 163, 26, 0));
    }

    50% {
      opacity: 1;
      filter: drop-shadow(0 0 13px rgba(255, 163, 26, 0.28));
    }
  }
}
