/* =========================================================================
   ArgusDCM marketing site - light-enterprise design system
   Palette tuned to the logo: navy headings + teal/cyan accents.
   ========================================================================= */

:root {
  /* Brand */
  --navy:        #16365a;
  --navy-deep:   #0f2740;
  --teal:        #0e7fa6;
  --teal-dark:   #0a6589;
  --cyan:        #29a8df;

  /* Neutrals */
  --ink:         #1f2933;
  --muted:       #55616d;
  --faint:       #8a96a3;
  --bg:          #ffffff;
  --bg-soft:     #f5f8fb;
  --bg-softer:   #eef3f8;
  --border:      #dce3ea;
  --border-soft: #e8edf2;

  /* Accents */
  --good:        #3fa85c;
  --amber:       #c99000;

  /* Effects */
  --shadow-sm:  0 1px 2px rgba(16, 40, 64, .06), 0 1px 3px rgba(16, 40, 64, .05);
  --shadow-md:  0 4px 12px rgba(16, 40, 64, .08), 0 2px 4px rgba(16, 40, 64, .05);
  --shadow-lg:  0 18px 40px rgba(16, 40, 64, .12), 0 6px 14px rgba(16, 40, 64, .07);
  --ring:       0 0 0 4px rgba(41, 168, 223, .25);

  /* Geometry */
  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  22px;
  --container:  1180px;

  /* Type */
  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.68;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--teal); }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.12; margin: 0 0 var(--s-4); font-weight: 700; letter-spacing: -.018em; }
p { margin: 0 0 var(--s-4); }
ul { margin: 0 0 var(--s-4); padding-left: 1.2em; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ------------------------------------------------------------- Type scale */
.h-display { font-size: clamp(2.5rem, 1.7rem + 3.4vw, 3.9rem); font-weight: 800; letter-spacing: -.032em; }
.h-1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.9rem); font-weight: 800; letter-spacing: -.028em; }
.h-2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); letter-spacing: -.022em; }
.h-3 { font-size: 1.18rem; letter-spacing: -.01em; }
.lead { font-size: clamp(1.06rem, 1rem + .35vw, 1.26rem); color: var(--muted); line-height: 1.62; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: var(--s-3);
}
.muted { color: var(--muted); }

/* --------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.section { padding: var(--s-9) 0; }
.section--tight { padding: var(--s-8) 0; }
.section--soft { background: var(--bg-soft); }
.section--softer { background: var(--bg-softer); }
.section-head { max-width: 720px; margin: 0 auto var(--s-7); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.center { text-align: center; }
.stack > * + * { margin-top: var(--s-4); }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font: inherit; font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 13px 22px; border-radius: 11px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, #1693c0, var(--teal));
  color: #fff;
  box-shadow: 0 1px 2px rgba(10, 101, 137, .3), inset 0 1px 0 rgba(255, 255, 255, .16);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #1187b3, var(--teal-dark));
  color: #fff; transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 101, 137, .25), inset 0 1px 0 rgba(255, 255, 255, .16);
}
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); background: #fff; box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--navy); padding-left: 8px; padding-right: 8px; }
.btn-ghost:hover { color: var(--teal-dark); }
.btn-lg { padding: 16px 28px; font-size: 1.04rem; border-radius: 13px; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: var(--s-5); }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: var(--s-6); list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--navy); font-weight: 600; font-size: .95rem; position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--teal-dark); }
.nav-links a.active { color: var(--teal-dark); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2.5px; border-radius: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: var(--s-4); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ------------------------------------------------------------------ Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 480px at 78% -8%, rgba(41, 168, 223, .14), transparent 60%),
    radial-gradient(900px 420px at 6% 4%, rgba(14, 127, 166, .10), transparent 55%),
    linear-gradient(180deg, var(--bg-soft), #fff 72%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(22, 54, 90, .07) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 75%);
  mask-image: linear-gradient(180deg, #000, transparent 75%);
  animation: grid-drift 24s linear infinite;
}
@keyframes grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 24px 24px; }
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-8);
  align-items: center; padding: var(--s-9) var(--s-5) var(--s-8);
}
.hero h1 { margin-bottom: var(--s-5); }
.hero .lead { margin-bottom: var(--s-6); max-width: 36ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center; }
.hero-note { margin-top: var(--s-5); font-size: .92rem; color: var(--faint); }

/* Hero "product" visual - an abstract dashboard built in CSS, no image needed */
.hero-visual {
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fff, var(--bg-soft));
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: 14px;
}
.hero-shot { border-radius: 10px; overflow: hidden; border: 1px solid var(--border-soft); }
.hero-shot img {
  display: block; width: 100%; aspect-ratio: 16 / 11; object-fit: cover;
  animation: slow-zoom 26s ease-in-out infinite alternate;
}
@keyframes slow-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hv-bar { display: flex; align-items: center; gap: 6px; padding: 4px 4px 14px; }
.hv-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.hv-dot:nth-child(1) { background: #f0a8a0; } .hv-dot:nth-child(2) { background: #f2cf8a; } .hv-dot:nth-child(3) { background: #a7d8b3; }
.hv-body { display: grid; grid-template-columns: 64px 1fr; gap: 14px; }
.hv-side { display: flex; flex-direction: column; gap: 10px; }
.hv-side span { height: 9px; border-radius: 5px; background: var(--bg-softer); }
.hv-side span:nth-child(1) { background: var(--teal); width: 70%; }
.hv-main { display: flex; flex-direction: column; gap: 14px; }
.hv-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hv-card { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-sm); padding: 12px; box-shadow: var(--shadow-sm); }
.hv-card b { display: block; color: var(--navy); font-size: 1.35rem; }
.hv-card small { color: var(--faint); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.hv-chart { height: 120px; border: 1px solid var(--border-soft); border-radius: var(--radius-sm); background:
  linear-gradient(transparent 0 96%, var(--border-soft) 96%) 0 0 / 100% 25%,
  linear-gradient(90deg, transparent 0 99%, var(--border-soft) 99%) 0 0 / 16.6% 100%;
  position: relative; overflow: hidden; }
.hv-chart::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 70%;
  background: linear-gradient(180deg, rgba(41,168,223,.28), rgba(41,168,223,.02));
  clip-path: polygon(0 65%, 12% 55%, 25% 62%, 38% 40%, 52% 48%, 66% 28%, 80% 36%, 100% 18%, 100% 100%, 0 100%);
}
.hv-chart::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 70%;
  border-top: 2px solid var(--cyan);
  clip-path: polygon(0 65%, 12% 55%, 25% 62%, 38% 40%, 52% 48%, 66% 28%, 80% 36%, 100% 18%, 100% 19%, 0 66%);
}

/* ------------------------------------------------------------ Logos strip */
.trust { padding: var(--s-6) 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: #fff; }
.trust p { text-align: center; color: var(--faint); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--s-4); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3); align-items: center; }
.trust-row span {
  color: var(--muted); font-weight: 600; font-size: .88rem; letter-spacing: .01em;
  background: var(--bg-soft); border: 1px solid var(--border-soft);
  padding: 8px 16px; border-radius: 999px;
}

/* --------------------------------------------------------------- Cards */
.grid { display: grid; gap: var(--s-5); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--s-6); box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card h3 { margin-bottom: var(--s-2); }
.card p { margin-bottom: 0; color: var(--muted); font-size: .98rem; }
a.card { color: inherit; display: block; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #b9d7e6; }
a.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--s-4); color: var(--teal-dark); font-weight: 600; font-size: .92rem; }
a.card:hover .more .arrow { transform: translateX(3px); }
.more .arrow { transition: transform .15s ease; }

/* Icon chip */
.icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(41,168,223,.16), rgba(14,127,166,.12));
  color: var(--teal-dark); margin-bottom: var(--s-4);
  transition: transform .25s cubic-bezier(.3, 1.4, .5, 1);
}
.card:hover .icon, .value:hover .icon, .diff-panel:hover .icon, .contact-detail:hover .icon {
  transform: scale(1.1) rotate(-4deg);
}
.icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.7; }

/* Value props (3 up, borderless) */
.value { text-align: left; }
.value .icon { background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft); }

/* --------------------------------------------------- Feature deep sections */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; }
.feature-row.flip .feature-media { order: -1; }
.feature-media {
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: linear-gradient(160deg, #fff, var(--bg-soft)); box-shadow: var(--shadow-md);
  overflow: hidden; min-height: 320px; display: block;
}
.feature-media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.feature-list { list-style: none; padding: 0; margin: var(--s-5) 0 0; }
.feature-list li { position: relative; padding-left: 30px; margin-bottom: var(--s-3); color: var(--muted); }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(63,168,92,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233fa85c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* --------------------------------------------------------- Solutions list */
.solution { display: grid; grid-template-columns: 220px 1fr; gap: var(--s-6); padding: var(--s-7) 0; border-top: 1px solid var(--border-soft); }
.solution:first-of-type { border-top: 0; }
.solution .who { color: var(--navy); }
.solution .who .icon { margin-bottom: var(--s-3); }
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-top: var(--s-3); }
.sol-grid .mini { background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); padding: var(--s-4); }
.sol-grid .mini b { color: var(--navy); display: block; margin-bottom: 4px; font-size: .95rem; }
.sol-grid .mini span { color: var(--muted); font-size: .88rem; }

/* ------------------------------------------------------------- Stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.stat { text-align: center; position: relative; }
.stat b { display: block; font-size: clamp(2rem, 1.4rem + 2vw, 2.8rem); font-weight: 800; color: var(--teal-dark); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat span { color: var(--muted); font-size: .93rem; }
@media (min-width: 721px) {
  .stat + .stat::before {
    content: ""; position: absolute; left: calc(var(--s-5) / -2); top: 14%; bottom: 14%;
    width: 1px; background: var(--border-soft);
  }
}

/* --------------------------------------------------------------- CTA band */
.cta {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); padding: clamp(36px, 4vw, 64px); text-align: center; color: #fff;
  background:
    radial-gradient(800px 300px at 80% 0%, rgba(41,168,223,.4), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: var(--shadow-lg);
}
.cta::before {
  content: ""; position: absolute; top: -45%; right: -15%; width: 65%; height: 130%;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(41, 168, 223, .32), transparent);
  animation: cta-glow 10s ease-in-out infinite;
}
.cta > * { position: relative; }
@keyframes cta-glow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .8; }
  50%      { transform: translate(-12%, 10%) scale(1.15); opacity: 1; }
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.82); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.cta .btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.cta-actions { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; margin-top: var(--s-5); }

/* ---------------------------------------------------------------- Forms */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s-7); box-shadow: var(--shadow-md); }
.field { margin-bottom: var(--s-5); }
.field label { display: block; font-weight: 600; color: var(--navy); margin-bottom: var(--s-2); font-size: .95rem; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cyan); box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: var(--s-8); align-items: start; }
.contact-detail { display: flex; gap: var(--s-4); margin-bottom: var(--s-5); }
.contact-detail .icon { flex: 0 0 auto; margin-bottom: 0; width: 42px; height: 42px; }
.contact-detail b { display: block; color: var(--navy); }
.contact-detail span { color: var(--muted); font-size: .95rem; }

/* --------------------------------------------------------------- Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: var(--s-8) 0 var(--s-6); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-6); }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: var(--s-4); }
.site-footer a { color: rgba(255,255,255,.72); display: block; margin-bottom: var(--s-3); font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 28px; margin-bottom: var(--s-4); filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { font-size: .92rem; max-width: 30ch; color: rgba(255,255,255,.6); }
.footer-bottom {
  margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap;
  font-size: .86rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { display: inline; margin: 0; }
.footer-bottom .juvo { display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom .juvo img { height: 18px; filter: brightness(0) invert(1); opacity: .7; }

/* ---------------------------------------------------------- Page header */
.page-hero { padding: var(--s-9) 0 var(--s-7); background:
  radial-gradient(900px 360px at 85% -10%, rgba(41,168,223,.12), transparent 60%),
  linear-gradient(180deg, var(--bg-soft), #fff); }
.page-hero .lead { max-width: 60ch; }

/* ----------------------------------------------------------- Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); padding-bottom: var(--s-7); }
  .hero-visual { order: 2; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; gap: var(--s-6); }
  .feature-row.flip .feature-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    padding: var(--s-3) var(--s-5) var(--s-5); transform: translateY(-12px); opacity: 0;
    pointer-events: none; transition: opacity .18s ease, transform .18s ease;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid var(--border-soft); }
  .nav-links a { display: block; padding: 14px 4px; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-demo { display: none; }
}
@media (max-width: 720px) {
  .grid-3, .grid-2, .grid-4, .stats, .sol-grid, .hv-cards { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr 1fr; }
  .solution { grid-template-columns: 1fr; gap: var(--s-4); }
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .section { padding: var(--s-8) 0; }
}

/* --------------------------------------------------- Differentiator panels */
.diff-panel {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--s-6); box-shadow: var(--shadow-sm); height: 100%;
}
.diff-panel .icon { width: 52px; height: 52px; }
.diff-panel h3 { margin-bottom: var(--s-3); }
.diff-panel p { color: var(--muted); }
.keymsg {
  margin-top: var(--s-5); padding: 14px 16px; border-radius: var(--radius-sm);
  background: linear-gradient(150deg, rgba(14,127,166,.10), rgba(41,168,223,.08));
  border-left: 4px solid var(--teal); color: var(--navy); font-weight: 600; line-height: 1.5;
}
.keymsg small {
  display: block; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  font-size: .7rem; color: var(--teal-dark); margin-bottom: 5px;
}

/* --------------------------------------------------------- Comparison table */
.compare-wrap {
  overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); background: #fff;
}
.compare { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare th, .compare td { text-align: left; padding: 16px 22px; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
.compare thead th { background: var(--bg-soft); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.compare thead th.col-argus { color: var(--teal-dark); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover { background: var(--bg-soft); }
.compare .row-label { font-weight: 600; color: var(--navy); width: 26%; }
.compare .col-argus { color: var(--ink); font-weight: 600; }
.compare .col-argus .tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 19px; height: 19px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(63, 168, 92, .14); color: var(--good);
  font-size: .7rem; font-weight: 800; margin-right: 9px; vertical-align: -3px;
}
.compare .col-legacy { color: var(--muted); }

/* ------------------------------------------------- Photo media additions */
/* Image-topped capability cards */
.card--media { padding: 0; overflow: hidden; }
.card--media .card-shot { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-softer); }
.card--media .card-shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.card--media:hover .card-shot img { transform: scale(1.05); }
.card--media .card-body { padding: var(--s-5) var(--s-6) var(--s-6); }
.card--media .card-body h3 { margin-bottom: var(--s-2); }

/* Solution role thumbnails */
.who .who-photo {
  width: 100%; max-width: 210px; aspect-ratio: 4 / 3; border-radius: var(--radius-sm);
  overflow: hidden; margin-bottom: var(--s-4); box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft);
}
.who .who-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 720px) {
  .who .who-photo { max-width: 100%; aspect-ratio: 16 / 9; }
  .feature-media, .feature-media img { min-height: 220px; }
}

/* ------------------------------------------------------------------- FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: var(--s-3); box-shadow: var(--shadow-sm);
  transition: border-color .15s ease;
}
.faq details[open] { border-color: #b9d7e6; }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: 18px 20px; font-weight: 600; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.35rem; font-weight: 500; color: var(--teal);
  line-height: 1; flex: 0 0 auto; transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 20px 18px; margin: 0; color: var(--muted); }
.faq details[open] p { animation: faq-open .3s ease; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------- Legal pages */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.25rem; margin-top: var(--s-6); }
.prose p, .prose ul li { color: var(--muted); }
.prose .updated { font-size: .9rem; color: var(--faint); }

/* ------------------------------------------------------------- Utilities */
.small { font-size: .95rem; }
.mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.btn-block { width: 100%; justify-content: center; }
.icon--center { margin-left: auto; margin-right: auto; }
.table-note { margin-top: var(--s-4); font-size: .9rem; text-align: center; color: var(--faint); }

/* Solutions page detail typography */
.solution strong { color: var(--navy); font-weight: 700; }
.who .role { font-size: .92rem; }

/* Contact form header */
.form-title { margin-bottom: var(--s-2); }
.form-note { margin-top: var(--s-4); font-size: .92rem; }

/* ----------------------------------------------------------------- Motion */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Hero entrance choreography (homepage) */
.hero-grid > div:first-child > * { animation: rise-in .65s cubic-bezier(.22, .65, .3, 1) both; }
.hero-grid > div:first-child > *:nth-child(1) { animation-delay: .05s; }
.hero-grid > div:first-child > *:nth-child(2) { animation-delay: .13s; }
.hero-grid > div:first-child > *:nth-child(3) { animation-delay: .21s; }
.hero-grid > div:first-child > *:nth-child(4) { animation-delay: .29s; }
.hero-grid > div:first-child > *:nth-child(5) { animation-delay: .37s; }
.hero-visual {
  animation:
    rise-in .75s .25s cubic-bezier(.22, .65, .3, 1) both,
    hero-float 10s ease-in-out 1.6s infinite;
}

/* Page-hero entrance (inner pages) */
.page-hero .eyebrow { animation: rise-in .6s .05s cubic-bezier(.22, .65, .3, 1) both; }
.page-hero h1      { animation: rise-in .65s .13s cubic-bezier(.22, .65, .3, 1) both; }
.page-hero .lead   { animation: rise-in .65s .21s cubic-bezier(.22, .65, .3, 1) both; }

/* Scroll-reveal: classes are applied by site.js, so content is never hidden
   without JavaScript. --reveal-delay staggers siblings within a group. */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, .65, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in-view { opacity: 1; transform: none; }

/* Hover micro-interaction on feature imagery */
.feature-media img { transition: transform .5s ease; }
.feature-media:hover img { transform: scale(1.03); }

/* --------------------------------------------------------- Accessibility */
html { scroll-padding-top: 90px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--s-4); top: -64px; z-index: 100;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 600; transition: top .15s ease;
}
.skip-link:focus { top: var(--s-3); color: #fff; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
