:root {
  --red: #b00000;
  --red-2: #d00000;
  --red-dark: #7a0000;
  --red-deep: #4a0000;
  --black: #111111;
  --ink: #1d1d1f;
  --muted: #60606a;
  --soft-muted: #7a7a83;
  --line: #ece7e7;
  --soft: #fff7f7;
  --soft-bg: #fffafa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 17, 17, .08);
  --red-shadow: 0 18px 45px rgba(176, 0, 0, .18);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(236, 231, 231, .96);
}
.site-header:after {
  content: "";
  display: block;
  height: 3px;
  background: var(--red);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-logo { display: block; width: auto; height: 52px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 28px; font-weight: 700; color: var(--black); }
.site-nav a { font-size: .94rem; }
.site-nav a:hover { color: var(--red); }
.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--black);
  box-shadow: 0 12px 26px rgba(17,17,17,.14);
}
.nav-cta:hover { background: var(--red); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 84px;
  background: var(--white);
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: -120px;
  width: 42vw;
  min-width: 420px;
  height: 100%;
  background: #fff4f4;
  transform: skewX(-11deg);
  transform-origin: top;
  pointer-events: none;
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 58px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; color: var(--black); line-height: 1.06; letter-spacing: -.055em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.15rem); max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.24rem; }
.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: #4d4d55;
  font-size: 1.18rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--red); box-shadow: var(--red-shadow); }
.btn-primary:hover { background: var(--red-dark); }
.btn-primary.inverted { color: var(--red); background: white; box-shadow: 0 16px 34px rgba(0,0,0,.16); }
.btn-secondary { color: var(--black); background: white; border-color: #d9d4d4; box-shadow: 0 10px 28px rgba(17,17,17,.06); }
.btn-secondary:hover { border-color: var(--red); color: var(--red); }
.btn-light { color: white; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(176,0,0,.18);
  border-radius: 999px;
  color: #4d2222;
  background: white;
  font-size: .86rem;
  font-weight: 780;
}

.hero-showcase {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #eee8e8;
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow);
}
.showcase-topline {
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: var(--red);
}
.showcase-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--black); font-weight: 800; }
.platform-logo { height: 56px; width: auto; object-fit: contain; }
.status-pill { display: inline-flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 999px; background: var(--soft); border: 1px solid var(--line); font-size: .86rem; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 7px rgba(176,0,0,.12); }
.showcase-copy { margin-top: 34px; padding: 30px; border-radius: 26px; color: white; background: var(--black); }
.showcase-copy h2 { margin-top: 8px; color: white; font-size: clamp(2rem, 3.5vw, 3.2rem); }
.showcase-copy p { max-width: 440px; margin: 14px 0 0; color: rgba(255,255,255,.74); }
.micro-label { color: #ffb2b2; font-size: .75rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.content-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.content-rail article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border-radius: 20px;
  color: white;
  background: var(--red);
  box-shadow: 0 16px 36px rgba(176,0,0,.16);
}
.content-rail article:nth-child(2) { background: var(--black); }
.content-rail article:nth-child(3) { background: var(--red-dark); }
.content-rail span { font-size: .76rem; color: rgba(255,255,255,.7); font-weight: 900; }
.content-rail strong { display: block; margin-top: 6px; font-size: 1.15rem; }
.content-rail small { display: block; margin-top: 4px; color: rgba(255,255,255,.72); }
.showcase-footer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.showcase-footer div { padding: 16px; border-radius: 18px; background: var(--soft); border: 1px solid var(--line); }
.showcase-footer strong { display: block; color: var(--black); }
.showcase-footer span { display: block; margin-top: 3px; color: var(--muted); font-size: .88rem; }

.section { padding: 88px 0; background: var(--white); }
.section-tight { padding: 48px 0; }
.muted { background: var(--soft-bg); }
.split-banner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 45px rgba(17, 17, 17, .05);
}
.split-banner p:last-child { margin: 0; color: var(--muted); font-size: 1.06rem; }
.section-heading { max-width: 820px; margin-bottom: 44px; }
.section-heading.narrow { max-width: 760px; }
.section-heading p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted); font-size: 1.06rem; }
.cards { display: grid; gap: 20px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 42px rgba(17, 17, 17, .045);
}
.card:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--red);
  opacity: .9;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 999px;
  color: white;
  background: var(--red);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(176,0,0,.18);
}
.card p { margin: 14px 0 0; color: var(--muted); }

.product-section { padding-top: 34px; }
.product-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 48px; align-items: center; }
.feature-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.07rem; }
.text-link { display: inline-flex; margin-top: 12px; color: var(--red); font-weight: 880; }
.stream-panel {
  overflow: hidden;
  padding: 24px;
  border-radius: 30px;
  color: white;
  background: #0b0b0b;
  box-shadow: 0 26px 70px rgba(17,17,17,.18);
}
.stream-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.stream-header strong { font-size: 1.05rem; }
.stream-header span { color: #ffb8b8; font-weight: 800; font-size: .9rem; }
.stream-row { display: grid; grid-template-columns: repeat(4, minmax(150px, 1fr)); gap: 12px; }
.stream-row article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border-radius: 20px;
  background: var(--black);
}
.stream-row article:nth-child(2) { background: var(--red); }
.stream-row article:nth-child(3) { background: #181818; }
.stream-row article:nth-child(4) { background: var(--red-dark); }
.stream-row small { color: rgba(255,255,255,.66); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.stream-row strong { display: block; margin-top: 10px; color: white; font-size: 1.08rem; line-height: 1.22; }

.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.process-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.process-step { padding: 25px; border-radius: 22px; background: white; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(17,17,17,.04); }
.process-step span { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: white; background: var(--black); font-weight: 850; }
.process-step strong { display: block; margin-top: 18px; color: var(--black); font-size: 1.06rem; }
.process-step p { margin: 8px 0 0; color: var(--muted); }
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.industry-grid a {
  min-height: 138px;
  display: flex;
  align-items: end;
  padding: 20px;
  border-radius: 22px;
  color: white;
  font-weight: 880;
  background: var(--black);
  box-shadow: 0 18px 42px rgba(17,17,17,.1);
}
.industry-grid a:nth-child(even) { background: var(--red); }
.cta-section { padding: 0 0 92px; background: white; }
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border-radius: 34px;
  color: white;
  background: var(--black);
  box-shadow: 0 28px 70px rgba(17,17,17,.18);
}
.cta-panel h2 { color: white; }
.cta-panel p:not(.eyebrow) { max-width: 740px; color: rgba(255,255,255,.76); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.page-hero { padding: 82px 0 64px; background: white; border-bottom: 1px solid var(--line); }
.page-hero .container { position: relative; }
.page-hero .container:before { content: ""; display: block; width: 72px; height: 6px; margin-bottom: 28px; border-radius: 999px; background: var(--red); }
.page-hero p:not(.eyebrow) { max-width: 780px; color: var(--muted); font-size: 1.13rem; }
.page-content { padding-top: 70px; }
.prose { max-width: 900px; }
.prose h2 { margin-top: 44px; font-size: clamp(1.55rem, 2vw, 2.25rem); }
.prose p, .prose li { color: #53535b; }
.prose a { color: var(--red); font-weight: 850; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin: .45rem 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 28px; }
.contact-cards div { padding: 19px; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 18px; background: white; box-shadow: 0 12px 28px rgba(17,17,17,.04); }
.contact-cards strong { display: block; color: var(--black); }
.contact-cards span, .contact-cards a { color: var(--muted); }
.contact-form { padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--black); font-weight: 760; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  color: var(--ink);
  background: #fffdfd;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid rgba(176,0,0,.12); border-color: rgba(176,0,0,.45); }
.form-note { margin: 14px 0 0; color: var(--soft-muted); font-size: .86rem; }

.site-footer { padding: 60px 0 26px; background: #0d0d0d; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 34px; }
.footer-brand { margin-bottom: 12px; }
.footer-logo-plate { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 18px; background: white; box-shadow: 0 18px 45px rgba(0,0,0,.18); }
.footer-brand .brand-logo { height: 50px; }
.site-footer h3 { color: white; margin-bottom: 14px; font-size: 1rem; letter-spacing: 0; }
.site-footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.78); }
.site-footer a:hover { color: white; }
.site-footer p { margin: 12px 0 0; max-width: 390px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .9rem; }

@media (max-width: 1040px) {
  .hero-grid, .split-banner, .feature-grid, .product-grid, .contact-grid, .cta-panel { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-logo { height: 44px; }
  .platform-logo { height: 48px; }
  .nav-toggle { display: inline-flex; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--black); font-weight: 850; }
  .site-nav {
    position: absolute;
    top: 81px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero { padding: 64px 0; }
  .hero:before { opacity: .55; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  .section { padding: 64px 0; }
  .cards-3, .process-panel, .industry-grid, .showcase-footer, .content-rail, .footer-grid { grid-template-columns: 1fr; }
  .stream-row { grid-template-columns: repeat(2, minmax(130px, 1fr)); }
  .stream-row article { min-height: 170px; }
  .card { min-height: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .hero-showcase, .showcase-copy, .split-banner, .cta-panel, .contact-form { border-radius: 22px; padding: 22px; }
  .showcase-header { align-items: flex-start; flex-direction: column; }
  .stream-row { grid-template-columns: 1fr; }
  .stream-row article { min-height: 150px; }
}
