:root {
  --bg: #060606;
  --bg-soft: #101114;
  --bg-card: rgba(255,255,255,0.05);
  --panel: rgba(255,255,255,0.06);
  --text: #f3f3f4;
  --muted: #b9bcc3;
  --line: rgba(255,255,255,0.10);
  --red: #d71818;
  --red-bright: #ff2a2a;
  --gold: #f3ae25;
  --shadow: 0 22px 60px rgba(0,0,0,0.45);
  --radius: 22px;
  --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(215,24,24,0.32), transparent 32%),
    radial-gradient(circle at 15% 18%, rgba(215,24,24,0.16), transparent 24%),
    linear-gradient(180deg, #070707 0%, #0c0d11 38%, #090909 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-bright), var(--gold));
  box-shadow: 0 0 18px rgba(255,42,42,0.5);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.section { padding: 88px 0; }
.section.compact { padding-top: 64px; padding-bottom: 64px; }
.section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 2.2vw + 1.2rem, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.section-title strong,
.hero h1 strong,
.hero h1 .accent,
.brand span,
.card h3 strong,
.cta-banner strong,
.workflow-step h3 strong { color: var(--red-bright); }
.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
  font-size: 1.06rem;
}
.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.46);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}
.brand small {
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .72rem;
}
.brand span {
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color .2s ease;
}
.nav a:hover { color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  box-shadow: 0 14px 34px rgba(215,24,24,0.35);
}
.btn-secondary {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.02);
}
.hero {
  padding: 78px 0 46px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 34px;
  align-items: center;
}
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  line-height: .94;
  letter-spacing: -0.06em;
}
.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 64ch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-meta span,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
}
.hero-visual {
  position: relative;
}
.hero-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; height: auto; }
.hero-caption {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 14px 16px;
}
.hero-stat strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}
.hero-stat span { color: var(--muted); font-size: .92rem; }
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.logo-strip .pill { background: rgba(0,0,0,0.22); }
.grid-3, .grid-4, .workflow-grid {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.workflow-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.card, .workflow-step, .cta-banner, .quote-panel {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.card {
  padding: 24px;
}
.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,42,42,0.18), rgba(243,174,37,0.14));
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.08;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.card ul {
  padding-left: 18px;
  color: var(--muted);
  margin: 14px 0 0;
}
.card li + li { margin-top: 8px; }
.split {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 24px;
  align-items: stretch;
}
.quote-panel {
  overflow: hidden;
  position: relative;
  min-height: 100%;
}
.quote-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.06);
}
.quote-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.quote-overlay p { margin: 0; font-size: 1.02rem; }
.quote-overlay strong { display: block; margin-top: 12px; font-size: .95rem; color: #fff; }
.workflow-step {
  padding: 22px;
  position: relative;
}
.workflow-step .step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  font-weight: 900;
  margin-bottom: 16px;
}
.workflow-step h3 { margin: 0 0 8px; font-size: 1.12rem; }
.workflow-step p { margin: 0; color: var(--muted); font-size: .96rem; }
.fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.fit-tags .pill { background: rgba(255,255,255,0.06); }
.cta-banner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  overflow: hidden;
}
.cta-banner .art {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,42,42,0.25), transparent 34%),
    linear-gradient(180deg, #090909 0%, #060606 100%);
  display: grid;
  place-items: end center;
  padding-top: 20px;
}
.cta-banner .art img {
  max-height: 420px;
  width: auto;
}
.cta-banner .copy {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.cta-banner h2 { margin: 0; font-size: clamp(2rem, 2.4vw + .8rem, 3.5rem); line-height: .98; }
.cta-banner p { margin: 0; color: var(--muted); font-size: 1.06rem; max-width: 54ch; }
.guide-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.guide-callout p { margin: 0; color: var(--muted); }
.footer {
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .94rem;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.note { color: var(--muted); font-size: .95rem; }
@media (max-width: 1120px) {
  .hero-grid, .split, .cta-banner { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-banner .art img { max-height: 300px; }
}
@media (max-width: 860px) {
  .topbar-inner { align-items: flex-start; padding: 16px 0; }
  .nav { gap: 14px; }
  .hero { padding-top: 44px; }
  .hero-caption, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .guide-callout { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  .section { padding: 72px 0; }
  .topbar { position: static; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.2rem); }
  .workflow-grid { grid-template-columns: 1fr; }
  .hero-meta span, .pill { font-size: .85rem; }
  .btn { width: 100%; }
  .btn-row { width: 100%; }
}
