
:root {
  color-scheme: light;
  --brand-primary: #003D33;
  --brand-secondary: #074553;
  --brand-accent: #008E5A;
  --brand-accent-strong: #00B874;
  --brand-blue: #10697D;
  --text: #121212;
  --muted: #5f6f6b;
  --line: #dfe8e5;
  --surface: #ffffff;
  --surface-soft: #f4f8f6;
  --surface-blue: #eef7fa;
  --warning-soft: #fff6db;
  --shipped-soft: #e7f6ef;
  --shadow: 0 20px 50px rgb(0 61 51 / 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-soft);
  color: var(--text);
  font-family: "Noto Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  min-height: 430px;
  background-image:
    linear-gradient(90deg, rgb(0 61 51 / 0.96), rgb(7 69 83 / 0.82)),
    url("https://fibointercon.com/wp-content/uploads/2025/05/F1200-IMG_7868.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.hero-inner,
.content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 0 88px;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.36);
  border-radius: 8px;
  background: rgb(0 184 116 / 0.18);
  color: #ffffff;
  font-size: 20px;
}

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-pill,
.chip,
.lane-count {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.2;
}

.status-pill {
  border: 1px solid rgb(255 255 255 / 0.28);
  padding: 8px 12px;
  background: rgb(255 255 255 / 0.12);
}

.hero-copy {
  max-width: 780px;
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8ff2c8;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 730px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 0.86);
  font-size: 1.125rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.stat {
  min-width: 138px;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgb(0 61 51 / 0.38);
}

.stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
}

.stat-label {
  display: block;
  color: rgb(255 255 255 / 0.72);
  font-size: 0.8125rem;
}

.content {
  display: grid;
  gap: 22px;
  margin-top: -54px;
  padding-bottom: 72px;
}

.roadmap-toolbar,
.empty-state,
.lane {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.roadmap-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
}

.toolbar-copy h2 {
  margin: 0;
  color: var(--brand-primary);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.toolbar-copy p {
  margin: 4px 0 0;
  color: var(--muted);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.chip {
  padding: 7px 10px;
  background: var(--surface-blue);
  color: var(--brand-secondary);
}

.empty-state {
  display: grid;
  gap: 8px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.94), rgb(238 247 250 / 0.94));
}

.empty-state h2 {
  margin: 0;
  color: var(--brand-primary);
  font-size: 1.5rem;
}

.empty-state p {
  max-width: 720px;
  margin: 0;
  color: #3e514d;
}

.roadmap-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lane {
  min-width: 0;
  overflow: hidden;
}

.lane-header {
  display: grid;
  gap: 8px;
  min-height: 154px;
  border-bottom: 1px solid var(--line);
  padding: 20px;
}

.lane-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lane-heading h2 {
  margin: 0;
  color: var(--brand-primary);
  font-size: 1.35rem;
}

.lane-count {
  justify-content: center;
  min-width: 42px;
  padding: 7px 10px;
  background: var(--brand-primary);
  color: #ffffff;
}

.lane-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.item-list {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 16px;
}

.roadmap-item {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
}

.roadmap-item h3 {
  margin: 0;
  color: var(--brand-primary);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.roadmap-item p {
  margin: 0;
  color: #344c47;
  font-size: 0.9375rem;
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.item-meta .chip {
  background: #e7f6ef;
  color: #00594b;
  font-size: 0.8125rem;
}

.lane-empty {
  display: grid;
  min-height: 148px;
  place-items: center;
  border: 1px dashed #c8d8d4;
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  background: var(--brand-primary);
  color: #ffffff;
}

.not-found-card {
  width: min(560px, 100%);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 8px;
  padding: 32px;
  background: rgb(255 255 255 / 0.08);
}

.not-found h1 {
  font-size: 2rem;
}

.not-found a {
  color: #8ff2c8;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .roadmap-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-inner,
  .content {
    width: min(100% - 28px, 1180px);
  }

  .hero-inner {
    padding-top: 20px;
  }

  .topline,
  .roadmap-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .chip-list {
    justify-content: flex-start;
  }

  .hero-copy {
    padding-top: 44px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .roadmap-board {
    grid-template-columns: 1fr;
  }

  .lane-header {
    min-height: auto;
  }
}
