:root {
  --bg: #0b0c10;
  --bg-alt: #131419;
  --fg: #f5f5f7;
  --muted: #9a9aa5;
  --accent: #f2695c;
  --border: rgba(255,255,255,0.08);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11,12,16,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.75rem;
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

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

.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #16130f;
}

.btn-primary:hover { opacity: 0.9; }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--fg);
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.25); }

/* Hero */
.hero {
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(closest-side, rgba(242,105,92,0.22), transparent);
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin: 0 0 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--accent);
}

.hero p.lead {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Logo mark under hero */
.hero-mark {
  margin-top: 64px;
  opacity: 0.9;
}

.hero-mark img {
  height: 64px;
  width: auto;
}

/* Sections */
section { padding: 96px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head .eyebrow { margin-bottom: 16px; }

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

/* Services grid */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(242,105,92,0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step .num {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.step h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Stats band */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat b {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA band */
.cta {
  text-align: center;
  background: linear-gradient(180deg, rgba(242,105,92,0.1), transparent);
  border-radius: 24px;
  padding: 72px 32px;
  border: 1px solid var(--border);
}

.cta h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.cta p {
  color: var(--muted);
  margin: 0 0 32px;
}

/* Footer */
footer.site {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer .brand { color: var(--fg); font-size: 0.95rem; }
footer .brand img { height: 24px; }

footer nav ul { gap: 24px; }
footer nav a { color: var(--muted); text-decoration: none; font-size: 0.88rem; }
footer nav a:hover { color: var(--fg); }

@media (max-width: 860px) {
  nav ul { display: none; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 88px 0 64px; }
}
