:root {
  /* Corporate healthcare / payer-oriented palette */
  --primary: #1f3b70;        /* deep desaturated blue */
  --accent: #1b9aaa;         /* teal */
  --accent-soft: #46b5d1;    /* softer teal/blue */
  --light-bg: #f3f6fc;       /* light blue-ish background */
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --border-radius: 14px;
  --shadow-soft: 0 18px 45px rgba(12, 35, 75, 0.16);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #e0ecff 0, #f4f7fd 40%, #ffffff 85%);
  color: var(--text-main);
  padding: 20px;
}

.shell {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header / Nav */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px 10px;
  gap: 10px;
  flex-wrap: wrap;
  
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  /*background: conic-gradient(from 210deg, #1b9aaa, #46b5d1, #1f3b70, #1b9aaa);*/
    background: conic-gradient(
    from 210deg,
    #004b8d,  /* logo blue 1 */
    #1b9aaa,  /* logo teal */
    #46b5d1,  /* logo light blue */
    #f39c12,  /* logo accent (if any) */
    #004b8d
  );

  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.brand-text-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.brand-text-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-cta {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(27, 154, 170, 0.4);
  background: #ffffff;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 30px rgba(27, 154, 170, 0.25);
  cursor: pointer;
}

.nav-cta span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

/* Topic banner – auto-scrolling */

.topic-banner {
  margin: 6px 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31, 59, 112, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  
  
}

.topic-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.topic-marquee {
  overflow: hidden;
  flex: 1;
}

.topic-track {
  display: inline-flex;
  gap: 8px;
  white-space: nowrap;
  animation: scrollTopics 45s linear infinite;
}

/*
.topic-banner:hover .topic-track {
  animation-play-state: paused;
}
  */

.topic-pill {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(31, 59, 112, 0.16);
  color: var(--primary);
  /* cursor: pointer; */
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}


.topic-pill:hover {
  background: #e8faf9;
   transform: translateY(-1px);
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}



.topic-pill span {
  font-size: 11px;
  opacity: 0.8;
}

@keyframes scrollTopics {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 10px 0 5px;   /* much smaller bottom padding */
}

.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 32px;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 12px;
  

}

.hero-title .highlight {
  color: var(--accent-soft);
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 18px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;

}

.hero-pill {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(27, 154, 170, 0.08);
  color: var(--primary);
  
  
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  

}

.btn-primary {
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(27, 154, 170, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  

}

.btn-secondary {
  border-radius: 999px;
  border: 1px solid rgba(31, 59, 112, 0.18);
  padding: 9px 18px;
  font-size: 13px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.96);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  

}

.hero-meta {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  

}

.hero-meta strong {
  color: var(--primary);
}

/* Hero card */

.hero-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
  border: 1px solid rgba(31, 59, 112, 0.06);
  
  
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;


}

.hero-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  
}

.hero-card-chip {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(27, 154, 170, 0.11);
  color: var(--accent);
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 14px;
}

.hero-stat {
  padding: 8px 8px;
  border-radius: 10px;
  background: var(--light-bg);
  text-align: left;
}

.hero-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.hero-card-footer {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  
}

.hero-card-footer .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  margin-right: 4px;
  
  
}

/* Sections */

.section {
  margin-top: 32px;
  margin-bottom: 24px;
  
  
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 480px;
}

.section-link {
  font-size: 13px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Service grid & cards */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: 0 12px 30px rgba(12, 35, 75, 0.12);
  padding: 14px 14px 13px;
  border: 1px solid rgba(31, 59, 112, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.service-card--contact {
  max-width: 520px;
}

.service-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent-soft);
  font-weight: 600;
}

.service-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.service-body {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
}

.service-list {
  margin-top: 6px;
  padding-left: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.service-list li {
  margin-bottom: 2px;
}

.service-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  gap: 10px;
  flex-wrap: wrap;
}

.service-footer a {
  font-size: 11px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/*

.service-accent-bar {
  position: absolute;
  inset: auto 0 0 auto;
  width: 36%;
  height: 3px;
  background: linear-gradient(90deg, rgba(27, 154, 170, 0.95), rgba(70, 181, 209, 0.95));
}
*/

.service-accent-bar {
  background: linear-gradient(
    90deg,
    #004b8d,
    #1b9aaa,
    #46b5d1
  );
}

/* How we work strip */

.strip {
  margin-top: 28px;
  margin-bottom: 24px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f3b70, #284986);
  color: #f3f5fb;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 45px rgba(10, 27, 62, 0.6);
}

.strip-main {
  max-width: 520px;
}

.strip-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.strip-text {
  font-size: 13px;
  opacity: 0.94;
}

.strip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
}

.strip-badge {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.95;
}

/* Footer */

footer {
  border-top: 1px solid rgba(31, 59, 112, 0.08);
  padding: 12px 2px 8px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

footer a {
  color: var(--accent);
  font-size: 11px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    margin-top: 6px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid--two {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 26px;
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .topic-banner {
    border-radius: 12px;
    padding: 8px;
  }
}

/* Wrapper for clipping */
.topic-wrapper {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to right, #ffffff 10%, #f8f9fc 50%, #ffffff 90%);
    padding: 18px 0;
    border-radius: 16px;
}

/* Moving strip */
.topic-strip {
    display: flex;
    gap: 14px;
    animation: scrollTopics 22s linear infinite;
    white-space: nowrap;
}

/* Individual tags */
.topic {
    background: #f1f4fa;
    color: #1b2a4a;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    display: inline-block;
}

/* Smooth auto-scroll */
@keyframes scrollTopics {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.brand-logo img {
  display: block;
  height: 60px;        /* adjust to taste: 32–48px is typical */
  width: auto;
}

.brand {
  display: flex;
  flex-direction: column;      /* stack logo and text vertically */
  align-items: flex-start;
  gap: 6px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  display: block;
  height: 60px;                /* adjust if needed */
  width: auto;
}

/* optional – tweak tagline spacing */
.brand-tagline {
  margin-top: 2px;
}


.back-link {
  margin: 2px 0 6px;   /* reduced from 10/20 down to 2/6 */
}

.back-link a {
  display: inline-block;
  padding: 4px 10px;   /* same as before */
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(31, 59, 112, 0.2);
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.back-link a:hover {
  background: #f2f7ff;
  border-color: rgba(31, 59, 112, 0.35);
  transform: translateY(-2px);
}

/* Tighter section spacing just for startup overview */
.section--startup {
  margin-top: 16px;              /* was 32px – lower the whole block */
}

/* Keep the same button style, just slightly less space below */
.back-link--tight {
  margin: 0 0 4px 0;             /* almost no extra vertical space */
}

/* Remove default top margin from the title inside this header */
.section-header--tight .section-title {
  margin-top: 0;                 /* kill default h* top margin effect */
}

/* Optional: tiny space between title and subtitle */
.section-header--tight .section-subtitle {
  margin-top: 2px;
}

/* Shake animation */
@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

.shake-once {
  animation: shake 0.45s ease-in-out;
}