:root {
  --navy: #032b52;
  --navy-2: #07406f;
  --teal: #079a9a;
  --teal-dark: #067777;
  --orange: #f49a34;
  --charcoal: #41464d;
  --muted: #6a727c;
  --cream: #fbf6ed;
  --cream-2: #f3ecdf;
  --mint: #dff5ef;
  --blue-soft: #e8f4f8;
  --card: #fffdfa;
  --line: rgba(3, 43, 82, 0.12);
  --shadow: 0 24px 70px rgba(3, 43, 82, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { 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(--navy);
  background:
    radial-gradient(circle at top left, rgba(7,154,154,0.16), transparent 34rem),
    radial-gradient(circle at 85% 12%, rgba(244,154,52,0.14), transparent 28rem),
    linear-gradient(135deg, var(--cream) 0%, #f7fbfa 42%, #f8f1e7 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-shell { overflow: hidden; }
.section-pad { padding: 88px 24px; }

.site-header {
  width: min(var(--max), calc(100% - 48px));
  margin: 18px auto 0;
  min-height: 76px;
  padding: 12px 14px 12px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  position: sticky;
  top: 14px;
  z-index: 100;
  background: rgba(255,253,250,0.86);
  border: 1px solid rgba(3,43,82,0.10);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(3,43,82,0.12);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; width: 222px; flex: 0 0 auto; }
.brand img { width: 222px; border-radius: 8px; }
.site-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; font-size: 0.92rem; color: var(--charcoal); }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--teal-dark); }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta, .btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 18px 34px rgba(7,154,154,0.24);
}
.header-cta:hover, .btn:hover { transform: translateY(-2px); }
.btn-secondary {
  color: var(--navy);
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
}
.btn-light { color: var(--navy); background: #fff7e6; box-shadow: 0 14px 34px rgba(0,0,0,0.12); }
.btn.full { width: 100%; }
.nav-toggle { display: none; }

.hero { padding-top: 92px; padding-bottom: 48px; }
.hero-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--teal-dark); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 18px; }
.eyebrow span { width: 34px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--teal), var(--orange)); }
.eyebrow.light { color: #fff7e6; }
.eyebrow.light span { background: #fff7e6; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.85rem, 5.35vw, 5.25rem); line-height: .96; letter-spacing: -0.07em; margin-bottom: 24px; max-width: 920px; }
h2 { font-size: clamp(2.15rem, 3.4vw, 4rem); line-height: 1; letter-spacing: -0.055em; margin-bottom: 18px; }
h3 { font-size: 1.15rem; line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 10px; }
.hero-subtitle { color: var(--charcoal); font-size: clamp(1.08rem, 1.5vw, 1.32rem); max-width: 720px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 760px; }
.trust-row div { background: rgba(255,253,250,.72); border: 1px solid var(--line); border-radius: 18px; padding: 16px; }
.trust-row strong { display: block; color: var(--navy); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.trust-row span { display: block; color: var(--muted); font-size: .92rem; margin-top: 4px; }

.hero-visual { min-height: 620px; position: relative; display: grid; place-items: center; }
.system-orbit { width: min(480px, 92vw); aspect-ratio: 1; border-radius: 44px; position: relative; display: grid; place-items: center; background: linear-gradient(135deg, rgba(223,245,239,.7), rgba(255,251,242,.82)); border: 1px solid rgba(7,154,154,.2); box-shadow: var(--shadow); }
.system-orbit img { width: 172px; border-radius: 24px; mix-blend-mode: multiply; }
.orbit-ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(3,43,82,.25); }
.ring-one { inset: 64px; }
.ring-two { inset: 120px; border-color: rgba(244,154,52,.28); }
.orbit-node { position: absolute; min-width: 92px; text-align: center; padding: 10px 14px; border-radius: 999px; background: #fffdfa; color: var(--navy); border: 1px solid var(--line); box-shadow: 0 12px 25px rgba(3,43,82,.12); font-weight: 800; font-size: .82rem; }
.node-a { left: 14px; top: 92px; }
.node-b { right: 22px; top: 74px; }
.node-c { right: 36px; bottom: 76px; }
.node-d { left: 44px; bottom: 62px; }
.system-card { position: absolute; width: 300px; display: flex; gap: 14px; align-items: flex-start; background: rgba(255,253,250,.92); border: 1px solid var(--line); border-radius: 22px; padding: 18px; box-shadow: 0 22px 55px rgba(3,43,82,.12); }
.system-card p { margin: 4px 0 0; color: var(--muted); font-size: .92rem; }
.hero-card-top { top: 28px; left: 0; }
.hero-card-bottom { right: 0; bottom: 18px; }
.node-dot { width: 13px; height: 13px; border-radius: 50%; margin-top: 5px; flex: 0 0 auto; }
.node-dot.navy { background: var(--navy); }
.node-dot.orange { background: var(--orange); }

.logo-strip { padding-top: 28px; padding-bottom: 48px; }
.logo-strip p { width: min(var(--max), 100%); margin: 0 auto; border: 1px solid rgba(7,154,154,.18); border-radius: 999px; padding: 18px 28px; background: rgba(255,253,250,.62); color: var(--charcoal); text-align: center; font-weight: 750; box-shadow: 0 16px 40px rgba(3,43,82,.07); }

.section-heading { width: min(860px, 100%); margin: 0 auto 42px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.section-heading.center { text-align: center; }
.split-heading { width: min(var(--max), 100%); display: grid; grid-template-columns: 1fr .72fr; gap: 54px; align-items: end; }
.problem, .solution, .integrations, .faq { background: rgba(255,253,250,.36); }
.pain-grid, .module-grid, .integration-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pain-card, .module-grid article, .integration-grid article { background: rgba(255,253,250,.78); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; box-shadow: 0 14px 36px rgba(3,43,82,.07); min-height: 210px; }
.pain-card span { display: inline-flex; color: var(--orange); font-weight: 900; margin-bottom: 20px; }
.pain-card p, .module-grid p, .integration-grid p { color: var(--muted); margin-bottom: 0; }

.discovery-card, .blueprint-card { width: min(var(--max), 100%); margin: 0 auto; border-radius: var(--radius); padding: 44px; color: white; background: radial-gradient(circle at 20% 10%, rgba(244,154,52,.42), transparent 26rem), linear-gradient(135deg, var(--navy), var(--teal-dark)); box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr .78fr; gap: 44px; align-items: center; position: relative; overflow: hidden; }
.discovery-card:before, .blueprint-card:before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -180px; top: -190px; background: rgba(255,255,255,.10); }
.discovery-copy, .deliverables-panel, .blueprint-card > div, .blueprint-form { position: relative; z-index: 1; }
.discovery-copy p:not(.eyebrow), .blueprint-card p { color: rgba(255,255,255,.83); font-size: 1.08rem; }
.deliverables-panel { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 24px; padding: 28px; }
.deliverables-panel ul, .compare-card ul { list-style: none; padding: 0; margin: 0; }
.deliverables-panel li, .compare-card li { padding: 10px 0 10px 30px; position: relative; }
.deliverables-panel li:before, .compare-card li:before { content: ""; width: 10px; height: 10px; border-radius: 50%; position: absolute; left: 0; top: 18px; background: var(--orange); }

.icon-pill { display: inline-flex; align-items: center; justify-content: center; height: 36px; min-width: 42px; padding: 0 12px; border-radius: 999px; color: white; background: linear-gradient(135deg, var(--teal), var(--navy)); font-weight: 900; margin-bottom: 20px; }

.workflow-line { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.workflow-step { min-height: 132px; padding: 18px; border-radius: 22px; background: linear-gradient(180deg, rgba(255,253,250,.92), rgba(223,245,239,.7)); border: 1px solid rgba(7,154,154,.20); box-shadow: 0 12px 34px rgba(3,43,82,.08); }
.workflow-step span { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: white; background: var(--navy); font-weight: 900; margin-bottom: 18px; }
.workflow-step p { margin: 0; font-weight: 850; letter-spacing: -0.02em; }
.workflow-step:nth-child(3n) span { background: var(--teal); }
.workflow-step:nth-child(4n) span { background: var(--orange); }

.compare-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-card { padding: 34px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.compare-card.before { background: linear-gradient(135deg, #fff9f0, #f3ecdf); }
.compare-card.after { background: linear-gradient(135deg, #e7f8f5, #fffdfa); }
.compare-card li { color: var(--charcoal); font-weight: 650; }
.compare-card.after li:before { background: var(--teal); }

.integration-grid { grid-template-columns: repeat(3, 1fr); }
.integration-grid article { min-height: 178px; }

.blueprint-form { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); border-radius: 24px; padding: 24px; display: grid; gap: 10px; }
.blueprint-form label { font-weight: 800; font-size: .86rem; }
.blueprint-form input { width: 100%; height: 50px; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; padding: 0 14px; color: white; background: rgba(255,255,255,.12); outline: none; }
.blueprint-form input::placeholder { color: rgba(255,255,255,.58); }
.form-note { margin: 2px 0 0; font-size: .82rem !important; color: rgba(255,255,255,.7) !important; }

.proof-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: .85fr 1fr; gap: 40px; align-items: center; }
.proof-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.proof-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.proof-points div { min-height: 150px; background: rgba(255,253,250,.82); border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: 0 14px 34px rgba(3,43,82,.07); }
.proof-points strong { display: block; color: var(--orange); font-size: 1.35rem; margin-bottom: 24px; }
.proof-points span { color: var(--charcoal); font-weight: 750; }

.faq-list { width: min(960px, 100%); margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: rgba(255,253,250,.82); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 10px 26px rgba(3,43,82,.06); }
.faq-item button { width: 100%; border: 0; background: transparent; color: var(--navy); padding: 22px 24px; font: inherit; font-weight: 850; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; }
.faq-item button span { font-size: 1.4rem; color: var(--teal); }
.faq-item div { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item p { color: var(--muted); padding: 0 24px 22px; margin: 0; }
.faq-item.open div { max-height: 220px; }
.faq-item.open button span { transform: rotate(45deg); }

.final-card { width: min(980px, 100%); margin: 0 auto; padding: 54px 34px; text-align: center; border-radius: var(--radius); background: radial-gradient(circle at 50% 0, rgba(7,154,154,.18), transparent 26rem), rgba(255,253,250,.8); border: 1px solid var(--line); box-shadow: var(--shadow); }
.final-card img { width: 104px; margin: 0 auto 20px; border-radius: 18px; mix-blend-mode: multiply; }
.final-card p { color: var(--muted); max-width: 650px; margin: 0 auto 26px; font-size: 1.1rem; }
.site-footer { width: min(var(--max), calc(100% - 48px)); margin: 0 auto 28px; padding: 28px; display: flex; justify-content: space-between; gap: 24px; align-items: center; border-radius: 28px; background: #fffdfa; border: 1px solid var(--line); color: var(--muted); }
.site-footer img { width: 240px; border-radius: 8px; margin-bottom: 8px; }
.site-footer p { margin: 4px 0; }
.site-footer a { color: var(--navy); font-weight: 750; }

@media (max-width: 1060px) {
  .site-header { border-radius: 28px; align-items: flex-start; flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; margin-left: auto; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; background: #fffdfa; color: var(--navy); font-weight: 800; }
  .site-nav { display: none; order: 3; width: 100%; flex-direction: column; align-items: flex-start; padding: 12px 4px; }
  .site-nav.open { display: flex; }
  .header-cta { display: none; }
  .hero-grid, .discovery-card, .blueprint-card, .split-heading, .proof-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 560px; }
  .pain-grid, .module-grid { grid-template-columns: repeat(2, 1fr); }
  .integration-grid, .workflow-line { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section-pad { padding: 64px 18px; }
  .site-header { width: calc(100% - 28px); margin-top: 12px; top: 8px; }
  .brand { width: 170px; }
  .brand img { width: 170px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .hero { padding-top: 62px; }
  .hero-grid { gap: 24px; }
  .hero-actions, .trust-row, .compare-grid, .proof-points { grid-template-columns: 1fr; display: grid; }
  .btn { width: 100%; }
  .hero-visual { min-height: 470px; }
  .system-orbit { width: min(360px, 92vw); }
  .system-orbit img { width: 124px; }
  .system-card { width: 245px; padding: 14px; }
  .hero-card-top { top: 0; left: 8px; }
  .hero-card-bottom { bottom: 0; right: 8px; }
  .orbit-node { min-width: 76px; padding: 8px 10px; }
  .node-a { left: -2px; top: 70px; }
  .node-b { right: 2px; top: 58px; }
  .node-c { right: 6px; bottom: 66px; }
  .node-d { left: 16px; bottom: 52px; }
  .pain-grid, .module-grid, .integration-grid, .workflow-line { grid-template-columns: 1fr; }
  .discovery-card, .blueprint-card { padding: 28px; }
  .site-footer { width: calc(100% - 28px); flex-direction: column; align-items: flex-start; }
}
