:root {
  --ink: #252224;
  --muted: #686267;
  --wine: #741f2e;
  --dark: #50131d;
  --soft: #f7ecee;
  --cream: #f7f5f2;
  --line: #e4dedb;
  --shadow: 0 24px 70px rgba(52, 28, 33, 0.1);
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fbfaf8;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--dark);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid rgba(116, 31, 46, 0.35);
  outline-offset: 3px;
}
#shared-header {
  position: sticky;
  top: 0;
  z-index: 30;
}
.site-header {
  position: relative;
  border-bottom: 1px solid rgba(228, 222, 219, 0.85);
  background: rgba(251, 250, 248, 0.9);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
}
.brand-logo {
  display: block;
  width: 210px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}
.nav-links a:not(.btn):hover {
  color: var(--wine);
}
.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.45rem;
}
.btn {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  cursor: pointer;
  transition: 0.18s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #fff;
  background: var(--wine);
  box-shadow: 0 13px 28px rgba(116, 31, 46, 0.2);
}
.btn-primary:hover {
  background: var(--dark);
}
.btn-secondary {
  color: var(--wine);
  border-color: rgba(116, 31, 46, 0.38);
}
section {
  padding: 96px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}
.section-head h2,
.large-title {
  margin: 14px 0 16px;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 1.07;
}
.section-head p,
.muted {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero {
  padding: 112px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(116, 31, 46, 0.1), transparent 30%),
    linear-gradient(180deg, #fff, #f7f4f1);
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 65px;
}
.hero h1 {
  margin: 17px 0 25px;
  font-size: clamp(3.3rem, 7vw, 6.25rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.98;
}
.hero h1 em {
  color: var(--wine);
  font-style: normal;
}
.hero-copy > p {
  max-width: 735px;
  margin: 0 0 31px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.hero-system {
  padding: 30px;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(145deg, var(--dark), var(--wine) 65%, #913145);
  box-shadow: var(--shadow);
}
.system-label,
.workflow-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.system-map {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}
.system-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}
.system-node {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 720;
}
.system-node:last-child {
  text-align: right;
}
.system-core {
  margin: 8px 0;
  padding: 25px;
  border-radius: 21px;
  background: #fff;
  color: var(--dark);
  text-align: center;
}
.system-core strong,
.system-core span {
  display: block;
}
.system-core span {
  color: var(--muted);
  font-size: 0.86rem;
}
.dark {
  background: var(--dark);
  color: #fff;
}
.dark .eyebrow {
  color: #efbec6;
}
.dark p {
  color: rgba(255, 255, 255, 0.72);
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.pills span {
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 700;
}
.friction,
.trust-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 25px;
}
.friction span,
.trust-point {
  padding: 13px 15px;
  border-left: 2px solid #dca5af;
  background: rgba(255, 255, 255, 0.06);
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  min-height: 275px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 42px rgba(52, 28, 33, 0.055);
}
.card small {
  display: block;
  margin-bottom: 45px;
  color: var(--wine);
  font-weight: 850;
  letter-spacing: 0.1em;
}
.card h3 {
  margin: 0 0 13px;
  font-size: 1.65rem;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.cream {
  background: var(--cream);
}
.lead {
  color: var(--wine);
  font-size: 1.15rem;
  font-weight: 760;
}
.workflow-panel {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}
.workflow-label {
  display: inline-block;
  margin-bottom: 23px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--dark);
  background: var(--soft);
}
.workflow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1;
  min-width: 100px;
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 750;
}
.flow-arrow {
  color: var(--wine);
  font-weight: 900;
}
.workflow-note {
  color: var(--muted);
  font-size: 0.9rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
}
.step {
  min-height: 245px;
  padding: 30px;
  border-right: 1px solid var(--line);
}
.step:last-child {
  border: 0;
}
.step span {
  color: var(--wine);
  font-weight: 850;
}
.step h3 {
  margin: 55px 0 11px;
  font-size: 1.45rem;
}
.step p {
  margin: 0;
  color: var(--muted);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.capability,
.industry {
  min-height: 110px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  font-weight: 760;
}
.capability {
  display: flex;
  align-items: flex-end;
}
.capability:before {
  content: "";
  width: 8px;
  height: 8px;
  margin: 0 10px 8px 0;
  border-radius: 50%;
  background: var(--wine);
}
.industry {
  min-height: 175px;
  border-top: 3px solid var(--wine);
  background: var(--cream);
}
.industry h3 {
  margin: 56px 0 0;
  font-size: 1.14rem;
}
.trust-point {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
}
.trust-point:before {
  content: "✓";
  margin-right: 9px;
  color: #efbec6;
}
.cta {
  padding-bottom: 40px;
}
.cta-box {
  padding: 66px;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--wine));
  box-shadow: var(--shadow);
}
.cta-box h2 {
  max-width: 850px;
  margin: 0 0 17px;
}
.cta-box p {
  max-width: 720px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.75);
}
.cta-box .btn {
  color: var(--dark);
  background: #fff;
}
.contact {
  padding-bottom: 100px;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  padding: 37px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-note {
  margin-top: 25px;
  padding: 17px;
  border-radius: 16px;
  background: var(--soft);
  color: var(--dark);
  font-weight: 690;
}
form {
  display: grid;
  gap: 16px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fcfbfa;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 720;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
textarea {
  min-height: 132px;
  resize: vertical;
}
.form-status {
  min-height: 24px;
  margin: 0;
}
.success {
  color: #247336;
}
.error {
  color: #b91c1c;
}
footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}
.footer-row,
.footer-brand,
.footer-meta {
  display: flex;
  align-items: center;
}
.footer-row {
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  gap: 9px;
  min-width: 0;
}
.footer-tagline {
  padding-left: 10px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
  font-size: 0.9rem;
}
.footer-meta {
  flex-wrap: wrap;
  gap: 18px;
}
.footer-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
}
.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--wine);
}
.social-link svg {
  width: 18px;
  fill: currentColor;
}
@media (max-width: 1050px) {
  .mobile-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 10px;
  }
  .two-col,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .grid-4,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 700px) {
  section {
    padding: 72px 0;
  }
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .hero {
    padding-top: 75px;
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }
  .cards,
  .grid-4,
  .friction,
  .trust-points,
  .form-row {
    grid-template-columns: 1fr;
  }
  .workflow {
    flex-direction: column;
  }
  .flow-step {
    width: 100%;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .cta-box {
    padding: 42px 25px;
  }
  .contact-wrap {
    padding: 23px;
  }
  form {
    padding: 20px;
  }
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-brand {
    flex-wrap: wrap;
  }
  .footer-tagline {
    flex-basis: 100%;
    padding: 8px 0 0;
    border-left: 0;
    white-space: normal;
  }
  .brand-logo {
    width: 180px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
