:root {
  --ink: #111111;
  --ink-2: #3a3a3a;
  --paper: #f5f5f5;
  --paper-2: #e7e7e7;
  --white: #ffffff;
  --emerald: #d71920;
  --emerald-dark: #080808;
  --brass: #e11d2e;
  --steel: #d7dee0;
  --wine: #9f0f1b;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(64px, 7vw, 88px);
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(225, 29, 46, 0.48);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.footer-logo {
  height: clamp(112px, 12vw, 154px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 11px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  color: var(--white);
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.91) 0%, rgba(20, 2, 4, 0.68) 42%, rgba(70, 5, 10, 0.12) 72%),
    linear-gradient(180deg, rgba(2, 2, 2, 0.08) 0%, rgba(2, 2, 2, 0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 76px;
  transform: translateX(calc((min(100vw, var(--max)) - min(760px, calc(100% - 36px))) / -2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--brass);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.09);
}

.button.outline {
  color: var(--emerald-dark);
  border-color: rgba(215, 25, 32, 0.32);
  background: var(--white);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: -38px auto 0;
  position: relative;
  z-index: 3;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(215, 25, 32, 0.2);
}

.signal-strip div {
  min-height: 110px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.signal-strip span {
  color: var(--ink-2);
  font-size: 0.92rem;
}

section:not(.hero) {
  padding-inline: clamp(18px, 4vw, 56px);
}

.intro-section,
.about-section,
.solutions-section,
.process-section,
.onboarding-section,
.trust-section {
  max-width: var(--max);
  margin: 0 auto;
}

.intro-section {
  padding-top: 112px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid p,
.about-detail p,
.process-copy p,
.form-note,
.disclaimer {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.03rem;
}

.about-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(30px, 6vw, 86px);
  padding-top: 112px;
}

.about-detail {
  display: grid;
  gap: 22px;
  padding-top: 4px;
  border-top: 2px solid var(--brass);
}

.about-contact {
  display: grid;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.about-contact span {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-contact a {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.solutions-section {
  padding-top: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  align-items: end;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.solution-card {
  min-height: 255px;
  padding: 30px;
  background: var(--white);
}

.card-index {
  display: block;
  margin-bottom: 36px;
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 800;
}

.solution-card h3,
.timeline h3 {
  margin: 0 0 12px;
  font-size: 1.14rem;
}

.solution-card p,
.timeline p,
.trust-list p {
  margin: 0;
  color: var(--ink-2);
}

.process-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(34px, 7vw, 96px);
  padding-top: 116px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 118px;
}

.process-copy p {
  margin-top: 20px;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--brass);
  font-weight: 800;
}

.metrics-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 116px auto 0;
  padding: 0;
  background: var(--emerald-dark);
}

.metrics-section div {
  min-height: 170px;
  padding: 30px;
  color: var(--white);
  background: var(--emerald-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metrics-section div:last-child {
  border-right: 0;
}

.metrics-section strong,
.metrics-section span {
  display: block;
}

.metrics-section strong {
  margin-bottom: 12px;
  color: var(--brass);
  font-size: clamp(1.35rem, 2.4vw, 2.55rem);
  line-height: 1;
}

.metrics-section span {
  max-width: 310px;
  color: rgba(255, 253, 248, 0.78);
}

.onboarding-section {
  padding-top: 116px;
}

.onboarding-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.form-shell {
  overflow: hidden;
  min-height: 740px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.14);
}

.form-shell iframe {
  display: block;
  width: 100%;
  min-height: 740px;
  border: 0;
  background: var(--white);
}

.form-note {
  max-width: 770px;
  margin-top: 18px;
  font-size: 0.94rem;
}

.trust-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(30px, 6vw, 84px);
  padding-top: 116px;
  padding-bottom: 110px;
}

.trust-list {
  border-top: 1px solid var(--line);
}

.trust-list p {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  padding: 44px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: #080808;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.footer-contact a {
  color: var(--white);
  font-weight: 700;
}

.disclaimer {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-block: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
    color: var(--white);
    background: var(--emerald-dark);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 2, 2, 0.88) 0%, rgba(20, 2, 4, 0.68) 58%, rgba(70, 5, 10, 0.28) 100%),
      linear-gradient(180deg, rgba(2, 2, 2, 0.18) 0%, rgba(2, 2, 2, 0.72) 100%);
  }

  .hero-content {
    width: min(680px, calc(100% - 36px));
    transform: none;
  }

  .signal-strip,
  .intro-grid,
  .about-section,
  .section-heading,
  .solution-grid,
  .process-section,
  .metrics-section,
  .trust-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: 0;
  }

  .signal-strip div,
  .metrics-section div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip div:last-child,
  .metrics-section div:last-child {
    border-bottom: 0;
  }

  .process-copy {
    position: static;
  }

  .onboarding-header {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    max-width: 178px;
  }

  .brand-logo {
    height: 58px;
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .button {
    width: 100%;
  }

  .intro-section,
  .about-section,
  .solutions-section,
  .process-section,
  .onboarding-section,
  .trust-section {
    padding-top: 76px;
  }

  .solution-card {
    min-height: 230px;
    padding: 24px;
  }

  .timeline li {
    grid-template-columns: 48px 1fr;
  }

  .form-shell,
  .form-shell iframe {
    min-height: 680px;
  }
}
