:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #5c6875;
  --quiet: #7a8794;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --line: #d9e1e6;
  --accent: #0a5a52;
  --accent-dark: #073f3a;
  --gold: #b8892f;
  --blue: #163a5f;
  --danger: #8a302d;
  --shadow: 0 26px 80px rgba(16, 24, 32, .10);
  --sans: "Trebuchet MS", Verdana, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 10%, rgba(10, 90, 82, .12), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(184, 137, 47, .12), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #f8fbfc 52%, #eef4f6 100%);
  color: var(--ink);
  font-family: var(--serif);
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(217, 225, 230, .78);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: var(--soft);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 34px;
  align-items: stretch;
  padding: 64px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -.045em;
}

h1 {
  max-width: 800px;
  margin-top: 26px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .92;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.5;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
  box-shadow: 0 12px 40px rgba(16, 24, 32, .06);
}

.btn.primary {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #fff;
}

.hero-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 470px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(246, 250, 251, .78)),
    radial-gradient(circle at 72% 18%, rgba(10, 90, 82, .14), transparent 18rem);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -135px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(10, 90, 82, .2);
  border-radius: 50%;
}

.hero-logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.data-showcase {
  gap: 16px;
}

.showcase-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.showcase-head p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  line-height: 1.5;
}

.data-rotator {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-height: 0;
  padding: 16px;
  border: 1px solid rgba(217, 225, 230, .9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 12%, rgba(10, 90, 82, .11), transparent 10rem),
    radial-gradient(circle at 88% 80%, rgba(184, 137, 47, .13), transparent 12rem),
    rgba(255, 255, 255, .72);
}

.active-data-card {
  padding: 18px;
  border: 1px solid rgba(217, 225, 230, .92);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
}

.active-data-card h2 {
  margin-top: 8px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: .98;
}

.active-data-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  line-height: 1.52;
}

.active-data-card .data-action {
  color: var(--ink);
}

.data-kicker {
  color: var(--accent);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.data-tab-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.data-tab {
  appearance: none;
  border: 1px solid rgba(217, 225, 230, .96);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(92, 104, 117, .26);
  color: var(--muted);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.data-tab:hover,
.data-tab:focus-visible {
  background: rgba(10, 90, 82, .5);
  color: var(--ink);
  border-color: rgba(10, 90, 82, .34);
  outline: none;
}

.data-tab.is-active {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(260px, .25fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.section h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: .98;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  line-height: 1.55;
}

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

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

.card {
  min-height: 210px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 55px rgba(16, 24, 32, .07);
}

.card.compact { min-height: 0; }

.card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.02;
}

.card p,
.card li {
  color: var(--muted);
  font-family: var(--sans);
  line-height: 1.58;
}

.card p { margin: 0; }

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e8f2f0;
  color: var(--accent-dark);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.role-card {
  border-top: 5px solid var(--accent);
}

.role-card:nth-child(2) { border-top-color: var(--gold); }
.role-card:nth-child(3) { border-top-color: var(--blue); }
.role-card:nth-child(4) { border-top-color: var(--danger); }

.strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 34px 0;
  padding: 26px;
  border: 1px solid rgba(10, 90, 82, .25);
  border-radius: 28px;
  background: linear-gradient(135deg, #083f3a, #0a5a52);
  color: #fff;
  box-shadow: var(--shadow);
}

.strip p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .78);
  font-family: var(--sans);
}

.strip .btn {
  color: var(--accent-dark);
  background: #fff;
  border-color: #fff;
}

.detail-hero {
  padding: 56px 0 24px;
}

.detail-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 6vw, 76px);
}

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

.list li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
  gap: 18px;
  align-items: stretch;
}

.contact-line {
  display: block;
  margin-top: 12px;
  color: var(--accent-dark);
  font-family: var(--sans);
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
}

.footer {
  padding: 40px 0 54px;
  color: var(--quiet);
  font-family: var(--sans);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

@media (max-width: 920px) {
  .hero,
  .section-head,
  .contact-box,
  .strip {
    grid-template-columns: 1fr;
  }

  .grid,
  .grid.two,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .hero-card { min-height: 360px; }
  .showcase-head { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; }
}

@media (max-width: 580px) {
  .page-shell { width: min(100% - 26px, 1180px); }
  .nav { flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .hero { padding-top: 38px; }
  .card { padding: 21px; border-radius: 24px; }
  .data-tab { font-size: 11px; }
}
