/* === Base Font === */
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

/* === Headings === */

h1, h2, h3, h4 {
  color: #063a4b!important; /* or use var(--primary) if you set it */
}
h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing:0.5px;
  color:#063a4b;
}

h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h3{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

/* === Body Text === */
.text-lg {
  font-size: 18px;
}

.text-base {
  font-size: 16px;
}

.text-sm {
  font-size: 14px;
}

.text-xs {
  font-size: 12px;
}

/* === Muted Text === */
.text-muted {
  font-size: 16px;
  color: hsl(0, 0%, 45%);
}

/* === Highlighted Words (used inside headings or paragraphs) */
.highlight {
  font-weight: 700;
  color: #35b1a8!important; /* default accent/turquoise */
}

.highlight-yellow {
  color: #f6b911!important;
}

.highlight-orange {
  color: #f97316!important; /* optional brand orange */
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 14px;
  color: hsl(0, 0%, 45%);
}

/* Colors (already in :root if defined) */
.text-accent {
  color: #35bcbf;
}

.text-yellow {
  color: #ffcc66;
}


.hero-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #043548;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #043548;
  margin-bottom: 0.75rem;
}

.hero-description {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.highlight-box {
  background-color: #fffcf5; /* soft yellow background */
  border-left: 4px solid #ffcc66; /* golden left border */
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #043548; /* dark text */
  max-width: 100%; /* optional: keep it narrow */
}

.styled-bullets {
  list-style: none!important;        /* Removes default bullets */
  padding-left: 0;         /* Removes extra padding */
  margin: 0;
}

.styled-bullets li {
  position: relative;
  padding-left: 1.5rem;    /* Space for custom bullet */
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.styled-bullets li::before {
  content: '';             /* Custom bullet */
  width: 6px;
  height: 6px;
  background-color: #35bcbf; /* Your accent color */
  border-radius: 50%;      /* Makes it a circle */
  position: absolute;
  left: 0;
  top: 0.6em;               /* Centers vertically */
}

/*Lens pills*/
.lens-panel {
  background: #eef6f7;
  border: 1px solid rgba(4,53,72,.08);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 16px auto 28px;
  max-width: 800px; /* keep it from stretching too wide */
  text-align: center; /* center text and pills */
}

.lens-lead {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #043548;
  font-weight: 500;
}

.lens-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center pills in row */
  gap: 14px;
}

.lens-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px; /* slightly smaller */
  background: #fff;
  color: #073c49;
  font-weight: 700;
  border: 1px solid rgba(4,53,72,.12);
  border-radius: 12px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.lens-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  border-color: #cfe7ea;
}

.lens-chip:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(53,188,191,.25);
  border-color: #35bcbf;
}

/* Value tiles (flex version) */
.value-tiles{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.value-tile{
  flex: 1 1 calc(50% - 20px);      /* two-up on desktop */
  background: #fff;
  border: 2px solid #35bcbf;
	 border-left: 4px solid #35bcbf; /* Accent stripe */
  border-radius: 16px;
  padding: 22px 24px;
  color: #0f3742;
  line-height: 1.55;
  box-shadow: 0 1px 0 rgba(4, 53, 72, 0.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.value-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(4, 53, 72, 0.08);
  border-color: #28aeb1;
}


/* Centered heading with lines on both sides */
.rule-title{
  position: relative;
  text-align: center;
  margin: 24px 0 30px;
}

/* the horizontal rule */
.rule-title::before{
  content:"";
  position:absolute;
  top:50%;
  /* Center it */
  left:50%;
  transform: translate(-50%, -50%);
  /* Control the length */
  width: 60%;              /* try 50–70% */
  max-width: 640px;        /* optional cap */
  height:1px;
  background: rgba(4,53,72,.20);
}

/* the pill over the line */
.rule-title .rule-label{
  position: relative;
  z-index: 1;
  display: inline-block;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  background: #fff;             /* match your section bg */
  color:#043548;                    /* brand dark */
  /* If your section bg is NOT solid, this creates a clean gap around text */
  box-shadow: 0 0 0 6px #f6fbfb;
}

/* Optional: Responsive tweaks */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  .hero-heading {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1.25rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .lens-panel { padding: 18px; }
  .lens-chip { width: 100%; }
	  .value-tile{ flex-basis: 100%; }
	  .rule-title{ margin: 18px 0 22px; }
  .rule-title .rule-label{ padding: 5px 10px; }
}