
:root {
  --navy: #1a2744;
  --navy-deep: #101a30;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eaf1ff;
  --teal: #0f766e;
  --teal-soft: #e4f6f3;
  --ink: #24324d;
  --slate: #64748b;
  --muted: #7b889d;
  --line: #dfe7f2;
  --bg: #f7fafd;
  --panel: #ffffff;
  --shadow: 0 20px 46px rgba(26,39,68,.12);
  --shadow-soft: 0 12px 28px rgba(26,39,68,.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 92% 4%, rgba(37,99,235,.12), transparent 28rem),
    radial-gradient(circle at 6% 44%, rgba(15,118,110,.08), transparent 25rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--max)); margin: auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(223,231,242,.88);
  background: rgba(247,250,253,.9);
  backdrop-filter: blur(18px);
}
.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 10px 20px rgba(37,99,235,.2);
  font-size: 14px;
}
.brand-copy strong {
  display: block;
  font-size: 15px;
}
.brand-copy span {
  display: block;
  color: var(--slate);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #4d5c74;
  font-size: 14px;
  font-weight: 760;
}
.nav-links a:hover { color: var(--blue); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 10px 24px rgba(37,99,235,.24);
}
.button-secondary {
  color: var(--navy);
  background: white;
  border-color: #ccd8e8;
}
.button-secondary:hover { border-color: var(--blue); color: var(--blue); }

.hero {
  padding: 88px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
h1, h2 { letter-spacing: -.065em; }
h1 {
  max-width: 760px;
  margin: 19px 0 22px;
  font-size: clamp(3.35rem, 6.3vw, 6.05rem);
  line-height: .97;
}
h1 span { color: var(--blue); }
.hero-copy {
  max-width: 710px;
  margin: 0 0 27px;
  color: #56657b;
  font-size: 1.16rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 30px;
  color: #65748a;
  font-size: 13px;
  font-weight: 760;
}
.proof span { display: inline-flex; align-items: center; gap: 7px; }
.proof i,
.check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--teal);
  background: #e3f6f2;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 265px;
  height: 265px;
  border-radius: 50%;
  background: rgba(37,99,235,.1);
}
.window-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef2f7;
}
.window-dot { width: 9px; height: 9px; border-radius: 50%; background: #d7e0eb; }
.window-dot:nth-child(1) { background: #f59e0b; }
.window-dot:nth-child(2) { background: #22c55e; }
.window-dot:nth-child(3) { background: #60a5fa; }
.window-title { margin-left: 8px; color: #66758b; font-size: 12px; font-weight: 850; }
.workflow-list {
  position: relative;
  display: grid;
  gap: 10px;
  padding-top: 15px;
}
.workflow-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 13px;
  border: 1px solid #e6edf6;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
}
.workflow-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 900;
}
.workflow-row:nth-child(even) .workflow-icon {
  color: var(--teal);
  background: var(--teal-soft);
}
.workflow-row strong { display: block; margin-bottom: 2px; font-size: .95rem; }
.workflow-row p { margin: 0; color: #6a788c; font-size: .88rem; }

.trust { padding-bottom: 40px; }
.trust-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}
.trust-box strong { font-size: 14px; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  color: #647289;
  font-size: 13px;
  font-weight: 780;
}

.section { padding: 68px 0; }
.section-alt {
  border-top: 1px solid #e8eff6;
  border-bottom: 1px solid #e8eff6;
  background: white;
}
.section-head { max-width: 820px; margin-bottom: 34px; }
.kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h2 {
  margin: 10px 0 13px;
  font-size: clamp(2.25rem,4.6vw,3.65rem);
  line-height: 1.04;
}
.section-head p,
.section-copy {
  margin: 0;
  color: #647389;
  font-size: 1.05rem;
}
.grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.card {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-content: start;
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  transition: .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: #c2d1e5;
  box-shadow: var(--shadow-soft);
}
.card-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 900;
}
.card:nth-child(even) .card-icon {
  color: var(--teal);
  background: var(--teal-soft);
}
.card h3 { margin: 1px 0 7px; font-size: 1.05rem; }
.card p { margin: 0; color: #69788d; font-size: .93rem; }

.split-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: center;
}
.stack { display: grid; gap: 12px; }
.stack-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}
.stack-item strong { display: block; margin-bottom: 2px; font-size: .95rem; }
.stack-item p { margin: 0; color: #69788d; font-size: .9rem; }

.project-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.project-visual {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  color: white;
  background:
    radial-gradient(circle at 86% 10%, rgba(37,99,235,.34), transparent 14rem),
    linear-gradient(145deg, #14233f, var(--navy));
}
.project-visual strong {
  font-size: 3.75rem;
  letter-spacing: -.07em;
}
.project-visual span {
  color: #c7d3e6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 28px 28px 0;
}
.project-copy h3 { margin: 0 0 10px; font-size: 2rem; letter-spacing: -.055em; }
.project-copy p { margin: 0 0 17px; color: #647389; }
.project-list { display: grid; gap: 9px; margin: 0 0 21px; padding: 0; list-style: none; }
.project-list li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; color: #5f6e83; font-size: .92rem; }
.project-list i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-soft);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}
.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}
.text-link:hover { text-decoration: underline; }

.cta { padding: 68px 0; }
.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 37px;
  border-radius: 23px;
  color: white;
  background: linear-gradient(135deg,#14233f,var(--navy));
  box-shadow: var(--shadow);
}
.cta-box h2 { margin: 0 0 8px; font-size: clamp(2.15rem,4vw,3.25rem); }
.cta-box p { max-width: 710px; margin: 0; color: #becbe0; }
.cta-box .button-primary {
  color: var(--navy);
  background: white;
  box-shadow: none;
}

footer { padding: 24px 0 40px; color: #738198; font-size: 13px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a:hover { color: var(--blue); }

.page-hero {
  padding: 78px 0 54px;
}
.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3.15rem, 6vw, 5.7rem);
}
.page-hero .hero-copy { max-width: 850px; }

@media (max-width: 930px) {
  .hero-grid,
  .split-grid,
  .project-card { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2,1fr); }
  .project-copy { padding: 0 24px 26px; }
  .project-visual { min-height: 240px; }
  .nav-links a:not(.button) { display: none; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .nav-inner { min-height: 68px; }
  .brand-mark { width: 37px; height: 37px; border-radius: 11px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy span { font-size: 9px; }
  .nav-links { gap: 0; }
  .nav-links .button { padding: 10px 13px; font-size: 13px; }
  .hero { padding: 58px 0 45px; }
  h1 { font-size: 3.35rem; }
  .trust { padding-bottom: 28px; }
  .section,
  .cta { padding: 50px 0; }
  .grid { grid-template-columns: 1fr; }
  .card { min-height: auto; padding: 17px; }
  .project-visual strong { font-size: 3rem; }
  .cta-box { padding: 28px; }
  .page-hero { padding: 54px 0 38px; }
}
