:root {
  --blue: #7992f5;
  --blue-dark: #5972dc;
  --navy: #0b1b5b;
  --navy-2: #111f50;
  --ink: #111832;
  --muted: #5d6578;
  --line: #e4e8f3;
  --soft: #f4f6fc;
  --white: #fff;
  --shadow: 0 24px 60px rgba(11, 27, 91, 0.13);
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  border-bottom: 1px solid rgba(11, 27, 91, .08);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}
[data-site-header] {
  position: sticky;
  z-index: 100;
  top: 0;
  display: block;
}
[data-site-header] .site-header {
  position: relative;
  top: auto;
}
.nav-shell {
  width: var(--shell);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}
.brand img { width: 132px; }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a {
  position: relative;
  color: #30384c;
  font-size: 15px;
  font-weight: 500;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { color: #fff; background: var(--navy); box-shadow: 0 8px 20px rgba(11,27,91,.17); }
.nav-login { min-height: 44px; margin-left: 28px; }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 30px rgba(89,114,220,.28);
}
.button-primary:hover { box-shadow: 0 18px 36px rgba(89,114,220,.38); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  padding: 106px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(121,146,245,.14), transparent 26%),
    linear-gradient(180deg, #fbfcff 0%, #f5f7fd 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(11,27,91,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(11,27,91,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 72px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow span { width: 24px; height: 2px; border-radius: 2px; background: var(--blue); }
.hero h1 {
  max-width: 610px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.03;
  letter-spacing: -.055em;
}
.hero h1 em, .outcomes-title em {
  color: var(--blue-dark);
  font-family: Ubuntu, Inter, sans-serif;
  font-weight: 500;
}
.hero-copy > p {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.text-link { color: var(--navy); font-size: 15px; font-weight: 600; }
.text-link span { margin-left: 5px; color: var(--blue-dark); }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 38px; }
.trust-row span { display: flex; align-items: center; gap: 8px; color: #697185; font-size: 14px; font-weight: 600; }
.trust-row span::before { content: "✓"; color: var(--blue-dark); }

.hero-product { position: relative; min-height: 480px; }
.product-halo { position: absolute; inset: 3% 8% 5%; border-radius: 50%; background: rgba(121,146,245,.22); filter: blur(65px); }
.dashboard-frame {
  position: absolute;
  top: 24px;
  right: 0;
  width: 94%;
  overflow: hidden;
  border: 1px solid rgba(11,27,91,.13);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.browser-bar { height: 42px; display: flex; align-items: center; gap: 6px; padding: 0 15px; border-bottom: 1px solid var(--line); }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d7dbea; }
.browser-bar b { margin-left: auto; color: #81889a; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.dashboard-frame > img { width: 100%; aspect-ratio: 1.335; object-fit: cover; object-position: center top; }
.phone-frame {
  position: absolute;
  right: -18px;
  bottom: -10px;
  width: 156px;
  height: 320px;
  padding: 11px 8px;
  overflow: hidden;
  border: 7px solid #111a36;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 26px 54px rgba(11,27,91,.24);
}
.phone-frame img { width: 100%; height: 100%; border-radius: 20px; object-fit: cover; }
.phone-speaker { position: absolute; z-index: 2; top: 11px; left: 50%; width: 54px; height: 13px; border-radius: 0 0 10px 10px; background: #111a36; transform: translateX(-50%); }
.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 15px 18px;
  border: 1px solid rgba(11,27,91,.1);
  border-radius: 13px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(11,27,91,.13);
}
.floating-card b { font-size: 12px; }
.floating-card span { color: #71798a; font-size: 10px; }
.floating-card-one { bottom: 34px; left: -28px; }
.floating-card-one i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #63bd91; }
.floating-card-two { top: -12px; right: 7%; }

.section { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .challenge h2, .outcomes-title, .cta-card h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -.045em;
}
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-7px); border-color: rgba(121,146,245,.38); box-shadow: 0 22px 45px rgba(11,27,91,.1); }
.feature-number { color: #a5abba; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.feature-icon {
  width: 54px;
  height: 54px;
  margin-top: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #edf0fd;
  font-size: 25px;
}
.feature-card:first-child .feature-icon {
  font-size: 34px;
  font-weight: 600;
}
.feature-card h3 { margin: 26px 0 12px; font-size: 21px; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.feature-card-accent { color: #fff; border-color: var(--navy); background: var(--navy); }
.feature-card-accent .feature-number, .feature-card-accent p { color: rgba(255,255,255,.68); }
.feature-card-accent .feature-icon { color: #fff; background: rgba(255,255,255,.12); }

.home-care-section { padding: 40px 0 112px; background: #fff; }
.home-care-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 82px;
  align-items: center;
}
.home-care-image {
  position: relative;
  min-height: 510px;
}
.home-care-image > img {
  width: 100%;
  height: 510px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}
.home-care-badge {
  position: absolute;
  right: -24px;
  bottom: 30px;
  padding: 17px 21px;
  border: 1px solid rgba(11,27,91,.1);
  border-radius: 13px;
  color: var(--navy);
  background: rgba(255,255,255,.95);
  box-shadow: 0 16px 38px rgba(11,27,91,.16);
  font-size: 13px;
  font-weight: 600;
}
.home-care-badge span { margin-right: 7px; color: var(--blue-dark); }
.home-care-copy h2 {
  margin: 0;
  font-size: clamp(38px,4vw,54px);
  line-height: 1.1;
  letter-spacing: -.045em;
}
.home-care-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.home-care-copy ul {
  margin: 28px 0 30px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}
.home-care-copy li {
  position: relative;
  padding-left: 28px;
  color: #4f586c;
  font-size: 15px;
  line-height: 1.55;
}
.home-care-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.challenge { padding: 112px 0; color: #fff; background: var(--navy); }
.challenge-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.eyebrow-light { color: rgba(255,255,255,.72); }
.challenge-copy > p { max-width: 460px; margin: 24px 0 34px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.7; }
.button-light { color: var(--navy); background: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stats-grid article { min-height: 260px; padding: 40px 28px; border-left: 1px solid rgba(255,255,255,.14); }
.stats-grid strong { display: block; color: #fff; font-size: 64px; line-height: 1; letter-spacing: -.06em; }
.stats-grid strong span { color: var(--blue); font-size: 28px; }
.stats-grid p { margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.65; }

.outcomes { text-align: center; background: var(--soft); }
.section-kicker { margin-bottom: 18px; color: var(--blue-dark); font-family: Ubuntu, Inter, sans-serif; font-size: 18px; font-style: italic; font-weight: 500; }
.outcomes-title { max-width: 780px; margin-inline: auto; }
.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 20px 50px rgba(11,27,91,.07); }
.outcomes-grid article { min-height: 250px; padding: 34px 28px; text-align: left; border-right: 1px solid var(--line); }
.outcomes-grid article:last-child { border-right: 0; }
.outcome-icon {
  width: 58px;
  height: 58px;
  margin: 24px 0;
  border: 1px solid rgba(121,146,245,.2);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f4f6ff, #e9edfd);
  box-shadow: 0 10px 24px rgba(11,27,91,.08);
}
.outcome-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.outcome-mark { color: var(--blue-dark); font-size: 11px; font-weight: 700; }
.outcomes-grid h3 { margin: 0 0 12px; font-size: 21px; letter-spacing: -.02em; }
.outcomes-grid p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.team-section { background: #fff; }
.team-heading h2 em {
  color: var(--blue-dark);
  font-family: Ubuntu, Inter, sans-serif;
  font-weight: 500;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.team-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.team-card:hover {
  border-color: rgba(121,146,245,.38);
  box-shadow: 0 18px 38px rgba(11,27,91,.1);
  transform: translateY(-5px);
}
.team-card > img {
  width: 100%;
  aspect-ratio: 1 / .88;
  object-fit: cover;
  object-position: center top;
  background: var(--soft);
}
.team-card > div { padding: 18px 17px 20px; }
.team-card h3 { margin: 0; font-size: 16px; line-height: 1.3; letter-spacing: -.02em; }
.team-card p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.4; }
.team-partner { display: block; }

.cta-section { padding: 80px 0; background: var(--soft); }
.cta-card { min-height: 310px; padding: 62px 68px; border-radius: 24px; display: flex; align-items: center; justify-content: space-between; gap: 60px; color: #fff; background: linear-gradient(135deg, var(--blue-dark), var(--navy)); box-shadow: 0 28px 60px rgba(11,27,91,.18); }
.cta-card > div { max-width: 700px; }
.cta-card p { margin: 20px 0 0; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.7; }
.cta-card .button { flex: 0 0 auto; }

.site-footer { padding: 72px 0 24px; color: #fff; background: #081440; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 70px; padding-bottom: 60px; }
.footer-brand img { width: 130px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 300px; margin: 22px 0 0; color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.7; }
.footer-column { display: flex; flex-direction: column; gap: 12px; }
.footer-column h3 { margin: 0 0 8px; color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a, .footer-column p { margin: 0; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.5; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 13px; }
.footer-bottom a { transition: color .2s ease; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 980px) {
  .nav-links { gap: 18px; }
  .hero { padding-top: 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { max-width: 720px; }
  .hero-product { width: min(700px, 94%); margin: auto; }
  .home-care-grid { grid-template-columns: 1fr; gap: 52px; }
  .home-care-image { min-height: 460px; }
  .home-care-image > img { height: 460px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .challenge-grid { grid-template-columns: 1fr; gap: 60px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 1180px); }
  .site-header { height: 70px; }
  .brand img { width: 112px; }
  .nav-login { display: none; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    border-radius: 9px;
    display: grid;
    align-content: center;
    gap: 5px;
    background: var(--navy);
  }
  .menu-toggle span { display: block; height: 2px; border-radius: 2px; background: #fff; }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    align-items: stretch;
    flex-direction: column;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 10px; }
  .hero { min-height: 0; padding: 72px 0 64px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .trust-row { gap: 12px 18px; }
  .hero-product { min-height: 330px; width: 100%; }
  .dashboard-frame { width: 100%; }
  .phone-frame { right: -4px; width: 106px; height: 222px; border-width: 5px; border-radius: 23px; }
  .floating-card { display: none; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 36px; }
  .feature-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { min-height: 280px; }
  .home-care-section { padding: 16px 0 78px; }
  .home-care-image { min-height: 330px; }
  .home-care-image > img { height: 330px; border-radius: 18px; }
  .home-care-badge { right: 12px; bottom: 14px; }
  .challenge { padding: 78px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid article { min-height: 0; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .stats-grid strong { font-size: 54px; }
  .stats-grid p { margin-top: 12px; }
  .outcomes-grid article { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .outcomes-grid article:last-child { border-bottom: 0; }
  .cta-section { padding: 50px 0; }
  .cta-card { min-height: 0; padding: 42px 28px; align-items: flex-start; flex-direction: column; gap: 34px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 15px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  .hero-product { min-height: 260px; }
  .browser-bar { height: 30px; }
  .phone-frame { height: 180px; width: 88px; }
  .feature-grid { gap: 12px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .team-card > div { padding: 14px 13px 16px; }
  .team-card h3 { font-size: 14px; }
  .team-card p { font-size: 12px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { gap: 12px; flex-direction: column; }
}

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

/* Interior pages */
.page-hero {
  position: relative;
  padding: 104px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(121,146,245,.17), transparent 29%),
    linear-gradient(180deg, #fbfcff, #f4f6fc);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background-image: linear-gradient(rgba(11,27,91,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(11,27,91,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 80px; }
.page-hero h1 { max-width: 760px; margin: 0; font-size: clamp(48px, 5.5vw, 74px); line-height: 1.04; letter-spacing: -.055em; }
.page-hero h1 em { color: var(--blue-dark); font-family: Ubuntu,Inter,sans-serif; font-weight: 500; }
.page-hero-copy > p { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: 19px; line-height: 1.7; }
.page-hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.page-hero-visual { position: relative; min-height: 390px; }
.page-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; border: 1px solid rgba(11,27,91,.1); border-radius: 24px; object-fit: cover; box-shadow: var(--shadow); }
.page-hero-panel { position: absolute; right: -20px; bottom: -24px; width: 64%; padding: 22px; border: 1px solid rgba(11,27,91,.1); border-radius: 16px; background: rgba(255,255,255,.95); box-shadow: 0 18px 44px rgba(11,27,91,.16); }
.page-hero-panel strong { display: block; font-size: 16px; }
.page-hero-panel span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.security-hero-visual {
  min-height: 430px;
  border: 1px solid rgba(11,27,91,.1);
  border-radius: 26px;
  background: radial-gradient(circle at 52% 42%,rgba(121,146,245,.22),transparent 38%),linear-gradient(145deg,#fff,#edf1fc);
  box-shadow: var(--shadow);
}
.security-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  border-radius: inherit;
  background-image: linear-gradient(rgba(11,27,91,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(11,27,91,.05) 1px,transparent 1px);
  background-size: 42px 42px;
}
.security-logo-card {
  position: absolute;
  z-index: 1;
  width: 170px;
  min-height: 145px;
  padding: 22px;
  border: 1px solid rgba(11,27,91,.1);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 34px rgba(11,27,91,.12);
}
.security-logo-card img { max-width: 112px; max-height: 68px; object-fit: contain; }
.security-logo-card span { color: var(--muted); font-size: 11px; font-weight: 600; text-align: center; }
.security-logo-aws { top: 38px; left: 34px; transform: rotate(-2deg); }
.security-logo-hipaa { right: 30px; bottom: 46px; transform: rotate(2deg); }
.security-lock {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 185px;
  padding: 23px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  background: var(--navy);
  box-shadow: 0 22px 45px rgba(11,27,91,.25);
  transform: translate(-50%,-50%);
}
.security-lock > div { width: 56px; height: 56px; margin: 0 auto 15px; border-radius: 15px; display: grid; place-items: center; background: rgba(255,255,255,.12); font-size: 28px; }
.security-lock strong { display: block; font-size: 15px; }
.security-lock span { display: block; margin-top: 7px; color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.45; }
.security-hero-visual .page-hero-panel { right: auto; bottom: -24px; left: 28px; width: 58%; z-index: 3; }
.rpm-hero-grid { grid-template-columns: .92fr 1.08fr; gap: 64px; }
.platform-composite { min-height: 475px; }
.platform-web {
  position: absolute;
  top: 14px;
  right: 2%;
  width: 98%;
  overflow: hidden;
  border: 1px solid rgba(11,27,91,.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-3deg);
}
.platform-web > img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  object-position: center top;
}
.platform-phone {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: -12px;
  width: 122px;
  height: 258px;
  padding: 9px 7px;
  overflow: hidden;
  border: 6px solid #111a36;
  border-radius: 29px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(11,27,91,.25);
}
.platform-phone > img { width: 100%; height: 100%; border-radius: 19px; object-fit: cover; object-position: center top; }
.platform-phone .phone-speaker { top: 8px; width: 46px; height: 11px; }
.platform-composite .page-hero-panel {
  z-index: 3;
  right: auto;
  bottom: -18px;
  left: -18px;
  width: 54%;
  padding: 20px;
}
.content-section { padding: 104px 0; }
.content-section-soft { background: var(--soft); }
.content-heading { max-width: 760px; margin-bottom: 52px; }
.content-heading.center { margin-inline: auto; text-align: center; }
.content-heading h2 { margin: 0; font-size: clamp(38px,4.5vw,56px); line-height: 1.1; letter-spacing: -.045em; }
.content-heading p { margin: 20px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.split-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 86px; }
.split-copy h2 { margin: 0; font-size: clamp(36px,4vw,52px); line-height: 1.12; letter-spacing: -.045em; }
.split-copy > p { margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.split-copy ul { margin: 26px 0 0; padding: 0; display: grid; gap: 14px; list-style: none; }
.split-copy li { position: relative; padding-left: 28px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.split-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-dark); font-weight: 700; }
.media-card { min-height: 440px; padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.media-card img { width: 100%; height: 100%; min-height: 396px; border-radius: 15px; object-fit: cover; }
.product-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(121,146,245,.2), transparent 36%),
    linear-gradient(145deg,#f8faff,#edf1fc);
}
.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(11,27,91,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(11,27,91,.05) 1px,transparent 1px);
  background-size: 40px 40px;
}
.product-media img { position: relative; z-index: 1; min-height: 0; box-shadow: 0 18px 42px rgba(11,27,91,.18); }
.product-media-phone img {
  width: 180px;
  height: 390px;
  border: 7px solid #111a36;
  border-radius: 32px;
  object-fit: cover;
  object-position: center top;
}
.product-media-phone {
  grid-template-columns: repeat(2, auto);
  gap: 22px;
}
.product-media-phone img:first-child { transform: translateY(-10px) rotate(-2deg); }
.product-media-phone img:last-child { transform: translateY(10px) rotate(2deg); }
.product-media-web { padding: 34px; }
.product-media-web img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(11,27,91,.12);
  border-radius: 14px;
  object-fit: contain;
}
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-card { min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .2s ease,box-shadow .2s ease; }
.info-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(11,27,91,.09); }
.info-card .card-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: var(--navy); background: #edf0fd; font-size: 23px; }
.info-card:not(.info-card-dark) .card-icon {
  font-size: 30px;
  font-weight: 600;
}
.security-foundations .info-card .card-icon {
  font-size: 31px;
  font-weight: 600;
}
.info-grid .info-card:first-child .card-icon {
  padding-bottom: 5px;
}
.security-foundations .info-card:first-child .card-icon {
  padding-bottom: 11px;
}
.privacy-controls-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.privacy-controls-header { display: flex; align-items: center; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.privacy-controls-header .card-icon { width: 50px; height: 50px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center; color: var(--navy); background: #edf0fd; font-size: 27px; }
.privacy-controls-header small { display: block; margin-bottom: 5px; color: var(--blue-dark); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.privacy-controls-header strong {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.privacy-control-row { display: grid; grid-template-columns: 28px 1fr auto; gap: 15px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.privacy-control-row:last-child { border-bottom: 0; padding-bottom: 0; }
.privacy-control-row > span { color: var(--blue-dark); font-size: 12px; font-weight: 700; }
.privacy-control-row strong { display: block; font-size: 17px; }
.privacy-control-row p { margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.privacy-control-row b { padding: 7px 9px; border-radius: 99px; color: #297a53; background: #e8f6ef; font-size: 10px; text-transform: uppercase; }
.info-card h3 { margin: 34px 0 12px; font-size: 21px; letter-spacing: -.02em; }
.info-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.info-card-dark { color: #fff; border-color: var(--navy); background: var(--navy); }
.info-card-dark p { color: rgba(255,255,255,.72); }
.info-card-dark .card-icon { color: #fff; background: rgba(255,255,255,.12); }
.logo-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.logo-tile { min-height: 150px; padding: 24px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.logo-tile img { max-width: 130px; max-height: 76px; object-fit: contain; }
.workflow-section { background: #fff; }
.workflow-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.workflow-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
}
.workflow-card::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -22px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: #fff;
  transform: translateY(-50%);
}
.workflow-card:last-child::after { display: none; }
.workflow-number { color: #a1a8b8; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.workflow-card .card-icon { width: 52px; height: 52px; margin-top: 42px; display: grid; place-items: center; border-radius: 14px; color: var(--navy); background: #edf0fd; font-size: 23px; }
.workflow-card:first-child .card-icon {
  font-size: 31px;
  font-weight: 600;
}
.workflow-card h3 { margin: 26px 0 12px; font-size: 21px; letter-spacing: -.02em; }
.workflow-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.workflow-card-accent { color: #fff; border-color: var(--navy); background: var(--navy); }
.workflow-card-accent p,.workflow-card-accent .workflow-number { color: rgba(255,255,255,.7); }
.workflow-card-accent .card-icon { color: #fff; background: rgba(255,255,255,.12); }
.reading-strip { margin-top: 18px; padding: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; border: 1px solid var(--line); border-radius: 15px; background: var(--soft); }
.reading-strip span { padding: 9px 13px; border: 1px solid #dfe4f2; border-radius: 99px; color: #515a6e; background: #fff; font-size: 13px; font-weight: 600; }
.benefit-detail-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff; }
.benefit-detail-grid article { min-height: 300px; padding: 30px; border-right: 1px solid var(--line); }
.benefit-detail-grid article:last-child { border-right: 0; }
.benefit-detail-icon { width: 56px; height: 56px; margin-bottom: 25px; display: grid; place-items: center; border-radius: 15px; background: #edf0fd; }
.benefit-detail-icon img { width: 30px; height: 30px; object-fit: contain; }
.benefit-detail-grid article > span { color: var(--blue-dark); font-size: 11px; font-weight: 700; }
.benefit-detail-grid h3 { margin: 35px 0 12px; font-size: 20px; letter-spacing: -.02em; }
.benefit-detail-grid p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.automation-callout { margin-top: 22px; padding: 30px 34px; border-radius: 17px; display: flex; align-items: center; gap: 24px; color: #fff; background: linear-gradient(135deg,var(--blue-dark),var(--navy)); }
.automation-callout .card-icon { width: 54px; height: 54px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.13); font-size: 23px; }
.automation-callout p { margin: 0; max-width: 900px; font-size: 18px; line-height: 1.6; }
.integration-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.integration-card { min-height: 220px; padding: 25px; border: 1px solid var(--line); border-radius: 17px; display: flex; flex-direction: column; background: #fff; }
.integration-card > div { height: 92px; display: flex; align-items: center; justify-content: center; }
.integration-card img { max-width: 125px; max-height: 72px; object-fit: contain; }
.integration-card p { margin: auto 0 0; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; line-height: 1.55; text-align: center; }
.dark-band { padding: 96px 0; color: #fff; background: var(--navy); }
.dark-band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.dark-band h2 { margin: 0; font-size: clamp(38px,4vw,54px); line-height: 1.1; letter-spacing: -.045em; }
.dark-band p { margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
.metric-list { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; overflow: hidden; }
.metric-list article { padding: 30px; border-right: 1px solid rgba(255,255,255,.14); }
.metric-list article:last-child { border-right: 0; }
.metric-list strong { display: block; color: var(--blue); font-size: 34px; }
.metric-list span { display: block; margin-top: 10px; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.55; }
.prose-shell { width: min(840px, calc(100% - 48px)); margin-inline: auto; }
.prose-shell h2 { margin: 52px 0 16px; font-size: 28px; letter-spacing: -.025em; }
.prose-shell h2:first-child { margin-top: 0; }
.prose-shell p, .prose-shell li { color: #4f586c; font-size: 17px; line-height: 1.8; }
.prose-shell ul { padding-left: 24px; }
.prose-callout { margin: 42px 0; padding: 28px 32px; border-left: 4px solid var(--blue); border-radius: 0 14px 14px 0; background: var(--soft); }
.faq-list { width: min(900px,100%); margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 27px 52px 27px 0; position: relative; cursor: pointer; list-style: none; font-size: 20px; font-weight: 600; letter-spacing: -.02em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; top: 24px; right: 8px; color: var(--blue-dark); font-size: 26px; font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 54px 26px 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.faq-answer p { margin: 0 0 14px; }
.faq-answer ul { margin: 12px 0; padding-left: 22px; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.contact-details { display: grid; gap: 18px; margin-top: 34px; }
.contact-detail { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.contact-detail small { display: block; margin-bottom: 8px; color: var(--blue-dark); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-detail a,.contact-detail p { margin: 0; font-size: 16px; line-height: 1.55; }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 20px 52px rgba(11,27,91,.09); }
.contact-form h2 { margin: 0 0 26px; font-size: 30px; }
.booking-card {
  min-width: 0;
  padding: 34px 28px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(11,27,91,.09);
}
.booking-heading {
  padding: 0 10px 24px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: end;
}
.booking-heading .eyebrow { margin-bottom: 14px; }
.booking-heading h2 { margin: 0; font-size: 30px; line-height: 1.18; letter-spacing: -.035em; }
.booking-heading > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.booking-card .calendly-inline-widget {
  width: 100%;
  min-width: 0 !important;
  border-top: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1/-1; }
.form-field label { color: #4f586c; font-size: 13px; font-weight: 600; }
.form-field input,.form-field textarea { width: 100%; padding: 14px 15px; border: 1px solid #dce1ed; border-radius: 10px; outline: none; background: #fbfcff; color: var(--ink); font: inherit; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,.form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(121,146,245,.13); }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.newsletter-card { width: min(720px,100%); margin-inline: auto; padding: 54px; border: 1px solid var(--line); border-radius: 24px; text-align: center; background: #fff; box-shadow: var(--shadow); }
.newsletter-card h2 { margin: 0; font-size: 34px; letter-spacing: -.035em; }
.newsletter-card p { margin: 18px auto 30px; max-width: 560px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; min-width: 0; padding: 0 16px; border: 1px solid #dce1ed; border-radius: 10px; font: inherit; }

@media (max-width: 900px) {
  .page-hero-grid,.rpm-hero-grid,.split-section,.dark-band-grid,.contact-layout { grid-template-columns: 1fr; }
  .page-hero-visual { min-height: 360px; }
  .platform-composite { min-height: 440px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .benefit-detail-grid,.integration-grid { grid-template-columns: repeat(2,1fr); }
  .benefit-detail-grid article:nth-child(2) { border-right: 0; }
  .benefit-detail-grid article { border-bottom: 1px solid var(--line); }
  .benefit-detail-grid article:nth-child(3),.benefit-detail-grid article:nth-child(4) { border-bottom: 0; }
  .contact-layout { gap: 48px; }
}
@media (max-width: 640px) {
  .page-hero { padding: 72px 0 68px; }
  .page-hero h1 { font-size: 44px; }
  .page-hero-copy > p { font-size: 17px; }
  .page-hero-actions { align-items: flex-start; flex-direction: column; }
  .page-hero-visual { min-height: 280px; }
  .security-hero-visual { min-height: 430px; }
  .security-logo-card { width: 135px; min-height: 112px; padding: 14px; }
  .security-logo-card img { max-width: 88px; max-height: 50px; }
  .security-logo-card span { font-size: 9px; }
  .security-logo-aws { top: 24px; left: 18px; }
  .security-logo-hipaa { top: 24px; right: 18px; bottom: auto; }
  .security-lock { top: 59%; width: 155px; padding: 17px; }
  .security-lock > div { width: 46px; height: 46px; margin-bottom: 11px; font-size: 23px; }
  .security-hero-visual .page-hero-panel { right: 18px; bottom: -24px; left: 18px; width: auto; }
  .platform-composite { min-height: 300px; }
  .platform-phone { right: -2px; width: 92px; height: 194px; border-width: 4px; border-radius: 21px; }
  .platform-web { top: 16px; width: 100%; }
  .platform-composite .page-hero-panel {
    right: auto;
    bottom: -24px;
    left: 8px;
    width: 66%;
    padding: 15px;
  }
  .platform-composite .page-hero-panel strong { font-size: 13px; }
  .platform-composite .page-hero-panel span { font-size: 11px; }
  .product-media-phone { gap: 10px; }
  .product-media-phone img { width: 128px; height: 274px; border-width: 5px; border-radius: 23px; }
  .product-media-web { padding: 14px; }
  .page-hero-panel { right: 8px; bottom: -18px; width: 76%; }
  .content-section { padding: 74px 0; }
  .info-grid,.logo-strip,.metric-list,.workflow-grid,.benefit-detail-grid,.integration-grid { grid-template-columns: 1fr; }
  .workflow-card::after { content: "↓"; top: auto; right: 50%; bottom: -22px; transform: translateX(50%); }
  .benefit-detail-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .benefit-detail-grid article:last-child { border-bottom: 0 !important; }
  .automation-callout { align-items: flex-start; flex-direction: column; }
  .metric-list article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .metric-list article:last-child { border-bottom: 0; }
  .media-card { min-height: 280px; padding: 12px; }
  .media-card img { min-height: 256px; }
  .prose-shell { width: min(100% - 32px,840px); }
  .faq-item summary { font-size: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .contact-form,.newsletter-card { padding: 28px 22px; }
  .booking-card { padding: 26px 0 0; }
  .booking-heading { padding: 0 22px 24px; grid-template-columns: 1fr; gap: 12px; }
  .booking-card .calendly-inline-widget { min-width: 320px !important; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-height: 50px; }
}
