:root {
  --navy: #0E2240;
  --navy-deep: #0A1733;
  --navy-mid: #16315A;
  --blue: #2E6FF2;
  --blue-soft: #5B8DEF;
  --blue-tint: #EAF1FE;
  --ink: #14233B;
  --slate: #5C6675;
  --slate-light: #8893A2;
  --line: #E5E9F0;
  --line-soft: #EFF2F7;
  --bg: #FFFFFF;
  --bg-soft: #F5F8FC;
  --bg-panel: #F0F4FA;
  --maxw: 1240px;
  --header-nav-h: 78px;
  --header-ticker-h: 38px;
  --header-total-h: calc(var(--header-nav-h) + var(--header-ticker-h));
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--blue);
  display: inline-block;
}

.eyebrow.center::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 2px;
  transition: all .2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1;
}

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #1E5BD8; }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.btn-outline-dark:hover {
  border-color: var(--navy);
  background: var(--bg-soft);
}

.btn .arr {
  font-size: 16px;
  transition: transform .2s ease;
}

.btn:hover .arr { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header > header {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text b {
  font-family: "Inter";
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.brand-text span {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 3px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: color .15s;
}

.nav-links a:hover { color: var(--blue); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn {
  padding: 11px 20px;
  font-size: 13.5px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  color: var(--navy);
}

/* ---------- Disclaimer ticker ---------- */
.disclaimer-ticker {
  background: var(--navy-deep);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.disclaimer-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
}

.disclaimer-ticker__text {
  flex: none;
  padding: 10px 0;
  padding-right: 4rem;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .72);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.disclaimer-ticker__text::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-soft);
  margin-right: 14px;
  vertical-align: middle;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 12% 0%, rgba(46, 111, 242, .18), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}

.hero-left {
  padding: 84px 64px 84px 0;
  color: #fff;
}

.hero-left .eyebrow { color: var(--blue-soft); }
.hero-left .eyebrow::before { background: var(--blue-soft); }

.hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 56px);
  margin: 24px 0 0;
  font-weight: 500;
}

.hero .sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .82);
  margin-top: 26px;
  max-width: 540px;
  line-height: 1.62;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0 60px 64px;
}

.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
}

.doc {
  background: #fff;
  border-radius: 4px;
  padding: 18px 18px 20px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .5);
  position: relative;
  overflow: hidden;
}

.doc:nth-child(1) {
  transform: translateY(-14px);
  animation: doc-float-a 5s ease-in-out infinite;
}

.doc:nth-child(4) {
  transform: translateY(14px);
  animation: doc-float-b 5s ease-in-out 0.6s infinite;
}

@keyframes doc-float-a {
  0%, 100% { transform: translateY(-14px); }
  50% { transform: translateY(-20px); }
}

@keyframes doc-float-b {
  0%, 100% { transform: translateY(14px); }
  50% { transform: translateY(20px); }
}

.doc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.doc-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  padding: 4px 7px;
  border-radius: 2px;
}

.doc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: dot-pulse 2.4s ease-in-out infinite;
}

.doc-ln {
  transform-origin: left center;
  animation: ln-reveal 0.7s ease forwards;
  opacity: 0;
}

.doc:nth-child(1) .doc-ln:nth-of-type(1) { animation-delay: 0.15s; }
.doc:nth-child(1) .doc-ln:nth-of-type(2) { animation-delay: 0.25s; }
.doc:nth-child(2) .doc-ln:nth-of-type(1) { animation-delay: 0.2s; }
.doc:nth-child(2) .doc-ln:nth-of-type(2) { animation-delay: 0.3s; }
.doc:nth-child(2) .doc-row-side .doc-ln:nth-child(1) { animation-delay: 0.85s; }
.doc:nth-child(2) .doc-row-side .doc-ln:nth-child(2) { animation-delay: 0.95s; }
.doc:nth-child(2) .doc-row-side .doc-ln:nth-child(3) { animation-delay: 1.05s; }
.doc:nth-child(3) .doc-ln:nth-of-type(1) { animation-delay: 0.25s; }
.doc:nth-child(3) .doc-ln:nth-of-type(2) { animation-delay: 0.35s; }
.doc:nth-child(4) .doc-ln:nth-of-type(1) { animation-delay: 0.3s; }
.doc:nth-child(4) .doc-ln:nth-of-type(2) { animation-delay: 0.4s; }

.doc-title {
  font-family: "Newsreader";
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.ln {
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  margin-bottom: 7px;
}

.ln.w90 { width: 90%; }
.ln.w70 { width: 70%; }
.ln.w55 { width: 55%; }
.ln.w80 { width: 80%; }

/* --- Hero doc visualizations --- */
.doc-viz { margin-top: 14px; }

.doc-viz--bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 42px;
}

.doc-viz--bars .bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(var(--blue-soft), var(--blue));
  border-radius: 2px 2px 0 0;
  opacity: .85;
  transform: scaleY(0);
  transform-origin: bottom center;
  animation: bar-grow 0.65s cubic-bezier(0.34, 1.35, 0.64, 1) forwards;
  animation-delay: calc(0.35s + var(--i) * 0.07s);
}

.doc-viz--donut {
  width: 46px;
  height: 46px;
  flex: none;
  margin-top: 4px;
}

.donut-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 62%, var(--blue-soft) 62% 82%, var(--line) 82% 100%);
  position: relative;
  transform: scale(0);
  animation: donut-enter 0.9s cubic-bezier(0.34, 1.2, 0.64, 1) forwards 0.35s,
             donut-idle 5s ease-in-out 1.4s infinite;
}

.donut-ring::after {
  content: "";
  position: absolute;
  inset: 13px;
  background: #fff;
  border-radius: 50%;
}

.doc-viz--line {
  display: block;
  width: 100%;
  height: 42px;
}

.line-area {
  opacity: 0;
  animation: area-fade 0.8s ease forwards 0.5s;
}

.line-path {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: line-draw 1.4s ease forwards 0.35s;
}

.line-dot {
  opacity: 0;
  transform-origin: 100px 10px;
  animation: dot-pop 0.45s cubic-bezier(0.34, 1.4, 0.64, 1) forwards 1.55s;
}

.doc-viz--metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.metric {
  height: 7px;
  background: var(--line-soft);
  border-radius: 3px;
  overflow: hidden;
}

.metric-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue));
  animation: metric-fill 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.45s + var(--i) * 0.12s);
}

@keyframes bar-grow {
  to { transform: scaleY(1); }
}

@keyframes ln-reveal {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@keyframes donut-enter {
  to { transform: scale(1); }
}

@keyframes donut-idle {
  0%, 100% { filter: brightness(1); transform: scale(1); }
  50% { filter: brightness(1.06); transform: scale(1.04); }
}

@keyframes line-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes area-fade {
  to { opacity: 1; }
}

@keyframes dot-pop {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes metric-fill {
  to { width: var(--w); }
}

.doc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 8px;
}

.doc-row-side {
  flex: 1;
  margin-left: 12px;
}

.doc-spaced { margin-top: 14px; }

/* ---------- Accent bar ---------- */
.accent-bar { background: var(--blue); }

.accent-bar .wrap {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 58px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.accent-bar a {
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, .28);
  letter-spacing: 0.01em;
}

.accent-bar a:last-child { border-right: none; }
.accent-bar a:hover { color: rgba(255, 255, 255, .78); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }

.sec-soft { background: var(--bg-soft); }
.sec-navy { background: var(--navy); color: #fff; }

.sec-head {
  max-width: 760px;
  margin-bottom: 54px;
  background: transparent;
  backdrop-filter: none;
  border: none;
  position: static;
}

.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-top: 18px;
}

.sec-head p {
  font-size: 17px;
  color: var(--slate);
  margin-top: 18px;
  line-height: 1.62;
}

.sec-navy h2 { color: #fff; }
.sec-navy .sec-head p { color: rgba(255, 255, 255, .74); }
.sec-navy .eyebrow { color: var(--blue-soft); }
.sec-navy .eyebrow::before { background: var(--blue-soft); }

/* value prop benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.benefit {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: .2s;
}

.benefit:hover {
  border-color: var(--blue-soft);
  box-shadow: 0 18px 40px -24px rgba(14, 34, 64, .3);
}

.benefit .num {
  font-family: "Newsreader";
  font-size: 30px;
  color: var(--blue);
  font-weight: 500;
  line-height: 1;
}

.benefit h3 {
  font-size: 21px;
  margin: 16px 0 12px;
}

.benefit p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

.strong-line {
  margin-top: 48px;
  padding: 28px 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  font-family: "Newsreader";
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.4;
  border-left: 3px solid var(--blue);
}

.strong-line em {
  color: var(--blue-soft);
  font-style: italic;
}

/* capabilities */
.caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.cap {
  background: #fff;
  padding: 38px 32px;
  transition: .2s;
}

.cap:hover { background: var(--bg-soft); }

.cap .ico {
  width: 46px;
  height: 46px;
  border-radius: 3px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cap .ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
}

.cap h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.cap p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.62;
}

.cap-foot {
  margin-top: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cap-foot p {
  font-size: 16px;
  color: var(--slate);
  max-width: 640px;
}

/* technical areas */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.tech {
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  gap: 22px;
}

.tech:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.tech:nth-child(even) { padding-left: 48px; }

.tech .tnum {
  font-family: "Newsreader";
  font-size: 15px;
  color: var(--blue-soft);
  font-weight: 500;
  min-width: 30px;
  padding-top: 4px;
}

.tech h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 9px;
}

.tech p {
  font-size: 14px;
  color: rgba(255, 255, 255, .66);
  line-height: 1.6;
}

.tech-strong {
  margin-top: 50px;
  font-family: "Newsreader";
  font-size: clamp(18px, 2vw, 23px);
  color: #fff;
  line-height: 1.45;
  max-width: 880px;
}

.tech-strong em {
  color: var(--blue-soft);
  font-style: italic;
}

/* audiences */
.auds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aud {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: .2s;
}

.aud:hover {
  box-shadow: 0 22px 50px -28px rgba(14, 34, 64, .4);
  transform: translateY(-3px);
}

.aud-top {
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-soft));
}

.aud-body {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aud h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.aud p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.62;
  margin-bottom: 16px;
}

.aud .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* projects */
.proj-block + .proj-block { margin-top: 56px; }

.proj-label {
  font-family: "Inter";
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.proj-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.proj {
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: .2s;
  position: relative;
}

.proj:hover {
  border-color: var(--blue-soft);
  box-shadow: 0 16px 36px -26px rgba(14, 34, 64, .35);
}

.proj h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
}

.proj p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.58;
}

.proj .pmark {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .55;
}

.proj-cta { margin-top: 48px; }

/* form / library */
.lib-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.lib-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-top: 18px;
  color: #fff;
}

.lib-head p {
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
  margin-top: 18px;
  line-height: 1.6;
}

.lib-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 30px;
}

.lib-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.lib-item:last-child { border-bottom: none; }

.lib-item .lico {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background: rgba(46, 111, 242, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.lib-item .lico svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-soft);
}

.lib-item h3,
.lib-item h4 {
  color: #fff;
  font-family: "Inter";
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.lib-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.form-card {
  background: #fff;
  border-radius: 6px;
  padding: 38px 36px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .5);
}

.form-card h3 {
  font-size: 23px;
  margin-bottom: 6px;
}

.form-card .fsub {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 24px;
}

.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.field input,
.field select {
  font-family: "Inter";
  font-size: 14px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: .15s;
  width: 100%;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46, 111, 242, .12);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 20px;
}

.check input {
  margin-top: 3px;
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
  flex: none;
}

.check label {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.5;
}

.form-card .btn {
  width: 100%;
  justify-content: center;
}

/* deliverable examples */
.ex-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.ex {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 26px;
  transition: .2s;
  align-items: center;
}

.ex:hover {
  box-shadow: 0 20px 46px -28px rgba(14, 34, 64, .4);
  border-color: var(--line);
}

.ex-vis {
  height: 140px;
  border-radius: 4px;
  background: var(--navy);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.ex-vis .ev-tag {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.ex-vis .evln {
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .18);
  margin-bottom: 5px;
}

.ex-vis .evln.s { width: 60%; }

.ev-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 38px;
}

.ev-chart i {
  flex: 1;
  background: var(--blue);
  border-radius: 1px 1px 0 0;
  opacity: .8;
}

.ev-donut {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 55%, var(--blue-soft) 55% 78%, rgba(255, 255, 255, .2) 78% 100%);
  position: relative;
}

.ev-donut::after {
  content: "";
  position: absolute;
  inset: 11px;
  background: var(--navy);
  border-radius: 50%;
}

.ex-vis-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.ex-vis-lines { flex: 1; }

.ex h3,
.ex h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.ex p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.55;
}

.conv-rule {
  margin-top: 42px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: 4px;
}

.conv-rule div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
}

.conv-rule b {
  color: var(--blue);
  font-weight: 600;
}

/* process */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 14px;
  counter-reset: s;
  list-style: none;
  padding: 0;
}

.step {
  padding: 0 26px;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 21px;
  right: -1px;
  width: 1px;
  height: calc(100% - 28px);
  background: var(--line);
}

.step .snum {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-family: "Newsreader";
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.step h3,
.step h4 {
  font-size: 16.5px;
  line-height: 1.25;
  color: var(--navy);
}

.process-intro {
  max-width: 680px;
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 48px;
}

/* closing */
.closing {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, var(--navy-mid));
  color: #fff;
  text-align: center;
}

.closing .eyebrow.center {
  justify-content: center;
}

.closing h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  max-width: 880px;
  margin: 18px auto 0;
}

.closing p.cls {
  font-size: 18px;
  color: rgba(255, 255, 255, .78);
  max-width: 680px;
  margin: 24px auto 0;
  line-height: 1.6;
}

.closing .hero-cta {
  justify-content: center;
  margin-top: 40px;
}

/* footer */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .65);
  padding: 54px 0 40px;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

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

.foot-brand .brand-text b { color: #fff; }

.foot-brand .brand-text span { color: rgba(255, 255, 255, .5); }

.foot-brand .brand-tagline {
  max-width: 340px;
  font-size: 14px;
}

.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
}

.foot-contact a { color: rgba(255, 255, 255, .78); }
.foot-contact a:hover { color: var(--blue-soft); }

.disclaimer {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
  margin-top: 26px;
  max-width: 920px;
}

.foot-bottom {
  margin-top: 26px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links,
  .nav-cta .btn { display: none; }

  .menu-btn { display: block; }

  .hero-grid { grid-template-columns: 1fr; }

  .hero-left { padding: 64px 0 20px; }

  .hero-right { padding: 10px 0 64px; }

  .benefits,
  .caps,
  .auds,
  .proj-grid,
  .steps { grid-template-columns: 1fr; }

  .caps { gap: 1px; }

  .tech-grid { grid-template-columns: 1fr; }

  .tech:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }

  .tech:nth-child(even) { padding-left: 0; }

  .lib-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ex-grid { grid-template-columns: 1fr; }

  .step:not(:last-child)::after { display: none; }

  .step { padding: 0 0 28px; }

  .fgrid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }

  section { padding: 68px 0; }

  .deliverables { grid-template-columns: 1fr 1fr; }

  .ex { grid-template-columns: 1fr; }

  .form-card { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .disclaimer-ticker__track {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .disclaimer-ticker__text[aria-hidden="true"] {
    display: none;
  }

  .disclaimer-ticker__text {
    white-space: normal;
    text-align: center;
    padding: 10px 20px;
  }

  .doc-viz--bars .bar,
  .donut-ring,
  .line-path,
  .line-area,
  .line-dot,
  .metric-bar,
  .doc-ln,
  .doc-dot {
    animation: none !important;
    opacity: 1;
    transform: none;
    stroke-dashoffset: 0;
    filter: none;
  }

  .doc-viz--bars .bar {
    transform: scaleY(1);
  }

  .donut-ring {
    transform: scale(1);
  }

  .doc:nth-child(1),
  .doc:nth-child(4) {
    animation: none !important;
  }

  .doc:nth-child(1) { transform: translateY(-14px); }
  .doc:nth-child(4) { transform: translateY(14px); }

  .metric-bar {
    width: var(--w);
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-total-h) 0 0;
  background: #fff;
  z-index: 50;
  padding: 32px;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .btn {
  margin-top: 18px;
  justify-content: center;
}
