:root {
  --ink: #12263a;
  --ink-2: #183047;
  --muted: #5f7182;
  --line: rgba(24, 48, 71, 0.14);
  --soft: #f7f9fb;
  --white: #ffffff;
  --blue-soft: #dfeaf1;
  --accent: #7594a8;
  --shadow: 0 24px 70px rgba(18, 38, 58, 0.12);
  --radius: 28px;
}

* { 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(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(117,148,168,0.20), transparent 34rem),
    radial-gradient(circle at 92% 42%, rgba(223,234,241,0.75), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--soft) 52%, #ffffff 100%);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink-2);
  color: white;
  padding: .75rem 1rem;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(18, 38, 58, 0.08);
}
.brand img { width: 188px; height: 64px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 1.8rem; color: var(--muted); font-weight: 650; font-size: .94rem; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--ink); }
.menu-button { display: none; }

main { overflow: hidden; }
.section, .section-grid {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.section { padding: 84px 0; }
.section-grid {
  padding: 96px 0 72px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 64px;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  color: #0d1f30;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: .92;
  letter-spacing: -0.07em;
}
h2 {
  margin-bottom: 1rem;
  color: #0d1f30;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: .96;
  letter-spacing: -0.055em;
}
h3 { margin-bottom: .6rem; font-size: 1.12rem; letter-spacing: -0.02em; }
.lead, .section-heading p, .section-text, .cta-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.lead { max-width: 680px; }

.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 1.35rem;
  font-weight: 780;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink-2); color: white; box-shadow: 0 14px 28px rgba(24,48,71,.18); }
.button-primary:hover { background: #0f2335; }
.button-secondary { background: rgba(255,255,255,.72); border: 1px solid var(--line); color: var(--ink-2); }

.trust-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.trust-row span {
  border: 1px solid rgba(24,48,71,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  padding: .65rem .9rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 650;
}

.hero-visual { position: relative; min-height: 560px; }
.visual-card {
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.logo-card {
  position: relative;
  z-index: 2;
  border-radius: 42px;
  padding: 1.25rem;
}
.logo-card img { aspect-ratio: 4 / 3; object-fit: contain; }
.logo-card img { width: 100%; }
.dashboard-card {
  position: absolute;
  right: 16px;
  bottom: 30px;
  z-index: 3;
  width: min(430px, 88%);
  border-radius: 32px;
  padding: 1.25rem;
}
.dashboard-card::before {
  content: "";
  position: absolute;
  inset: auto 24px -38px 24px;
  height: 70px;
  background: radial-gradient(ellipse, rgba(24,48,71,.18), transparent 65%);
  filter: blur(14px);
  z-index: -1;
}
.dashboard-topline { display: flex; align-items: center; gap: .65rem; color: var(--muted); font-weight: 700; }
.dashboard-topline strong { margin-left: auto; color: var(--ink); }
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: #34a853; box-shadow: 0 0 0 6px rgba(52,168,83,.12); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1rem; }
.metric-grid div { border-radius: 18px; background: rgba(247,249,251,.88); padding: .9rem; }
.metric-grid span { display: block; color: var(--muted); font-size: .78rem; font-weight: 700; }
.metric-grid strong { display: block; margin-top: .25rem; color: var(--ink); font-size: 1.3rem; }
.signal-lines { display: grid; gap: .55rem; margin-top: 1.1rem; }
.signal-lines span { height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--ink-2), rgba(117,148,168,.26)); }
.signal-lines span:nth-child(2) { width: 72%; }
.signal-lines span:nth-child(3) { width: 54%; }
.signal-lines span:nth-child(4) { width: 82%; }

.section-heading { max-width: 760px; margin-bottom: 2.3rem; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.solution-card {
  min-height: 260px;
  border: 1px solid rgba(24,48,71,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  padding: 1.4rem;
  box-shadow: 0 14px 38px rgba(18,38,58,.06);
}
.solution-card p { margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 1.4rem; border-radius: 18px; background: #eef4f8; color: var(--ink-2); }
.icon svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.process-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3rem;
  border: 1px solid rgba(24,48,71,.11);
  border-radius: 44px;
  background: #10283d;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  color: white;
  box-shadow: var(--shadow);
}
.process-panel h2 { color: white; }
.process-panel .eyebrow { color: #9db7c8; }
.timeline { list-style: none; display: grid; gap: 1rem; margin: 0; padding: 0; }
.timeline li { display: grid; grid-template-columns: 64px 1fr; gap: 1rem; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.06); padding: 1rem; }
.timeline li > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); color: #cfe1eb; font-weight: 800; }
.timeline h3 { color: white; }
.timeline p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.6; }

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: start; }
.benefit-list { display: grid; gap: 1rem; }
.benefit-list div { border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.76); padding: 1.25rem; }
.benefit-list strong { display: block; margin-bottom: .4rem; }
.benefit-list span { color: var(--muted); line-height: 1.65; }

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  background: linear-gradient(135deg, #ffffff, #e9f1f6);
  padding: clamp(2rem, 5vw, 4.2rem);
  box-shadow: var(--shadow);
}
.cta-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(24,48,71,.08);
}
.cta-card > * { position: relative; z-index: 1; max-width: 760px; }

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  color: var(--muted);
}
.site-footer img { width: 196px; height: 72px; object-fit: contain; object-position: left center; margin-bottom: .5rem; }
.site-footer p { margin-bottom: 0; line-height: 1.6; }
.fine-print { max-width: 440px; font-size: .88rem; text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 920px) {
  .section-grid { grid-template-columns: 1fr; gap: 38px; padding-top: 72px; }
  .hero-visual { min-height: auto; }
  .dashboard-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 1rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-panel, .split-section { grid-template-columns: 1fr; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    border: 1px solid rgba(24,48,71,.1);
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    padding: .8rem;
    box-shadow: 0 18px 48px rgba(18,38,58,.12);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .9rem 1rem; border-radius: 18px; }
  .site-nav a:hover { background: #f2f6f9; }
  .menu-button {
    display: grid;
    place-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--ink-2);
    cursor: pointer;
  }
  .menu-button span:not(.sr-only) { width: 18px; height: 2px; border-radius: 99px; background: #fff; }
  .site-footer { flex-direction: column; }
  .fine-print { text-align: left; }
}

@media (max-width: 620px) {
  .site-header { top: 10px; width: min(100% - 20px, 1180px); }
  .brand img { width: 154px; }
  .section { padding: 62px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; }
  .metric-grid { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .button { width: 100%; }
  .timeline li { grid-template-columns: 1fr; }
}
