:root {
  --ink: #122033;
  --muted: #657386;
  --line: #dfe5e8;
  --paper: #f5f7fa;
  --white: #ffffff;
  --graphite: #071525;
  --copper: #e71920;
  --mineral: #1d6f8f;
  --ocean: #0b4d78;
  --gold: #c28a35;
  --brand-red: #ed151c;
  --brand-black: #211714;
  --shadow: 0 24px 70px rgba(12, 24, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 17, 31, 0.86), rgba(5, 17, 31, 0.08));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 192px;
}

.brand img {
  width: 118px;
  height: auto;
  display: block;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 4px;
}

.brand span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 24px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-links a,
.nav-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: var(--white);
  font-size: 0.86rem;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.14);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switcher span {
  cursor: default;
}

.language-switcher .active {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
  padding-bottom: 138px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 17, 31, 0.9), rgba(5, 17, 31, 0.6) 38%, rgba(5, 17, 31, 0.18) 76%),
    linear-gradient(180deg, rgba(5, 17, 31, 0.1), rgba(5, 17, 31, 0.62));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: clamp(136px, 18vh, 190px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff6b70;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 62ch;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.92rem;
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-band {
  position: absolute;
  left: clamp(18px, 7vw, 96px);
  right: clamp(18px, 7vw, 96px);
  bottom: 26px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-band span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding-right: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
  font-size: 0.9rem;
}

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

section:not(.hero) {
  padding: clamp(84px, 9vw, 128px) 0;
}

.positioning,
.solutions {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.split h2,
.section-heading h2,
.partnership h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.split p:last-child,
.partnership p,
.integration p {
  color: var(--muted);
  font-size: 1.05rem;
}

.solutions {
  padding-top: clamp(68px, 7vw, 96px);
}

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

.solution-card {
  min-height: 232px;
  padding: 28px;
  border-top: 4px solid var(--mineral);
  background: #f4f7f6;
}

.solution-card:nth-child(2) {
  border-top-color: var(--copper);
}

.solution-card:nth-child(3) {
  border-top-color: var(--gold);
}

.solution-card:nth-child(4) {
  border-top-color: var(--ocean);
}

.solution-card span {
  display: block;
  margin-bottom: 48px;
  color: var(--copper);
  font-weight: 900;
}

.solution-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.14;
}

.solution-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.lifecycle {
  background: #edf2f1;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 850px;
}

.stage-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.stage-tab {
  min-height: 82px;
  padding: 14px;
  border: 1px solid #cad6d4;
  color: #415057;
  background: rgba(255, 255, 255, 0.56);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.stage-tab span {
  display: block;
  margin-bottom: 7px;
  color: var(--copper);
  font-size: 0.76rem;
}

.stage-tab.active {
  color: var(--white);
  border-color: var(--ocean);
  background: var(--ocean);
}

.stage-tab.active span {
  color: #f0d497;
}

.integration {
  background: var(--white);
}

.integration-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.tier-list {
  display: grid;
  gap: 12px;
}

.tier-list article {
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  min-height: 94px;
  align-items: center;
  padding: 22px;
  border-left: 4px solid var(--copper);
  background: #f6f4ef;
}

.tier-list article:nth-child(2) {
  border-left-color: var(--mineral);
}

.tier-list article:nth-child(3) {
  border-left-color: var(--ocean);
}

.tier-list strong {
  font-size: 1.08rem;
  line-height: 1.15;
}

.tier-list span {
  color: var(--muted);
}

.stage-panel {
  display: grid;
  grid-template-columns: 110px minmax(0, 1.2fr) minmax(220px, 0.85fr) minmax(220px, 0.85fr);
  gap: 30px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stage-number {
  color: var(--gold);
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 0.9;
}

.stage-main h3 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
}

.stage-main p,
.stage-detail li {
  color: var(--muted);
}

.stage-detail {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fbfcfb;
}

.stage-detail h4 {
  margin: 0 0 14px;
  color: var(--ink);
}

.stage-detail ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.chains {
  color: var(--white);
  background: var(--graphite);
}

.chains .eyebrow {
  color: #ff6b70;
}

.chain-system {
  display: grid;
  gap: 14px;
}

.chain-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(4, minmax(130px, 1fr));
  gap: 10px;
}

.chain-label,
.chain-step,
.shared-core span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.chain-label {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  border-left: 4px solid var(--copper);
}

.chain-label span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.minerals .chain-label {
  border-left-color: var(--mineral);
}

.tradechain .chain-label {
  border-left-color: var(--ocean);
}

.shared-core {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-left: calc(20% + 8px);
}

.shared-core span {
  min-height: 54px;
  color: #f4d997;
  background: rgba(197, 155, 65, 0.11);
}

.technology {
  background: #edf2f1;
}

.technology-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.technology-items {
  display: grid;
  gap: 16px;
}

.technology-items article {
  padding: 28px;
  border: 1px solid #cedbd8;
  background: rgba(255, 255, 255, 0.64);
}

.technology-items h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.technology-items p {
  margin-bottom: 0;
  color: var(--muted);
}

.trade {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 28, 36, 0.94), rgba(13, 28, 36, 0.76)),
    url("assets/surpbiz-resource-lifecycle-hero.png") center / cover;
}

.trade .eyebrow {
  color: #ff6b70;
}

.trade-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.trade-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.trade-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.trade-pillars span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.capabilities {
  background: var(--white);
}

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

.capability-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf8;
}

.capability-kicker {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.capability-card p {
  color: var(--muted);
}

.partnership {
  background: #e8ece7;
}

.partnership-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.models span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  font-weight: 850;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 24, 32, 0.95), rgba(12, 24, 32, 0.72)),
    url("assets/surpbiz-resource-lifecycle-hero.png") center / cover;
}

.contact .eyebrow {
  color: #ff6b70;
}

.contact-inner {
  max-width: 850px;
}

.contact h2 {
  margin-bottom: 28px;
}

.page-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 17, 31, 0.92), rgba(5, 17, 31, 0.68), rgba(5, 17, 31, 0.4)),
    url("assets/surpbiz-resource-lifecycle-hero.png") center / cover;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.content-band {
  background: var(--white);
}

.muted-band {
  background: #edf2f6;
}

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

.business-grid article {
  min-height: 250px;
  padding: 28px;
  border-top: 4px solid var(--brand-red);
  background: #f8fafc;
}

.business-grid article:nth-child(2) {
  border-top-color: var(--ocean);
}

.business-grid article:nth-child(3) {
  border-top-color: var(--mineral);
}

.business-grid article:nth-child(4) {
  border-top-color: var(--gold);
}

.business-grid h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
  line-height: 1.14;
}

.business-grid p {
  color: var(--muted);
}

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

.sample-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: 210px 1fr;
  border: 1px solid var(--line);
  background: var(--white);
}

.sample-visual {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #dfe7ee;
}

.sample-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 21, 37, 0.92), rgba(11, 77, 120, 0.78)),
    url("assets/surpbiz-resource-lifecycle-hero.png") center / cover;
}

.sample-placeholder::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.sample-placeholder span {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-copy {
  padding: 24px;
}

.sample-kicker {
  margin-bottom: 18px;
  color: var(--brand-red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-copy h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  line-height: 1.12;
}

.sample-copy p:last-child {
  color: var(--muted);
}

.spec-table {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(180px, 0.9fr) minmax(220px, 1.2fr) minmax(220px, 1.15fr);
}

.spec-row span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.spec-row span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.spec-head span {
  min-height: 58px;
  color: var(--white);
  background: var(--graphite);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-head span:first-child {
  color: var(--white);
}

.spec-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

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

.product-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-left: 4px solid var(--brand-red);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.capability-list {
  display: grid;
  gap: 16px;
}

.capability-list article {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-red);
  background: var(--white);
}

.capability-list article:nth-child(2) {
  border-left-color: var(--mineral);
}

.capability-list article:nth-child(3) {
  border-left-color: var(--gold);
}

.capability-list h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.capability-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.contact-strip {
  color: var(--white);
  background: var(--graphite);
}

.contact-strip .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-strip h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cbd5df;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.inquiry-form textarea,
.inquiry-form button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 54px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: #050f1d;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(180px, 0.55fr));
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.footer-brand img {
  width: 130px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
}

.footer-brand p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero-band,
  .stage-tabs,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stage-panel,
  .split,
  .partnership-layout,
  .integration-layout,
  .technology-layout,
  .trade-layout,
  .split-panel,
  .contact-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .stage-number {
    font-size: 3.6rem;
  }

  .chain-row {
    grid-template-columns: 1fr;
  }

  .shared-core {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
  }

  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .spec-head {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-cta {
    display: none;
  }

  .language-switcher {
    font-size: 0.72rem;
    gap: 6px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 104px;
    padding: 6px 8px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 860px;
    align-items: flex-start;
    padding-bottom: 200px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-band {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
    bottom: 16px;
  }

  .hero-band span {
    min-height: 32px;
    font-size: 0.82rem;
  }

  .stage-tabs,
  .capability-grid,
  .shared-core,
  .models,
  .solution-grid,
  .trade-pillars,
  .business-grid,
  .sample-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .contact-strip .section-inner {
    display: grid;
  }

  .tier-list article {
    grid-template-columns: 1fr;
  }

  .stage-tab {
    min-height: 54px;
  }

  .stage-detail {
    min-height: auto;
  }
}
