/* =============== RESET =============== */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =============== TOKENS =============== */
:root {
  --bo-ink: #0b1220;
  --bo-muted: #6a7a89;
  --bo-accent: #0f766e;
  --bo-accent-soft: #e0f2f1;
  --bo-bg: #ffffff;
  --bo-surface: #f3f6fb;
  --bo-border: #dde5f0;
  --bo-radius-lg: 20px;
  --bo-radius-md: 14px;
  --bo-radius-pill: 999px;
  --bo-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --bo-container: 1180px;
}

/* Generic container */
.bo-container {
  width: 100%;
  max-width: var(--bo-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 32px);
}

/* Simple reveal (optional) */
.bo-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.bo-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============== HERO =============== */
.bo-hero {
  position: relative;
  background: radial-gradient(circle at top left, #e0f2fe 0, #eff6ff 32%, #ffffff 80%);
  padding: clamp(72px, 9vh, 110px) 0 clamp(48px, 6vh, 72px);
}

.bo-hero-inner {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.9fr);
  align-items: center;
}

@media (max-width: 960px) {
  .bo-hero-inner {
    grid-template-columns: 1fr;
  }
}

/* Left */
.bo-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--bo-radius-pill);
  background: rgba(15, 118, 110, 0.08);
  color: var(--bo-accent);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}

.bo-hero-title {
  margin: 0 0 10px;
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.12;
  color: var(--bo-ink);
  font-weight: 800;
}

.bo-hero-title span {
  color: var(--bo-accent);
}

.bo-hero-sub {
  margin: 0 0 14px;
  color: var(--bo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.bo-hero-sub + .bo-hero-sub {
  margin-top: 4px;
}

.bo-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.bo-btn-primary,
.bo-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bo-btn-primary {
  background: linear-gradient(135deg, #0f766e, #155e75);
  color: #ffffff;
  box-shadow: var(--bo-shadow-soft);
}

.bo-btn-primary:hover {
  transform: translateY(-2px);
}

.bo-btn-ghost {
  background: rgba(15, 118, 110, 0.05);
  border-color: rgba(15, 118, 110, 0.25);
  color: var(--bo-accent);
}

.bo-btn-ghost:hover {
  background: #0f766e;
  color: #ffffff;
  border-color: #0f766e;
}

/* Hero stats */
.bo-hero-stats {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.bo-stat {
  min-width: 110px;
}

.bo-stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bo-muted);
}

.bo-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--bo-ink);
}

/* Right */
.bo-hero-media {
  justify-self: stretch;
}

.bo-hero-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--bo-radius-lg);
  box-shadow: var(--bo-shadow-soft);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.bo-hero-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.bo-hero-image-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.bo-hero-pill {
  position: absolute;
  inset: auto 14px 14px auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #e5f9f6;
  font-size: 11px;
}

.bo-hero-meta {
  display: grid;
  gap: 4px;
}

.bo-hero-meta h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--bo-ink);
}

.bo-hero-meta p {
  margin: 0;
  font-size: 13px;
  color: var(--bo-muted);
}

/* =============== OVERVIEW =============== */
.bo-overview {
  background: var(--bo-bg);
  padding: clamp(40px, 5vh, 70px) 0;
}

.bo-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.9fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

@media (max-width: 960px) {
  .bo-overview-grid {
    grid-template-columns: 1fr;
  }
}

.bo-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--bo-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
}

.bo-section-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--bo-ink);
  font-weight: 800;
}

.bo-section-text {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--bo-muted);
  line-height: 1.7;
}

.bo-check-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
}

.bo-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--bo-ink);
  font-weight: 500;
}

.bo-check-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--bo-accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15);
}

/* side card */
.bo-overview-card {
  background: var(--bo-surface);
  border-radius: var(--bo-radius-md);
  padding: 18px 16px;
  border: 1px solid var(--bo-border);
}

.bo-overview-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bo-ink);
}

.bo-overview-card p {
  margin: 0;
  font-size: 13px;
  color: var(--bo-muted);
}

/* =============== TYPES GRID =============== */
.bo-types {
  background: #0f172a;
  color: #e5e7eb;
  padding: clamp(46px, 6vh, 80px) 0 clamp(46px, 6vh, 80px);
}

.bo-types-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}

.bo-types-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6ee7b7;
}

.bo-types-title {
  margin: 4px 0 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #f9fafb;
}

.bo-types-sub {
  max-width: 520px;
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

.bo-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .bo-types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .bo-types-grid {
    grid-template-columns: 1fr;
  }
}

.bo-type-card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.16), rgba(15, 23, 42, 0.98));
  border-radius: 18px;
  padding: 16px 15px 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.55);
  display: grid;
  gap: 6px;
  overflow: hidden;
}

.bo-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  font-size: 11px;
  color: #a5f3fc;
}

.bo-type-title {
  margin: 4px 0 2px;
  font-size: 15px;
  font-weight: 700;
  color: #f9fafb;
}

.bo-type-text {
  margin: 0;
  font-size: 13px;
  color: #cbd5f5;
  line-height: 1.6;
}

.bo-type-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  font-size: 11px;
  color: #9ca3af;
}

/* =============== PROCESS =============== */
.bo-process {
  background: var(--bo-bg);
  padding: clamp(46px, 6vh, 80px) 0;
}

.bo-process-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  gap: clamp(24px, 4vw, 40px);
}

@media (max-width: 960px) {
  .bo-process-inner {
    grid-template-columns: 1fr;
  }
}

.bo-process-intro p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--bo-muted);
  line-height: 1.7;
}

/* timeline */
.bo-timeline {
  position: relative;
}

.bo-timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.bo-timeline-list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #0f766e 0, #d1d5db 35%, #e5e7eb 100%);
}

.bo-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 8px 0 12px;
}

.bo-timeline-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #0f172a;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  color: #a5f3fc;
  font-size: 16px;
}

.bo-timeline-content {
  padding-bottom: 8px;
  border-bottom: 1px dashed #e5e7eb;
}

.bo-timeline-item:last-child .bo-timeline-content {
  border-bottom: none;
}

.bo-timeline-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bo-ink);
}

.bo-timeline-text {
  margin: 0;
  font-size: 13px;
  color: var(--bo-muted);
  line-height: 1.6;
}

/* =============== INDUSTRIES / APPLICATIONS =============== */
.bo-industries {
  background: var(--bo-surface);
  padding: clamp(40px, 5vh, 70px) 0 60px;
}

.bo-industries-header {
  text-align: left;
  margin-bottom: 18px;
}

.bo-industries-header p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--bo-muted);
  max-width: 600px;
}

.bo-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1024px) {
  .bo-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .bo-industries-grid {
    grid-template-columns: 1fr;
  }
}

.bo-industry-card {
  background: #ffffff;
  border-radius: var(--bo-radius-md);
  border: 1px solid var(--bo-border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 14px 14px 16px;
  display: grid;
  gap: 4px;
}

.bo-industry-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--bo-ink);
}

.bo-industry-text {
  margin: 0;
  font-size: 13px;
  color: var(--bo-muted);
}

/* Simple intersection observer hook – optional */
@media (prefers-reduced-motion: no-preference) {
  .bo-reveal {
    will-change: opacity, transform;
  }
}


/* Make sure the boiler hero clears the fixed header */
.bo-hero {
  margin-top: 80px;   /* adjust if your header is taller/shorter */
}

/* Slightly less on mobiles if you like */
@media (max-width: 768px) {
  .bo-hero {
    margin-top: 72px;
  }
}


/* ============ MISSION / VISION / VALUES ============ */
.bo-mvv-section {
  background: #ffffff;
  padding: clamp(40px, 5vh, 70px) 0;
}

/* tabs row */
.bo-mvv-tabs {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: #f3f4f6;
  margin-bottom: clamp(28px, 4vh, 36px);
  gap: 4px;
}

.bo-mvv-tab {
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--bo-muted);
  transition: background 0.2s ease, color 0.2s ease,
              box-shadow 0.2s ease, transform 0.2s ease;
}

.bo-mvv-tab.is-active {
  background: #ffffff;
  color: var(--bo-ink);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

/* content layout */
.bo-mvv-content-wrap {
  position: relative;
}

.bo-mvv-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
}

.bo-mvv-content.is-active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* columns */
.bo-mvv-text {
  flex: 1;
}

.bo-mvv-text h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800;
  color: var(--bo-ink);
}

.bo-mvv-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--bo-muted);
}

.bo-mvv-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bo-mvv-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

/* responsive: stack on small screens */
@media (max-width: 768px) {
  .bo-mvv-content.is-active {
    flex-direction: column;
    align-items: flex-start;
  }

  .bo-mvv-image {
    width: 100%;
  }
}
