/*
Theme Name: JSR Vertex Blueprint
Theme URI: https://jsrvertex.com/
Author: JSR Vertex
Author URI: https://jsrvertex.com/
Description: A custom blue-and-white technology theme for JSR Vertex, inspired by the OperationHQ Business Process Audit design system.
Version: 2.2.0
Requires at least: 6.2
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: jsrvertex
*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --jsr-navy: #10265e;
  --jsr-deep: #173aab;
  --jsr-blue: #3155f5;
  --jsr-sky: #eaf0ff;
  --jsr-soft: #f6f9ff;
  --jsr-white: #ffffff;
  --jsr-text: #52617e;
  --jsr-line: #dce4f2;
  --jsr-green: #18a875;
  --jsr-cyan: #16b9e8;
  --jsr-violet: #7657ff;
  --jsr-coral: #ff6f61;
  --jsr-shadow: 0 22px 70px rgba(23, 58, 171, .12);
  --jsr-radius: 22px;
  --jsr-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--jsr-navy);
  background: var(--jsr-white);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--jsr-max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-soft { background: var(--jsr-soft); }
.section-dark {
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(92, 125, 255, .45), transparent 28%),
    linear-gradient(135deg, #10265e, #173aab 62%, #2737d8);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--jsr-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #b8c8ff; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section-title { max-width: 800px; margin: 14px 0 18px; font-size: clamp(34px, 4vw, 54px); font-weight: 600; line-height: 1.08; letter-spacing: -.035em; }
.section-copy { max-width: 720px; margin: 0; color: var(--jsr-text); font-size: 18px; line-height: 1.75; }
.section-dark .section-copy { color: #dce5ff; }
.section-dark .check-list li { color: #dce5ff; }
.section-dark .check-list li::before { color: white; background: rgba(255,255,255,.14); }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,228,242,.75);
  backdrop-filter: blur(18px);
}
.topbar { color: #dce5ff; background: var(--jsr-navy); font-size: 13px; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-list { display: flex; align-items: center; gap: 22px; }
.topbar a:hover { color: white; }
.navbar { min-height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand .custom-logo-link { display: inline-flex; align-items: center; }
.brand .custom-logo { width: auto; max-width: 190px; max-height: 48px; object-fit: contain; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  color: white; background: linear-gradient(145deg, var(--jsr-blue), var(--jsr-deep));
  border-radius: 13px; font-weight: 700; box-shadow: 0 10px 24px rgba(49,85,245,.24);
}
.brand-word { font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 30px; padding: 0; margin: 0; }
.main-nav a { color: #293858; font-size: 15px; font-weight: 500; transition: .2s ease; }
.main-nav a:hover, .main-nav .current-menu-item > a { color: var(--jsr-blue); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; border: 0; padding: 8px; color: var(--jsr-navy); background: transparent; cursor: pointer; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--jsr-blue), var(--jsr-deep)); box-shadow: 0 12px 30px rgba(49,85,245,.22); }
.btn-secondary { color: var(--jsr-blue); background: white; border-color: var(--jsr-line); }
.btn-white { color: var(--jsr-deep); background: white; box-shadow: 0 14px 30px rgba(2,11,42,.2); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--jsr-blue); font-weight: 700; }

.hero {
  min-height: 710px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 9% 14%, rgba(22,185,232,.14), transparent 23%),
    radial-gradient(circle at 82% 18%, rgba(118,87,255,.14), transparent 28%),
    linear-gradient(180deg, #fbfdff, #f4f7ff);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.hero h1 { max-width: 720px; margin: 18px 0 22px; font-size: clamp(48px, 6vw, 74px); font-weight: 600; line-height: 1.01; letter-spacing: -.055em; }
.hero h1 span { color: transparent; background: linear-gradient(100deg,var(--jsr-blue),var(--jsr-violet),var(--jsr-cyan)); -webkit-background-clip: text; background-clip: text; }
.hero-copy { max-width: 650px; margin: 0; color: var(--jsr-text); font-size: 19px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: #415172; font-size: 14px; font-weight: 600; }
.hero-proof span::before { content: "✓"; margin-right: 7px; color: var(--jsr-green); }
.hero-home { min-height: 0; padding: 86px 0 110px; }
.hero-home .hero-copy-wrap { max-width: 900px; margin: 0 auto 58px; text-align: center; }
.hero-home .hero-copy { max-width: 790px; margin-inline: auto; }
.hero-home .hero-actions, .hero-home .hero-proof { justify-content: center; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; padding: 9px 14px; color: #4c5c7a; background: rgba(255,255,255,.78); border: 1px solid #dbe4f5; border-radius: 999px; box-shadow: 0 8px 25px rgba(16,38,94,.06); font-size: 12px; font-weight: 500; letter-spacing: .04em; }
.hero-kicker i { width: 8px; height: 8px; background: linear-gradient(135deg,var(--jsr-blue),var(--jsr-cyan)); border-radius: 50%; box-shadow: 0 0 0 6px rgba(49,85,245,.09); }
.hero-home h1 { max-width: 980px; margin-inline: auto; font-size: clamp(50px,7vw,82px); }
.hero-showcase { position: relative; max-width: 1050px; margin: 0 auto; padding: 22px; background: rgba(255,255,255,.87); border: 1px solid white; border-radius: 30px; box-shadow: 0 40px 110px rgba(23,58,171,.18); backdrop-filter: blur(18px); }
.hero-showcase::before { content: ""; position: absolute; inset: -20px 8% auto; height: 100px; z-index: -1; background: rgba(49,85,245,.16); filter: blur(50px); border-radius: 50%; }
.showcase-toolbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 0 5px 18px; }
.showcase-brand { display: flex; align-items: center; gap: 10px; }
.showcase-brand span { width: 32px; height: 32px; display: grid; place-items: center; color: white; background: linear-gradient(135deg,var(--jsr-blue),var(--jsr-violet)); border-radius: 9px; font-size: 11px; font-weight: 600; }
.showcase-brand b { font-size: 13px; font-weight: 600; }
.showcase-tabs { display: flex; padding: 4px; background: #edf2fb; border: 1px solid #e0e7f3; border-radius: 999px; }
.showcase-tabs i { padding: 8px 13px; color: #71809d; border-radius: 999px; font-size: 11px; font-style: normal; font-weight: 500; }
.showcase-tabs i.active { color: var(--jsr-navy); background: white; box-shadow: 0 4px 12px rgba(16,38,94,.08); }
.showcase-live { justify-self: end; display: flex; align-items: center; gap: 7px; color: var(--jsr-green); font-size: 11px; font-weight: 500; }
.showcase-live i { width: 7px; height: 7px; background: #34d399; border-radius: 50%; animation: jsr-pulse 2s infinite; }
.showcase-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: 16px; }
.showcase-panel { padding: 22px; background: linear-gradient(145deg,#fff,#f8faff); border: 1px solid #dfe6f3; border-radius: 18px; }
.panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 16px; border-bottom: 1px solid #e7ecf5; }
.showcase-panel small { color: #7a89a5; font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.showcase-panel h3 { margin: 5px 0 0; font-size: 17px; font-weight: 600; }
.soft-pill { padding: 6px 9px; color: var(--jsr-blue); background: #eaf0ff; border-radius: 999px; font-size: 9px; white-space: nowrap; }
.work-row { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid #e8edf5; }
.work-row:last-child { border-bottom: 0; padding-bottom: 0; }
.work-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; font-size: 10px; font-weight: 600; }
.work-icon.blue { color: #2649d5; background: #e9efff; }.work-icon.violet { color: #6747d9; background: #f0ebff; }.work-icon.cyan { color: #087d9e; background: #e5f9ff; }
.work-row b { display: block; font-size: 13px; font-weight: 600; }
.work-row small { display: block; margin-top: 3px; color: #7b88a1; font-size: 11px; font-weight: 400; letter-spacing: 0; }
.work-row em { padding: 6px 9px; color: #3560c8; background: #edf3ff; border-radius: 999px; font-size: 9px; font-style: normal; white-space: nowrap; }
.signal-list { display: grid; gap: 9px; margin-top: 19px; }
.signal-list span { display: flex; align-items: center; gap: 9px; padding: 10px; color: #465675; background: white; border: 1px solid #e4eaf4; border-radius: 10px; font-size: 11px; }
.signal-list i { width: 7px; height: 7px; background: var(--jsr-green); border-radius: 50%; }
.mini-flow { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding: 12px; color: #5b6a87; background: #edf2ff; border-radius: 10px; }
.mini-flow b { font-size: 9px; font-weight: 600; }.mini-flow i { flex: 1; height: 1px; margin: 0 8px; background: #b9c8ed; }
.showcase-bottom { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; padding: 15px 18px; margin-top: 16px; background: #f6f9ff; border: 1px solid #e0e7f3; border-radius: 14px; }
.showcase-bottom > span { color: var(--jsr-blue); font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.showcase-bottom p { margin: 0; color: #677691; font-size: 11px; }
.showcase-bottom div { display: flex; gap: 7px; }.showcase-bottom b { padding: 5px 8px; color: #52617e; background: white; border: 1px solid #e1e7f1; border-radius: 999px; font-size: 8px; font-weight: 500; }
.showcase-float { position: absolute; min-width: 185px; padding: 14px 16px; background: white; border: 1px solid #e0e7f3; border-radius: 14px; box-shadow: 0 20px 45px rgba(16,38,94,.14); animation: jsr-drift 7s ease-in-out infinite; }
.showcase-float small { display: block; margin-bottom: 5px; color: var(--jsr-blue); font-size: 9px; font-weight: 600; letter-spacing: .07em; }
.showcase-float b { font-size: 11px; font-weight: 500; }
.showcase-float.float-left { left: -38px; bottom: 54px; }
.showcase-float.float-right { right: -38px; top: 110px; animation-delay: -2s; }
.dashboard-shell {
  position: relative;
  padding: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid white;
  border-radius: 30px;
  box-shadow: 0 35px 90px rgba(23,58,171,.18);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
  animation: jsr-float 6s ease-in-out infinite;
}
.dashboard {
  overflow: hidden;
  padding: 22px;
  background: white;
  border: 1px solid var(--jsr-line);
  border-radius: 20px;
}
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-dots { display: flex; gap: 6px; }
.dash-dots i { width: 8px; height: 8px; background: #cad5eb; border-radius: 50%; }
.dash-pill { padding: 7px 10px; color: var(--jsr-blue); background: var(--jsr-sky); border-radius: 8px; font-size: 11px; font-weight: 700; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.dash-stat { padding: 14px; background: #f7f9ff; border: 1px solid #e7ecf7; border-radius: 12px; }
.dash-stat b { display: block; font-size: 15px; font-weight: 600; }
.dash-stat small { color: #71809d; }
.dash-chart { height: 170px; display: flex; align-items: end; gap: 9px; padding: 22px 16px 0; margin-top: 14px; background: linear-gradient(180deg,#fff,#f7f9ff); border: 1px solid #e8edf7; border-radius: 14px; }
.dash-chart i { flex: 1; min-height: 18%; background: linear-gradient(180deg,#5f79ff,#3155f5); border-radius: 6px 6px 2px 2px; }
.dash-chart i:nth-child(2) { height: 45%; }.dash-chart i:nth-child(3) { height: 73%; }.dash-chart i:nth-child(4) { height: 56%; }.dash-chart i:nth-child(5) { height: 86%; }.dash-chart i:nth-child(6) { height: 68%; }.dash-chart i:nth-child(7) { height: 94%; }
.float-card {
  position: absolute; right: -28px; bottom: 48px; width: 190px; padding: 15px;
  background: white; border: 1px solid var(--jsr-line); border-radius: 14px; box-shadow: var(--jsr-shadow);
}
.float-card strong { display: block; font-size: 13px; }
.float-card span { color: var(--jsr-green); font-size: 12px; font-weight: 700; }

.hero-orb { position: absolute; border-radius: 999px; filter: blur(1px); pointer-events: none; }
.hero-orb.one { width: 190px; height: 190px; right: 4%; top: 16%; background: rgba(22,185,232,.08); animation: jsr-drift 9s ease-in-out infinite; }
.hero-orb.two { width: 120px; height: 120px; left: 43%; bottom: 8%; background: rgba(118,87,255,.09); animation: jsr-drift 7s ease-in-out infinite reverse; }
.trust-note { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: #687793; font-size: 13px; }
.trust-note i { width: 8px; height: 8px; background: var(--jsr-green); border-radius: 50%; box-shadow: 0 0 0 7px rgba(24,168,117,.11); animation: jsr-pulse 2s ease-out infinite; }

.logo-strip { padding: 26px 0; border-block: 1px solid var(--jsr-line); background: white; }
.logo-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; color: #687793; font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.tech-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.tech-list span { padding: 9px 12px; background: var(--jsr-soft); border: 1px solid #e8edf8; border-radius: 999px; font-weight: 500; }

.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.service-card {
  position: relative; min-height: 265px; padding: 28px;
  background: white; border: 1px solid var(--jsr-line); border-radius: var(--jsr-radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.service-card::before { content: ""; position: absolute; width: 150px; height: 150px; right: -80px; top: -80px; background: radial-gradient(circle,rgba(49,85,245,.16),transparent 68%); transition: .35s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #b9c9ff; box-shadow: var(--jsr-shadow); }
.service-card:hover::before { transform: scale(1.35); }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 22px; color: var(--jsr-blue); background: var(--jsr-sky); border-radius: 14px; font-size: 22px; font-weight: 700; }
.service-card h3 { margin: 0 0 11px; font-size: 21px; font-weight: 600; }
.service-card p { margin: 0 0 21px; color: var(--jsr-text); line-height: 1.65; }
.service-card .text-link { position: absolute; left: 28px; bottom: 25px; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 76px; }
.feature-panel { padding: 28px; background: white; border: 1px solid var(--jsr-line); border-radius: 26px; box-shadow: var(--jsr-shadow); }
.process-list { display: grid; gap: 12px; }
.process-item { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 13px; padding: 14px; background: #f8faff; border: 1px solid #e5ebf8; border-radius: 13px; }
.process-no { width: 38px; height: 38px; display: grid; place-items: center; color: white; background: var(--jsr-blue); border-radius: 10px; font-weight: 700; }
.process-item b { font-size: 14px; }
.process-item small { display: block; margin-top: 2px; color: #7886a1; }
.status { padding: 5px 8px; color: var(--jsr-green); background: #e8fbf4; border-radius: 999px; font-size: 10px; font-weight: 700; }
.check-list { list-style: none; display: grid; gap: 13px; padding: 0; margin: 27px 0 0; }
.check-list li { position: relative; padding-left: 31px; color: #3f4f6e; line-height: 1.55; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; display: grid; place-items: center; color: var(--jsr-blue); background: var(--jsr-sky); border-radius: 50%; font-size: 12px; font-weight: 700; }

.product-card {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 55px; align-items: center;
  padding: 56px; margin-top: 42px; color: white;
  background:
    radial-gradient(circle at 90% 0, rgba(22,185,232,.48), transparent 31%),
    radial-gradient(circle at 8% 100%, rgba(118,87,255,.5), transparent 32%),
    linear-gradient(135deg,#0c1d4d,#173aab 64%,#2737d8);
  border-radius: 30px; box-shadow: 0 30px 80px rgba(23,58,171,.23);
}
.product-logo { display: inline-flex; align-items: center; gap: 9px; font-size: 21px; font-weight: 700; }
.product-logo i { width: 34px; height: 34px; display: grid; place-items: center; color: var(--jsr-deep); background: white; border-radius: 10px; font-style: normal; }
.product-card h2 { margin: 18px 0; font-size: clamp(34px,4vw,52px); font-weight: 600; line-height: 1.08; }
.product-card p { color: #dce5ff; font-size: 17px; line-height: 1.7; }
.module-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.module-grid span { padding: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 11px; font-size: 13px; font-weight: 600; backdrop-filter: blur(8px); }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 48px; }
.step { position: relative; padding: 0 24px 28px 0; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 23px; right: 0; left: 55px; height: 1px; background: #cbd7ef; }
.step b { position: relative; z-index: 1; width: 46px; height: 46px; display: grid; place-items: center; color: white; background: var(--jsr-blue); border: 6px solid var(--jsr-soft); border-radius: 50%; }
.step h3 { margin: 17px 0 8px; font-size: 18px; }
.step p { margin: 0; color: var(--jsr-text); font-size: 14px; line-height: 1.6; }

.project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 42px; }
.project-card { overflow: hidden; background: white; border: 1px solid var(--jsr-line); border-radius: 20px; }
.project-art { height: 190px; padding: 20px; background: linear-gradient(145deg,#dfe7ff,#f8faff); }
.project-art.has-image { padding: 0; background: #eef3ff; }
.project-art.has-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform .45s ease; }
.project-card:hover .project-art.has-image img { transform: scale(1.035); }
.project-window { height: 100%; padding: 15px; background: white; border-radius: 13px; box-shadow: 0 15px 35px rgba(23,58,171,.12); }
.project-window::before { content: "•••"; display: block; color: #9bacce; letter-spacing: 4px; }
.project-bars { height: 108px; display: flex; align-items: end; gap: 7px; }
.project-bars i { flex: 1; height: 35%; background: #d8e0f4; border-radius: 5px 5px 0 0; }.project-bars i:nth-child(2){height:63%;background:#8ea3ff}.project-bars i:nth-child(3){height:84%;background:#3155f5}.project-bars i:nth-child(4){height:52%;background:#c2cdf0}.project-bars i:nth-child(5){height:74%;background:#5d78f9}
.project-body { padding: 23px; }
.project-body small { color: var(--jsr-blue); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.project-body h3 { margin: 8px 0; font-size: 20px; }
.project-body p { margin: 0; color: var(--jsr-text); line-height: 1.6; }

.page-hero { padding: 105px 0 86px; background: radial-gradient(circle at 12% 18%,rgba(22,185,232,.1),transparent 25%),radial-gradient(circle at 82% 10%,rgba(118,87,255,.13),transparent 28%),linear-gradient(180deg,#fbfdff,#f5f8ff); }
.breadcrumbs { display: flex; gap: 8px; align-items: center; color: #73819b; font-size: 14px; }
.breadcrumbs a { color: var(--jsr-blue); font-weight: 600; }
.page-hero h1 { max-width: 900px; margin: 20px 0; font-size: clamp(44px,6vw,68px); font-weight: 600; line-height: 1.04; letter-spacing: -.045em; }
.page-hero p { max-width: 760px; margin: 0; color: var(--jsr-text); font-size: 19px; line-height: 1.7; }
.capability-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 42px; }
.capability { padding: 24px; background: white; border: 1px solid var(--jsr-line); border-radius: 18px; }
.capability h3 { margin: 0 0 9px; font-size: 20px; font-weight: 600; }
.capability p { margin: 0; color: var(--jsr-text); line-height: 1.65; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.stat-card { padding: 25px; background: white; border: 1px solid var(--jsr-line); border-radius: 18px; }
.stat-card strong { display: block; color: var(--jsr-blue); font-size: 30px; }
.stat-card span { color: var(--jsr-text); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 15px; margin-top: 30px; }
.contact-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.contact-points span { padding: 8px 11px; color: #4d5e7c; background: white; border: 1px solid #dfe6f3; border-radius: 999px; font-size: 11px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: white; border: 1px solid var(--jsr-line); border-radius: 15px; transition: .25s ease; }
.contact-item:hover { transform: translateX(4px); border-color: #b9c8ee; box-shadow: 0 14px 35px rgba(23,58,171,.07); }
.contact-item i { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; color: var(--jsr-blue); background: #ebf1ff; border-radius: 10px; font-style: normal; }
.contact-item small { display: block; margin-bottom: 5px; color: #7b89a3; }
.contact-item strong { font-size: 16px; }
.contact-form { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 34px; background: white; border: 1px solid var(--jsr-line); border-radius: 26px; box-shadow: 0 30px 90px rgba(23,58,171,.13); }
.contact-form::before { content: ""; position: absolute; width: 230px; height: 230px; right: -120px; top: -130px; background: radial-gradient(circle,rgba(49,85,245,.15),transparent 68%); }
.form-head { position: relative; padding-bottom: 20px; margin-bottom: 3px; border-bottom: 1px solid #e7ecf5; }
.form-head span { color: var(--jsr-blue); font-size: 10px; font-weight: 600; letter-spacing: .09em; }
.form-head h3 { margin: 7px 0 5px; font-size: 23px; font-weight: 600; }.form-head p { margin: 0; color: #71809a; font-size: 13px; }
.contact-form label { color: #384866; font-size: 13px; font-weight: 700; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 7px; padding: 13px 14px; color: var(--jsr-navy); background: #fbfcff; border: 1px solid #d8e1f0; border-radius: 10px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--jsr-blue); box-shadow: 0 0 0 3px rgba(49,85,245,.1); }
.contact-form .full { grid-column: 1/-1; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.form-note { color: var(--jsr-text); font-size: 13px; }
.form-alert { grid-column: 1/-1; padding: 12px 14px; border-radius: 10px; font-size: 14px; }
.form-alert.success { color: #126549; background: #e9faf3; border: 1px solid #bcebd8; }
.form-alert.error { color: #9f1c16; background: #fff2f0; border: 1px solid #ffd2cf; }
.hp-field { position: absolute !important; left: -9999px !important; }

.cta-band { padding: 78px 0; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 50px; color: white; background: linear-gradient(135deg,#173aab,#2737d8); border-radius: 26px; box-shadow: 0 30px 70px rgba(23,58,171,.24); }
.cta-box h2 { max-width: 680px; margin: 0; font-size: clamp(30px,4vw,46px); line-height: 1.08; }
.cta-box p { max-width: 650px; margin: 12px 0 0; color: #dce5ff; }

.site-footer { color: #cfd9f2; background: #0b1940; }
.footer-product { position: relative; top: -1px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-product-label { color: #8fa5de; font-size: 9px; font-weight: 600; letter-spacing: .1em; }
.footer-product h3 { display: inline-block; margin: 5px 13px 0 0; color: white; font-size: 20px; font-weight: 600; }.footer-product p { display: inline; color: #9faed0; font-size: 13px; }
.footer-product a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 11px 14px; color: white; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; font-size: 12px; }
.footer-main { display: grid; grid-template-columns: 1.5fr .75fr .85fr 1fr; gap: 50px; padding: 75px 0 54px; }
.footer-brand p { max-width: 360px; color: #9faed0; line-height: 1.7; }
.footer-status { display: flex; align-items: center; gap: 9px; margin-top: 20px; color: #aebcda; font-size: 12px; }.footer-status i { width: 7px; height: 7px; background: #34d399; border-radius: 50%; animation: jsr-pulse 2s infinite; }
.footer-title { margin: 5px 0 20px; color: white; font-size: 15px; }
.footer-links { list-style: none; display: grid; gap: 11px; padding: 0; margin: 0; color: #aebcda; font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-capabilities { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 24px; }.footer-capabilities span { padding: 7px 10px; color: #8999bd; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07); border-radius: 999px; font-size: 10px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.09); color: #8f9fc3; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

.marquee-wrap { overflow: hidden; padding: 20px 0; border-block: 1px solid var(--jsr-line); background: white; }
.marquee-track { width: max-content; display: flex; gap: 12px; animation: jsr-marquee 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.tool-chip { display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; color: #43516d; background: #f8faff; border: 1px solid #e2e8f5; border-radius: 999px; white-space: nowrap; font-size: 13px; font-weight: 500; }
.tool-chip i { width: 9px; height: 9px; background: linear-gradient(135deg,var(--jsr-blue),var(--jsr-cyan)); border-radius: 3px; transform: rotate(45deg); }

.automation-stage { position: relative; min-height: 475px; padding: 28px; color: #e5ebff; background: linear-gradient(155deg,#09183d,#0d245d); border: 1px solid rgba(255,255,255,.08); border-radius: 28px; box-shadow: 0 35px 80px rgba(8,26,73,.24); }
.automation-stage::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background-image: radial-gradient(rgba(128,154,255,.18) 1px,transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(to bottom,#000,transparent); }
.stage-head { position: relative; display: flex; justify-content: space-between; gap: 12px; color: #93a9e6; font-size: 12px; }
.stage-live { display: inline-flex; align-items: center; gap: 7px; color: #6ee7b7; }
.stage-live::before { content: ""; width: 7px; height: 7px; background: #34d399; border-radius: 50%; animation: jsr-pulse 2s infinite; }
.flow-stack { position: relative; z-index: 1; display: grid; gap: 14px; margin-top: 28px; }
.flow-node { position: relative; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 13px; padding: 15px; background: rgba(255,255,255,.055); border: 1px solid rgba(144,167,234,.2); border-radius: 14px; backdrop-filter: blur(8px); animation: jsr-node 5s ease-in-out infinite; }
.flow-node:nth-child(2){animation-delay:.7s}.flow-node:nth-child(3){animation-delay:1.4s}.flow-node:nth-child(4){animation-delay:2.1s}
.flow-node:not(:last-child)::after { content: ""; position: absolute; width: 1px; height: 15px; left: 35px; bottom: -15px; background: #3653a8; }
.flow-icon { width: 42px; height: 42px; display: grid; place-items: center; color: #c7d3ff; background: rgba(49,85,245,.2); border-radius: 11px; }
.flow-node b { display: block; color: white; font-size: 14px; font-weight: 600; }
.flow-node small { color: #91a1c9; }
.flow-state { color: #6ee7b7; font-size: 11px; }
.stage-foot { position: relative; display: flex; gap: 18px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: #91a1c9; font-size: 11px; }

.detail-band { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.detail-card { padding: 24px; background: linear-gradient(145deg,#fff,#f8faff); border: 1px solid var(--jsr-line); border-radius: 18px; }
.detail-card span { display: inline-block; margin-bottom: 15px; color: var(--jsr-blue); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.detail-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 600; }
.detail-card p { margin: 0; color: var(--jsr-text); line-height: 1.65; }

.integration-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 40px; }
.integration-card { min-height: 155px; padding: 20px; background: white; border: 1px solid var(--jsr-line); border-radius: 16px; transition: .25s ease; }
.integration-card:hover { transform: translateY(-4px); border-color: #b8c8ff; box-shadow: 0 18px 45px rgba(23,58,171,.09); }
.integration-card b { display: block; margin-bottom: 7px; font-size: 16px; font-weight: 600; }
.integration-card small { color: var(--jsr-text); line-height: 1.5; }

.founder-section { background: linear-gradient(180deg,#fff,#f6f9ff); }
.founder-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 82px; }
.founder-visual { position: relative; max-width: 470px; padding: 18px; }
.founder-photo { aspect-ratio: .82; overflow: hidden; background: linear-gradient(145deg,#dfe7ff,#f8faff); border: 1px solid #d9e2f3; border-radius: 28px; box-shadow: 0 30px 80px rgba(23,58,171,.15); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-fallback { height: 100%; display: grid; place-items: center; align-content: center; gap: 13px; text-align: center; background: radial-gradient(circle at 50% 18%,rgba(49,85,245,.17),transparent 36%),linear-gradient(145deg,#eef3ff,#fbfcff); }
.founder-fallback span { width: 120px; height: 120px; display: grid; place-items: center; color: white; background: linear-gradient(135deg,var(--jsr-blue),var(--jsr-violet)); border-radius: 34px; font-size: 38px; font-weight: 500; box-shadow: 0 20px 45px rgba(49,85,245,.22); }
.founder-fallback small { color: #71809d; line-height: 1.5; }
.founder-name-card { position: absolute; right: -26px; bottom: 48px; min-width: 260px; padding: 17px 19px; background: rgba(255,255,255,.94); border: 1px solid #dfe6f3; border-radius: 15px; box-shadow: 0 20px 55px rgba(16,38,94,.14); backdrop-filter: blur(14px); }
.founder-name-card b { display: block; font-size: 15px; font-weight: 600; }.founder-name-card span { display: block; margin-top: 4px; color: #6a7894; font-size: 11px; }
.founder-accent { position: absolute; top: 58px; left: -32px; padding: 13px 15px; color: #dde6ff; background: #10265e; border-radius: 13px; box-shadow: 0 16px 40px rgba(16,38,94,.2); font-size: 10px; line-height: 1.5; letter-spacing: .02em; }
.founder-copy { max-width: 720px; margin: 21px 0 0; color: var(--jsr-text); font-size: 17px; line-height: 1.75; }
.founder-quote { margin: 27px 0 0; padding: 20px 22px; color: #283c75; background: #eef3ff; border: 1px solid #dce5fb; border-left: 4px solid var(--jsr-blue); border-radius: 0 14px 14px 0; font-size: 17px; line-height: 1.6; }

.automation-services { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 42px; }
.automation-service { position: relative; overflow: hidden; min-height: 240px; padding: 26px; background: white; border: 1px solid var(--jsr-line); border-radius: 20px; }
.automation-service::after { content: ""; position: absolute; width: 110px; height: 110px; right: -55px; bottom: -55px; background: linear-gradient(135deg,rgba(49,85,245,.15),rgba(22,185,232,.12)); border-radius: 50%; }
.automation-service em { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 20px; color: white; background: linear-gradient(135deg,var(--jsr-blue),var(--jsr-violet)); border-radius: 12px; font-style: normal; }
.automation-service h3 { margin: 0 0 9px; font-size: 20px; font-weight: 600; }
.automation-service p { margin: 0; color: var(--jsr-text); line-height: 1.65; }

@keyframes jsr-float { 0%,100%{transform:perspective(1100px) rotateY(-3deg) rotateX(1deg) translateY(0)}50%{transform:perspective(1100px) rotateY(-2deg) rotateX(1deg) translateY(-10px)} }
@keyframes jsr-drift { 0%,100%{transform:translate3d(0,0,0)}50%{transform:translate3d(18px,-16px,0)} }
@keyframes jsr-pulse { 0%{box-shadow:0 0 0 0 rgba(52,211,153,.38)}70%{box-shadow:0 0 0 9px rgba(52,211,153,0)}100%{box-shadow:0 0 0 0 rgba(52,211,153,0)} }
@keyframes jsr-marquee { to{transform:translateX(-50%)} }
@keyframes jsr-node { 0%,100%{border-color:rgba(144,167,234,.2)}50%{border-color:rgba(93,120,255,.55);box-shadow:0 0 25px rgba(49,85,245,.11)} }

@media (max-width: 1020px) {
  .topbar { display: none; }
  .navbar { min-height: 70px; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-actions .btn { display: none; }
  .main-nav { position: fixed; inset: 70px 0 0; display: none; padding: 28px 20px; background: white; }
  .menu-open .main-nav { display: block; }
  .main-nav ul { align-items: stretch; flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--jsr-line); font-size: 17px; }
  .hero-grid, .split, .product-card, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0; }
  .hero-home { padding: 75px 0 95px; }
  .showcase-toolbar { grid-template-columns: 1fr auto; }
  .showcase-tabs { display: none; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-float { display: none; }
  .dashboard-shell { max-width: 650px; transform: none; }
  .card-grid, .project-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .step:nth-child(2)::after { display: none; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .integration-grid { grid-template-columns: repeat(2,1fr); }
  .automation-services, .detail-band { grid-template-columns: repeat(2,1fr); }
  .founder-grid { grid-template-columns: 1fr; }
  .footer-main > :last-child { grid-column: 1/-1; }
  .footer-product { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--jsr-max)); }
  .section { padding: 72px 0; }
  .hero { min-height: auto; padding: 75px 0 65px; }
  .hero-home { padding: 62px 0 76px; }
  .hero h1 { font-size: 46px; }
  .hero-copy, .page-hero p, .section-copy { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; gap: 10px; }
  .hero-showcase { padding: 12px; border-radius: 20px; }
  .showcase-toolbar { grid-template-columns: 1fr; }
  .showcase-live { justify-self: start; }
  .showcase-bottom { grid-template-columns: 1fr; }
  .showcase-bottom div { flex-wrap: wrap; }
  .work-row { grid-template-columns: 38px 1fr; }
  .work-row em { grid-column: 2; justify-self: start; }
  .dashboard-shell { padding: 9px; border-radius: 20px; }
  .dashboard { padding: 14px; }
  .float-card { right: 10px; bottom: -20px; }
  .logo-strip-inner { align-items: flex-start; flex-direction: column; }
  .tech-list { justify-content: flex-start; }
  .card-grid, .project-grid, .capability-grid, .stat-row, .steps { grid-template-columns: 1fr; }
  .integration-grid, .automation-services, .detail-band { grid-template-columns: 1fr; }
  .founder-visual { padding: 8px; }
  .founder-name-card { right: 0; bottom: 26px; min-width: 230px; }
  .founder-accent { display: none; }
  .step::after { display: none; }
  .product-card { padding: 30px 23px; }
  .module-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 75px 0 62px; }
  .page-hero h1 { font-size: 44px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .contact-form .full { grid-column: auto; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .cta-box { align-items: flex-start; flex-direction: column; padding: 32px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding-top: 58px; }
  .footer-main > :last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
