:root {
  --color-dark-blue: #213752;
  --color-orange: #ef7710;
  --color-white: #ffffff;
  --color-light-blue: #638ae5;
  --color-lighter-blue: #97b1ee;
  --color-grey: #f2f3f4;
  --color-text-primary: #1b2d45;
  --color-text-muted: rgba(27, 45, 69, 0.85);
  --color-border-light: rgba(7, 28, 46, 0.06);
  --color-shadow-light: rgba(7, 28, 46, 0.08);
  --color-shadow-medium: rgba(33, 55, 82, 0.14);
  --color-bg-subtle: rgba(7, 28, 46, 0.05);
  --color-divider: rgba(7, 28, 46, 0.16);
  --font-heading: "Inter", "Helvetica Neue", sans-serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
}

/*# sourceMappingURL=main.css.map */
html {
  scroll-behavior: smooth;
}

body {
  /* background-color: var(--color-grey); */
  color: var(--color-dark-blue);
  font-family: var(--font-body);
  line-height: 1.65;
  margin: 0;
  padding: 0;

	background: linear-gradient(-45deg, var(--color-lighter-blue), var(--color-grey), var(--color-orange));
	background-size: 400% 1000%;
	animation: gradient 20s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark-blue);
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-top: 5rem;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#claims-customer-experience h2,
#technology-ai-platform h2,
#active-risk-pool-management h2 {
  margin-top: 2rem;
}

h3 {
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p,
li {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-primary);
}

ul {
  margin-left: 1.5rem;
  list-style-type: disc;
}

li {
  margin-bottom: 0.5rem;
}

li:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-orange);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--color-light-blue);
  text-decoration: none;
}

.page-content .wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 1.5rem;
}

.home {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.site-header {
  background-color: var(--color-dark-blue);
  border: none;
  padding: 20px 0;
  width: 100%;
  margin: 0;
}

.site-header .wrapper {
  display: flex;
  justify-content: center;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.posts-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.posts-nav__link {
  color: var(--color-white);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.posts-nav__link:visited {
  color: var(--color-white);
}

.posts-nav__link:hover,
.posts-nav__link:focus {
  color: var(--color-orange);
  border-color: var(--color-orange);
}

.posts-nav__link--active {
  border-color: var(--color-lighter-blue);
}

.hero {
  background-color: var(--color-white);
  border-radius: 28px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  box-shadow: 0 32px 90px var(--color-shadow-medium);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 56px;
}

.hero__logo {
  max-width: 220px;
  width: 100%;
}

.hero__content {
  max-width: 640px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  margin-bottom: 36px;
}

.hero__subtitle {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark-blue);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__description {
  font-size: 1rem;
  color: var(--color-dark-blue);
  margin-bottom: 48px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.home-features {
  margin-top: 48px;
  margin-bottom: 48px;
  width: 100%;
  max-width: 640px;
}

.home-features .concept-card-grid {
  max-width: 640px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  border: 2px solid transparent;
  min-width: 220px;
  box-sizing: border-box;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(33, 55, 82, 0.18);
}

.button--primary {
  background-color: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}

.button--primary:hover,
.button--primary:focus {
  background-color: var(--color-light-blue);
  border-color: var(--color-light-blue);
  color: var(--color-white);
}

.button--ghost {
  background-color: transparent;
  color: var(--color-dark-blue);
  border-color: var(--color-orange);
}

.button--ghost:hover,
.button--ghost:focus {
  color: var(--color-white);
  background-color: var(--color-light-blue);
  border-color: var(--color-light-blue);
}

.section-intro {
  max-width: 640px;
  color: rgba(33, 55, 82, 0.7);
  font-weight: 500;
}

.leadership-heading {
  margin-top: 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.team-card {
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(33, 55, 82, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(33, 55, 82, 0.12);
}

.team-card__media {
  background: linear-gradient(132deg, rgba(33, 55, 82, 0.15), rgba(99, 138, 229, 0.25));
}

.team-card__photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
	background-color: var(--color-white);
}

.team-card__body {
  padding: 28px;
}

.team-card__name {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.team-card__role {
  margin: 0 0 20px;
  font-weight: 600;
  color: var(--color-orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.team-card p {
  margin-bottom: 0.9rem;
}

/* Consolidated page wrapper and shell styles */
.product-page .page-content .wrapper,
.investors-page .page-content .wrapper,
.contact-page .page-content .wrapper,
.about-page .page-content .wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 1.5rem;
}

.page-shell {
  width: 100%;
  max-width: 100%;
  background-color: var(--color-white);
  border-radius: 28px;
  padding: 56px;
  box-shadow: 0 32px 90px var(--color-shadow-medium);
  box-sizing: border-box;
}

.page-shell * {
  max-width: 100%;
  box-sizing: border-box;
}

.page-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 56px;
}

.page-brand__logo {
  width: 100%;
  max-width: 220px;
}

/* Center all page content like home page */
.about-content,
.product-content,
.partners-content,
.investors-content,
.news-content,
.contact-content {
  max-width: 640px;
  margin: 0 auto;
}

.page-shell h1 {
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  margin-bottom: 24px;
}

.page-image {
  margin: 48px 0;
  display: flex;
  justify-content: center;
}

.page-image__img {
  max-width: 100%;
  height: auto;
}

.page-shell .concept-card-grid {
  margin-top: 32px;
}

.product-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.product-content {
  grid-column: span 12;
}

.product-icon {
  width: 48px;
  height: 48px;
  color: var(--color-orange);
}

/* Card component base styling - shared across concept-card, process-flow__step, persona-tile */
.concept-card,
.process-flow__step,
.persona-tile {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 24px;
  box-shadow: 0 8px 24px var(--color-shadow-light);
  padding: 32px;
  display: flex;
  align-items: stretch;
  gap: 24px;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.concept-card__icon,
.persona-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--color-bg-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
}

.product-icon {
  color: var(--color-orange);
  width: 48px;
  height: 48px;
}

.process-flow__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
}

.concept-card__body,
.process-flow__body,
.persona-tile__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.concept-card-grid {
  display: grid;
  gap: 24px;
  /* Single column grid by default */
}

.concept-card__title {
  margin: 0;
}

.concept-card__intro {
  margin: 0;
  color: var(--color-text-muted);
}

.concept-card__list {
  margin: 0;
  margin-left: 1.5rem;
}

.process-flow {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-flow__step {
  position: relative; /* Unique property for connector line */
}

.process-flow__title {
  margin: 0;
}

.process-flow__text {
  margin: 0;
  color: var(--color-text-muted);
}

.process-flow__list {
  margin: 0;
  margin-left: 1.5rem;
}

.process-flow__step::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  width: 2px;
  height: 24px;
  background: var(--color-divider);
}

.process-flow__step:last-child::after {
  display: none;
}

.persona-grid {
  display: grid;
  gap: 24px;
  /* Single column grid by default */
}

.persona-tile__title {
  margin: 0;
}

.persona-tile__text {
  margin: 0;
  color: var(--color-text-muted);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* 900px breakpoint - Tablet */
@media screen and (max-width: 900px) {
  .hero {
    padding: 48px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .page-shell {
    padding: 48px;
  }
}

/* 600px breakpoint - Mobile */
@media screen and (max-width: 600px) {
  /* Wrapper and page content */
  .page-content .wrapper {
    padding: 48px 1rem;
  }

  .product-page .page-content .wrapper,
  .investors-page .page-content .wrapper,
  .contact-page .page-content .wrapper,
  .about-page .page-content .wrapper {
    padding: 48px 1rem;
  }

  /* Hero section */
  .hero {
    padding: 36px;
  }

  .home-features {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  /* Navigation */
  .posts-nav {
    gap: 16px;
  }

  .posts-nav__link {
    font-size: 0.72rem;
  }

  /* Team cards */
  .team-card__photo {
    height: 220px;
  }

  .leadership-heading {
    margin-top: 56px;
  }

  /* Page shell and brand */
  .page-shell {
    padding: 36px;
    border-radius: 24px;
  }

  .page-brand {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .hero__visual {
    padding-bottom: 32px;
  }

  .page-shell h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

  .product-layout {
    gap: 20px;
  }

  /* Card grids */
  .concept-card-grid,
  .persona-grid {
    gap: 16px;
  }

  .process-flow {
    gap: 16px;
  }

  /* All card components */
  .concept-card,
  .process-flow__step,
  .persona-tile {
    padding: 24px;
    gap: 20px;
  }

  /* Contact page specific layout */
  .contact-content .concept-card {
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: center;
  }

  .contact-content .concept-card__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .contact-content .concept-card__body {
    flex: 0 0 auto;
    display: contents;
  }

  .contact-content .concept-card__title {
    margin-bottom: 0;
    flex: 1 1 auto;
  }

  .contact-content .concept-card__intro {
    flex-basis: 100%;
    margin-top: 0;
    word-break: break-all;
  }
}

/* 1024px breakpoint - Desktop */
@media screen and (min-width: 600px) {
/* Desktop side-by-side layout for about page sections with images */
  .section-with-image {
    display: flex;
    gap: 48px;
    margin: 48px 0;
		margin-top: 5rem;
  }

  .section-with-image__content {
    flex: 2;
  }

	.section-with-image__content h2 {
		margin-top: 0;
	}

  .section-with-image__image {
		display: flex;
		justify-content: center;
		flex: 1;
  }

  .section-with-image .page-image {
    margin: 0;
  }

  /* Allow PNG images to maintain aspect ratio and overflow if needed */
  .section-with-image__image img[src$=".png"] {
    max-width: none;
    width: auto;
    max-height: 400px;
		margin-right: -100px;
  }

  /* Reduce SVG size on news and contact pages for desktop */
  .news-page .page-image__img,
  .contact-page .contact-content > .page-image .page-image__img {
    max-width: 50%;
    width: 50%;
  }
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.menu-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hidden {
	display: none !important;
}

/* Mobile navigation */
@media screen and (max-width: 900px) {
  .site-header .wrapper {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .posts-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-dark-blue);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 32px 32px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }

  .posts-nav.is-open {
    right: 0;
  }

  .posts-nav__link {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid transparent;
    padding-left: 12px;
    text-align: left;
    transition: all 0.2s ease;
  }

  .posts-nav__link:hover,
  .posts-nav__link:focus {
    border-left-color: var(--color-orange);
    padding-left: 20px;
  }

  .posts-nav__link--active {
    border-left-color: var(--color-lighter-blue);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.is-visible {
    display: block;
    opacity: 1;
  }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .posts-nav,
  .menu-toggle__bar,
  .nav-overlay {
    transition: none !important;
  }
}

/* Disclaimer Footer */
.site-footer {
  background-color: var(--color-dark-blue);
  padding: 32px 24px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-disclaimer {
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  color: var(--color-white);
}

@media screen and (max-width: 600px) {
  .site-footer {
    padding: 24px 16px;
    margin-top: 48px;
  }

  .footer-disclaimer {
    font-size: 0.8125rem;
    text-align: left;
  }
}

/*# sourceMappingURL=main.css.map */
