@import url("google-fonts.css");

:root {
  --ink: #18324a;
  --muted: #607181;
  --line: #dce4ed;
  --paper: #ffffff;
  --soft: #f3fbff;
  --aqua: #7de7df;
  --mint: #b8f5d3;
  --blue: #10a8e6;
  --blue-dark: #0a6fa0;
  --green: #34c38f;
  --coral: #16b7c5;
  --purple: #335bd6;
  --shadow: 0 24px 70px rgba(35, 93, 132, 0.16);
  --color-wash:
    radial-gradient(circle at 8% 18%, rgba(125, 231, 223, 0.42), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(16, 168, 230, 0.22), transparent 30%),
    radial-gradient(circle at 72% 82%, rgba(52, 195, 143, 0.26), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eefaff 48%, #f2fff8 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfdff 0%, #f6fcff 44%, #fbfffd 100%);
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 34px);
  min-height: 82px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(184, 224, 240, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 253, 255, 0.86)),
    radial-gradient(circle at 12% 0%, rgba(125, 231, 223, 0.18), transparent 25%),
    radial-gradient(circle at 90% 6%, rgba(52, 195, 143, 0.12), transparent 28%);
  box-shadow: 0 12px 34px rgba(35, 93, 132, 0.08);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 168, 230, 0.78), rgba(34, 198, 188, 0.78), rgba(52, 195, 143, 0.76), rgba(51, 91, 214, 0.68));
  content: "";
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0;
  border-radius: 10px;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  filter: saturate(1.08);
  transform: translateY(-1px);
}

.brand:focus-visible {
  outline: 3px solid rgba(16, 168, 230, 0.28);
  outline-offset: 4px;
}

.brand img {
  width: clamp(178px, 18vw, 230px);
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.9vw, 10px);
  min-height: 46px;
  padding: 5px;
  border: 1px solid rgba(184, 224, 240, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 26px rgba(35, 93, 132, 0.06);
  color: #385d75;
  font-size: 0.91rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav a,
.header-cta,
.text-link,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible,
.text-link:hover,
.footer a:hover {
  color: var(--blue-dark);
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(240, 252, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(16, 168, 230, 0.12);
  transform: translateY(-1px);
}

.nav a::after {
  position: absolute;
  right: 15px;
  bottom: 7px;
  left: 15px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a:focus-visible,
.header-cta:focus-visible {
  outline: 3px solid rgba(16, 168, 230, 0.28);
  outline-offset: 3px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--blue), #13bdbb 56%, var(--green));
  box-shadow: 0 14px 28px rgba(10, 111, 160, 0.22);
  font-weight: 800;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-cta::after {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  content: "->";
  font-size: 0.78rem;
  line-height: 1;
}

.header-cta:hover,
.header-cta:focus-visible {
  box-shadow: 0 20px 40px rgba(10, 111, 160, 0.3);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: min(calc(100vh - 82px), 860px);
  padding: clamp(34px, 5vw, 72px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 64px);
  overflow: hidden;
  background: var(--color-wash);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: 260px;
  height: 260px;
  left: -82px;
  bottom: 12%;
  background: rgba(16, 168, 230, 0.13);
}

.hero::after {
  width: 180px;
  height: 180px;
  right: 42%;
  top: 8%;
  background: rgba(52, 195, 143, 0.18);
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Montserrat, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: transparent;
  background: linear-gradient(110deg, #103456 0%, var(--blue-dark) 42%, #0b8ea5 70%, #168a68 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(3rem, 5.8vw, 5.35rem);
  line-height: 1.05;
}

h2 {
  margin-bottom: 18px;
  color: transparent;
  background: linear-gradient(115deg, #123a5b 0%, var(--blue-dark) 44%, #158a70 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(1.95rem, 3.45vw, 3.45rem);
}

h3 {
  margin-bottom: 10px;
  color: #123a5b;
  font-size: 1.18rem;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--blue), #13bdbb 58%, var(--green));
  color: #fff;
  box-shadow: 0 18px 38px rgba(10, 111, 160, 0.24);
}

.button.secondary {
  border: 1px solid rgba(16, 168, 230, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-dark);
  backdrop-filter: blur(12px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 730px;
}

.metrics div {
  --metric-ring: linear-gradient(135deg, rgba(16, 168, 230, 0.72), rgba(34, 198, 188, 0.64), rgba(52, 195, 143, 0.62));
  min-height: 112px;
  padding: 18px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(250, 253, 255, 0.74)) padding-box,
    var(--metric-ring) border-box;
  box-shadow: 0 16px 34px rgba(35, 93, 132, 0.1), 0 0 0 6px rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
}

.metrics div:nth-child(2) {
  --metric-ring: linear-gradient(135deg, rgba(52, 195, 143, 0.72), rgba(16, 168, 230, 0.62), rgba(51, 91, 214, 0.46));
}

.metrics div:nth-child(3) {
  --metric-ring: linear-gradient(135deg, rgba(51, 91, 214, 0.6), rgba(16, 168, 230, 0.68), rgba(52, 195, 143, 0.58));
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-bottom: 6px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.98rem;
}

.metrics span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
  padding: clamp(12px, 3vw, 28px);
}

.hero-media::before {
  position: absolute;
  inset: 8% 4% 3% 12%;
  z-index: 0;
  border-radius: 42px;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, rgba(16, 168, 230, 0.24), rgba(52, 195, 143, 0.2), rgba(51, 91, 214, 0.12));
  content: "";
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  margin-inline: auto;
  filter: drop-shadow(0 28px 48px rgba(20, 32, 46, 0.22));
}

.trust-strip {
  padding: 26px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(18, 183, 244, 0.96), rgba(34, 198, 188, 0.95) 38%, rgba(52, 195, 143, 0.94) 68%, rgba(29, 132, 214, 0.94));
  color: #fff;
  text-align: center;
}

.trust-strip p {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 800;
}

.section,
.feature-band,
.showcase,
.lead-magnets,
.demo-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}

.section-copy p,
.showcase-copy p,
.demo-copy p {
  color: var(--muted);
}

.service-grid,
.feature-list,
.post-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid article,
.feature-list article,
.post-card,
.resource-card,
.lead-form,
.demo-form {
  border: 1px solid rgba(184, 224, 240, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(35, 93, 132, 0.08);
}

.service-grid article {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  padding: 28px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-grid article:hover {
  border-color: rgba(16, 168, 230, 0.36);
  box-shadow: 0 24px 58px rgba(35, 93, 132, 0.14);
  transform: translateY(-3px);
}

.service-grid article:nth-child(1) {
  border-top: 5px solid var(--blue);
}

.service-grid article:nth-child(1) h3 {
  color: var(--blue-dark);
}

.service-grid article:nth-child(2) {
  border-top: 5px solid var(--green);
}

.service-grid article:nth-child(2) h3 {
  color: #168a68;
}

.service-grid article:nth-child(3) {
  border-top: 5px solid var(--coral);
}

.service-grid article:nth-child(3) h3 {
  color: #0a7886;
}

.service-grid article:nth-child(4) {
  border-top: 5px solid var(--purple);
}

.service-grid article:nth-child(4) h3 {
  color: var(--purple);
}

.service-grid article::after {
  position: absolute;
  width: 110px;
  height: 110px;
  right: -48px;
  bottom: -54px;
  border-radius: 50%;
  background: rgba(16, 168, 230, 0.11);
  content: "";
}

.service-grid p,
.feature-list p,
.post-grid p {
  color: var(--muted);
}

.icon-dot {
  display: block;
  width: 44px;
  height: 10px;
  margin-bottom: 22px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(35, 93, 132, 0.1);
}

.icon-dot.blue {
  background: var(--blue);
}

.icon-dot.green {
  background: var(--green);
}

.icon-dot.coral {
  background: var(--coral);
}

.icon-dot.purple {
  background: var(--purple);
}

.feature-band {
  background:
    radial-gradient(circle at 12% 18%, rgba(125, 231, 223, 0.28), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(16, 168, 230, 0.2), transparent 30%),
    linear-gradient(180deg, #f8fdff 0%, #eefaff 54%, #f5fff9 100%);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-list article {
  position: relative;
  overflow: hidden;
  min-height: 194px;
  padding: 32px 30px 30px;
  border-color: rgba(145, 215, 230, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 44px rgba(35, 93, 132, 0.1);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-list article:hover {
  border-color: rgba(16, 168, 230, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 26px 64px rgba(35, 93, 132, 0.16);
  transform: translateY(-4px);
}

.feature-list article:nth-child(3n + 1) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 252, 255, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(16, 168, 230, 0.16), transparent 34%);
}

.feature-list article:nth-child(3n + 2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 255, 250, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(52, 195, 143, 0.16), transparent 34%);
}

.feature-list article:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 255, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(51, 91, 214, 0.13), transparent 34%);
}

.feature-list article::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(16, 168, 230, 0.86), rgba(34, 198, 188, 0.76), rgba(52, 195, 143, 0.72));
  content: "";
  opacity: 0.82;
  pointer-events: none;
}

.feature-list article::after {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -76px;
  top: -86px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.68) 0 24%, rgba(16, 168, 230, 0.14) 25% 50%, transparent 68%);
  content: "";
  pointer-events: none;
}

.feature-list article:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, rgba(52, 195, 143, 0.84), rgba(34, 198, 188, 0.78), rgba(16, 168, 230, 0.72));
}

.feature-list article:nth-child(3n)::before {
  background: linear-gradient(90deg, rgba(51, 91, 214, 0.76), rgba(16, 168, 230, 0.78), rgba(52, 195, 143, 0.7));
}

.feature-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 32px rgba(35, 93, 132, 0.12);
}

.feature-icon::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(16, 168, 230, 0.24), rgba(52, 195, 143, 0.2), rgba(51, 91, 214, 0.12));
  content: "";
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-icon.blue {
  color: var(--blue-dark);
}

.feature-icon.green {
  color: #168a68;
}

.feature-icon.coral {
  color: #0a7886;
}

.feature-icon.purple {
  color: var(--purple);
}

.feature-list h3,
.feature-list p {
  position: relative;
  z-index: 1;
}

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(225, 249, 255, 0.98), rgba(216, 255, 239, 0.96) 48%, rgba(225, 243, 255, 0.98)),
    radial-gradient(circle at 12% 20%, rgba(16, 168, 230, 0.32), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(52, 195, 143, 0.3), transparent 26%),
    radial-gradient(circle at 74% 82%, rgba(51, 91, 214, 0.16), transparent 25%);
  overflow: hidden;
}

.showcase::before,
.showcase::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.showcase::before {
  inset: clamp(22px, 4vw, 56px) 0;
  border: 1px solid rgba(16, 168, 230, 0.13);
  border-right: 0;
  border-left: 0;
  background:
    radial-gradient(circle at 84% 76%, rgba(52, 195, 143, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(16, 168, 230, 0.12), rgba(52, 195, 143, 0.1) 58%, rgba(255, 255, 255, 0.22)),
    repeating-linear-gradient(135deg, rgba(16, 168, 230, 0.1) 0 1px, transparent 1px 18px);
}

.showcase::after {
  right: clamp(28px, 8vw, 118px);
  bottom: clamp(22px, 5vw, 74px);
  width: clamp(140px, 18vw, 260px);
  height: clamp(140px, 18vw, 260px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 195, 143, 0.24), rgba(16, 168, 230, 0.08) 58%, transparent 70%);
}

.video-card,
.showcase-copy {
  position: relative;
  z-index: 1;
}

.showcase h2,
.insights h2 {
  max-width: 760px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #13bdbb, var(--green));
  padding: 8px;
  box-shadow: var(--shadow);
}

.video-card::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.video-card video {
  border-radius: 6px;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue-dark);
  font-weight: 900;
}

.insights {
  position: relative;
  background:
    radial-gradient(circle at 16% 18%, rgba(125, 231, 223, 0.24), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(16, 168, 230, 0.18), transparent 27%),
    linear-gradient(180deg, #fff 0%, #f8fdff 52%, #f5fff9 100%);
  overflow: hidden;
}

.insights::after {
  position: absolute;
  right: clamp(20px, 6vw, 92px);
  bottom: 42px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(16, 168, 230, 0.14);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(16, 168, 230, 0.1), rgba(52, 195, 143, 0.08));
  content: "";
  pointer-events: none;
}

.post-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.post-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 20px;
  overflow: hidden;
  min-height: 344px;
  padding: 30px;
  border: 1px solid rgba(184, 224, 240, 0.88);
  border-top: 6px solid var(--blue);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 255, 0.95));
  box-shadow: 0 22px 54px rgba(35, 93, 132, 0.12);
  color: inherit;
  text-decoration: none !important;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.post-card:nth-child(2) {
  border-top-color: var(--green);
}

.post-card:nth-child(3) {
  border-top-color: var(--coral);
}

.post-card:hover,
.post-card:focus-visible {
  border-color: rgba(16, 168, 230, 0.42);
  box-shadow: 0 30px 68px rgba(35, 93, 132, 0.18);
  transform: translateY(-4px);
}

.post-card:focus-visible {
  outline: 3px solid rgba(16, 168, 230, 0.34);
  outline-offset: 4px;
}

.post-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16, 168, 230, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(52, 195, 143, 0.12), transparent 36%);
  content: "";
  opacity: 0.85;
  pointer-events: none;
}

.post-card::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #13bdbb, var(--green));
  content: "";
  pointer-events: none;
}

.post-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(184, 224, 240, 0.72);
  border-radius: 8px;
  color: var(--blue-dark);
  background: rgba(240, 252, 255, 0.94);
  box-shadow: 0 16px 34px rgba(35, 93, 132, 0.11);
}

.post-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.post-icon.blue {
  color: var(--blue-dark);
  background: linear-gradient(135deg, #e9faff, #f7fdff);
}

.post-icon.green {
  color: #168a68;
  background: linear-gradient(135deg, #eafff7, #f9fffc);
}

.post-icon.coral {
  color: #0a7886;
  background: linear-gradient(135deg, #e9fbff, #f8fffc);
}

.post-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
}

.post-date {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(16, 168, 230, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.post-grid h3 {
  max-width: 360px;
  margin-bottom: 12px;
  color: #123a5b;
  font-size: clamp(1.24rem, 1.65vw, 1.48rem);
  line-height: 1.18;
  text-decoration: none;
}

.post-grid p:not(.post-date) {
  margin-bottom: 0;
  color: var(--muted);
  text-decoration: none;
}

.post-card h3,
.post-card p,
.post-card span {
  text-decoration: none !important;
}

.post-read-more {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(16, 168, 230, 0.2);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(240, 252, 255, 0.9);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(35, 93, 132, 0.08);
}

.post-read-more::after {
  margin-left: 8px;
  content: "->";
}

.article-page {
  background:
    radial-gradient(circle at 14% 10%, rgba(125, 231, 223, 0.28), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(16, 168, 230, 0.18), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7fdff 54%, #f5fff9 100%);
  padding: clamp(48px, 8vw, 92px) clamp(20px, 5vw, 72px);
}

.article-shell {
  width: min(820px, 100%);
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.article-back::before {
  margin-right: 8px;
  content: "<-";
}

.article-page h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: transparent;
  background: linear-gradient(105deg, #123a5b 0%, var(--blue-dark) 45%, #168a68 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.article-lede {
  max-width: 720px;
  margin-bottom: 34px;
  color: #3c586e;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.article-body {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(184, 224, 240, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(35, 93, 132, 0.12);
}

.article-body h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: #123a5b;
  font-size: clamp(1.38rem, 2.4vw, 2rem);
}

.article-body p {
  color: #3d5265;
  font-size: 1.08rem;
}

.article-callout {
  display: grid;
  gap: 6px;
  margin: 30px 0;
  padding: 20px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  color: #123a5b;
  background: linear-gradient(135deg, rgba(52, 195, 143, 0.12), rgba(16, 168, 230, 0.08));
}

.lead-magnets {
  background:
    radial-gradient(circle at 12% 14%, rgba(125, 231, 223, 0.26), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(52, 195, 143, 0.18), transparent 32%),
    linear-gradient(180deg, #f8fdff 0%, #ffffff 100%);
}

.lead-magnets .section-heading {
  max-width: 820px;
}

.lead-magnets .section-heading p:last-child {
  margin: 12px auto 0;
  max-width: 680px;
  color: var(--muted);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: 34px;
}

.resource-card {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 3vw, 30px);
  align-content: space-between;
}

.resource-card:first-child {
  border-top: 5px solid var(--blue);
}

.resource-card:last-child {
  border-top: 5px solid var(--green);
}

.resource-card-copy {
  display: grid;
  gap: 10px;
}

.resource-card h3 {
  margin: 0;
  color: #123a5b;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.12;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
}

.resource-kicker {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(248, 253, 255, 0.92);
  box-shadow: none;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.lead-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(16, 168, 230, 0.14);
  outline: none;
}

.lead-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.lead-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.64fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background:
    linear-gradient(120deg, rgba(7, 104, 151, 0.93), rgba(18, 183, 183, 0.9) 48%, rgba(52, 195, 143, 0.9)),
    url("../images/Untitled-8.002-1920w.jpeg") center / cover;
  color: #0f3550;
}

.demo-copy p,
.demo-section .eyebrow {
  color: rgba(15, 53, 80, 0.78);
}

.demo-section .eyebrow {
  color: #fff;
}

.demo-copy h2 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 12px 32px rgba(10, 111, 160, 0.22);
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 253, 255, 0.92));
  box-shadow: 0 26px 72px rgba(5, 65, 96, 0.22);
  backdrop-filter: blur(14px);
}

.demo-form .button.primary {
  background: linear-gradient(135deg, var(--blue), #13bdbb 52%, var(--green));
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.demo-form textarea {
  resize: vertical;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(16, 168, 230, 0.14);
  outline: none;
}

.demo-form .form-honeypot {
  display: none !important;
}

.demo-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.demo-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.success {
  color: #0d6b4c;
  font-weight: 800;
}

.form-note.error {
  color: #a5223f;
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  column-gap: clamp(18px, 4vw, 48px);
  row-gap: 18px;
  padding: 46px clamp(20px, 5vw, 72px) 38px;
  border-top: 1px solid rgba(184, 224, 240, 0.8);
  background:
    radial-gradient(circle at 15% 10%, rgba(125, 231, 223, 0.24), transparent 24%),
    linear-gradient(90deg, #ffffff, #eefaff 46%, #f5fff9);
  color: var(--muted);
  text-align: left;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 1;
}

.footer-brand img {
  width: 196px;
}

.footer a {
  color: var(--blue-dark);
  font-weight: 800;
}

.footer-app-link {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  max-width: min(223px, 100%);
  line-height: 0;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.footer-app-link:hover,
.footer-app-link:focus-visible {
  filter: saturate(1.04) drop-shadow(0 10px 18px rgba(35, 93, 132, 0.14));
  transform: translateY(-1px);
}

.footer-app-link:focus-visible {
  border-radius: 999px;
  outline: 3px solid rgba(16, 168, 230, 0.28);
  outline-offset: 4px;
}

.footer-app-link img {
  width: 223px;
  max-width: 100%;
}

.footer-top {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .split,
  .showcase,
  .resource-grid,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .feature-list,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: static;
    justify-content: space-between;
    gap: 10px;
    min-height: 0;
    padding: 12px 14px 14px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 48px;
  }

  .brand img {
    width: min(184px, 100%);
    max-height: 58px;
  }

  .nav {
    gap: 6px;
    overflow-x: auto;
    justify-content: flex-start;
    min-height: 46px;
    padding: 5px;
  }

  .nav a {
    min-height: 34px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .header-cta {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 14px 0 16px;
    font-size: 0.92rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .metrics,
  .service-grid,
  .feature-list,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-grid article,
  .feature-list article {
    min-height: auto;
  }

  .footer {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    padding-top: 36px;
    text-align: center;
    column-gap: 12px;
  }

  .footer-brand,
  .footer-app-link,
  .footer-top {
    grid-row: 1;
  }

  .footer-app-link {
    grid-column: 3;
    justify-self: end;
  }

  .footer-app-link img {
    width: clamp(94px, 28vw, 132px);
  }

  .footer-brand {
    grid-column: 2;
  }

  .footer-brand img {
    width: clamp(116px, 31vw, 156px);
  }

  .footer-top {
    grid-column: 1;
    justify-self: start;
    font-size: 0.82rem;
  }

}

@media (max-width: 420px) {
  .site-header {
    gap: 8px;
    padding-inline: 12px;
  }

  .brand {
    flex: 1 1 132px;
    min-height: 42px;
  }

  .brand img {
    width: min(148px, 100%);
    max-height: 48px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 10px 0 12px;
    font-size: 0.78rem;
  }

  .header-cta::after {
    width: 18px;
    height: 18px;
    font-size: 0.68rem;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
    overflow: visible;
    width: 100%;
  }

  .nav a {
    min-height: 32px;
    padding: 0 4px;
    font-size: 0.74rem;
  }

  .nav a::after {
    right: 8px;
    left: 8px;
  }
}
