
:root {
  --navy: #17395D;
  --deep-navy: #132537;
  --warm-white: #FBFAF7;
  --paper: #FFFFFF;
  --gold: #C5A05B;
  --slate: #5B6674;
  --sand: #D7D2C7;
  --teal: #0C7E8D;
  --shadow: 0 24px 70px rgba(19, 37, 55, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Aptos, Calibri, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--deep-navy);
  background: radial-gradient(circle at top right, rgba(197, 160, 91, 0.13), transparent 32rem), linear-gradient(180deg, var(--warm-white) 0%, #f6f2ea 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--navy); }
.page { min-height: 100vh; display: flex; flex-direction: column; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
header { padding: 24px 0 14px; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.mark { width: 46px; height: 46px; border-radius: 14px; background: var(--deep-navy); color: var(--warm-white); display: grid; place-items: center; font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 700; letter-spacing: -0.05em; box-shadow: 0 12px 30px rgba(19, 37, 55, 0.18); }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: clamp(18px, 2.3vw, 25px); font-weight: 700; line-height: 1.1; color: var(--navy); white-space: nowrap; }
.brand-subtitle { font-size: 12px; color: var(--slate); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-links a { color: var(--slate); font-size: 14px; padding: 9px 12px; border-radius: 999px; transition: background 180ms ease, color 180ms ease; }
.nav-links a:hover { background: rgba(19, 37, 55, 0.07); color: var(--deep-navy); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 13px 18px; font-size: 14px; font-weight: 700; border: 1px solid transparent; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--navy); color: var(--warm-white); box-shadow: 0 14px 34px rgba(23, 57, 93, 0.24); }
.button.secondary { background: rgba(255, 255, 255, 0.72); border-color: rgba(215, 210, 199, 0.95); color: var(--deep-navy); }
main { flex: 1; }
.hero { padding: 30px 0 54px; }
.hero-card { position: relative; overflow: hidden; background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(215, 210, 199, 0.88); border-radius: calc(var(--radius) + 10px); box-shadow: var(--shadow); padding: clamp(30px, 7vw, 78px); }
.hero-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(197, 160, 91, 0.18), transparent 38%), radial-gradient(circle at 90% 10%, rgba(12, 126, 141, 0.12), transparent 24rem); pointer-events: none; }
.hero-content { position: relative; max-width: 820px; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 20px; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); line-height: 1.06; margin: 0; }
h1 { font-size: clamp(42px, 7.2vw, 82px); letter-spacing: -0.055em; max-width: 900px; }
.lead { margin: 24px 0 0; max-width: 690px; color: var(--slate); font-size: clamp(18px, 2.1vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.section { padding: 48px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.55fr); gap: 36px; align-items: end; margin-bottom: 22px; }
h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.04em; }
.section-heading p, .quiet { color: var(--slate); margin: 0; font-size: 16px; }
.cards, .blog-grid, .people-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

.people-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.section-note { color: var(--slate); margin: 0; font-size: 16px; }
.card, .post-card, .person-card { background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(215, 210, 199, 0.9); border-radius: var(--radius); padding: 26px; min-height: 220px; box-shadow: 0 10px 34px rgba(19, 37, 55, 0.06); }
.card-number { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: rgba(197, 160, 91, 0.18); color: var(--navy); font-weight: 800; margin-bottom: 20px; }
h3 { font-size: 23px; letter-spacing: -0.025em; margin-bottom: 12px; }
.card p, .post-card p, .person-card p { color: var(--slate); margin: 0; font-size: 15.5px; }
.post-card { display: flex; flex-direction: column; min-height: 260px; }
.post-card .meta, .article-meta { color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; margin-bottom: 12px; }
.post-card h3 { margin-bottom: 12px; }
.post-card .read-more { margin-top: auto; padding-top: 24px; color: var(--navy); font-weight: 800; font-size: 14px; }
.person-card { min-height: auto; display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 20px; align-items: start; overflow: hidden; }
.people-grid .person-card > img, .person-card img, .author-mini img { display: block; width: 112px; max-width: 112px; height: 112px; max-height: 112px; object-fit: cover; border-radius: 22px; border: 1px solid rgba(215, 210, 199, 0.95); background: white; }
.author-mini img { width: 54px; max-width: 54px; height: 54px; max-height: 54px; border-radius: 16px; }
.person-card h3 { margin-bottom: 4px; }
.person-role { color: var(--teal); font-weight: 800; font-size: 13px; margin-bottom: 10px; }
.linkedin-link { display: inline-flex; margin-top: 14px; color: var(--navy); font-weight: 800; font-size: 14px; }
.author-mini { display: flex; gap: 14px; align-items: center; margin: 26px 0 0; }
.author-mini img { width: 54px; height: 54px; border-radius: 16px; }
.author-mini strong { display: block; color: var(--deep-navy); }
.author-mini span { display: block; color: var(--slate); font-size: 14px; }
.focus-panel { background: var(--deep-navy); color: var(--warm-white); border-radius: calc(var(--radius) + 6px); padding: clamp(28px, 5.2vw, 54px); display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.6fr); gap: 38px; align-items: center; box-shadow: var(--shadow); }
.focus-panel h2 { color: var(--warm-white); }
.focus-panel p { color: rgba(251, 250, 247, 0.74); margin: 18px 0 0; font-size: 17px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { border: 1px solid rgba(251, 250, 247, 0.22); background: rgba(251, 250, 247, 0.08); color: var(--warm-white); border-radius: 999px; padding: 10px 13px; font-size: 14px; font-weight: 700; }
.contact { padding: 48px 0 86px; }
.contact-box { background: rgba(255, 255, 255, 0.76); border: 1px solid rgba(215, 210, 199, 0.95); border-radius: var(--radius); padding: clamp(26px, 5vw, 42px); display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.contact-box h2 { font-size: clamp(28px, 3.2vw, 40px); }
.contact-box p { color: var(--slate); margin: 12px 0 0; max-width: 640px; }
.page-hero { padding: 58px 0 28px; }
.page-hero .lead { max-width: 760px; }
.breadcrumb { color: var(--slate); font-size: 14px; margin-bottom: 18px; }
.breadcrumb a { color: var(--navy); font-weight: 700; }
.article-shell { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.article-card { background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(215, 210, 199, 0.9); border-radius: var(--radius); box-shadow: 0 10px 34px rgba(19, 37, 55, 0.06); padding: clamp(26px, 5vw, 48px); }
.article-card h1 { font-size: clamp(38px, 6vw, 64px); }
.article-subtitle { color: var(--slate); font-size: 20px; line-height: 1.55; margin: 20px 0 0; }
.article-body { color: var(--deep-navy); font-size: 18px; line-height: 1.75; margin-top: 36px; }
.article-body p { margin: 0 0 22px; }
.article-body h2 { margin: 42px 0 16px; font-size: clamp(28px, 3.6vw, 38px); }
.article-body ul { color: var(--slate); padding-left: 22px; margin: 0 0 24px; }
.article-body li { margin-bottom: 10px; }
.note-box { background: rgba(197, 160, 91, 0.12); border: 1px solid rgba(197, 160, 91, 0.28); border-radius: 18px; padding: 18px; color: var(--deep-navy); margin: 24px 0; }
.json-note { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; font-size: 13px; background: rgba(19, 37, 55, 0.06); border: 1px solid rgba(19, 37, 55, 0.1); padding: 14px; border-radius: 14px; overflow-x: auto; }
footer { border-top: 1px solid rgba(19, 37, 55, 0.12); padding: 28px 0; margin-top: 72px; }
.footer-legal { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; font-size: 13px; line-height: 1.5; color: rgba(19, 37, 55, 0.68); }
.footer-left, .footer-right { max-width: 520px; }
.footer-brand { font-family: Georgia, "Times New Roman", serif; font-weight: 700; color: var(--deep-navy); margin-bottom: 6px; }
.footer-right { text-align: right; }
.footer-legal p { margin: 0 0 6px; }
@media (max-width: 820px) {
  .shell, .article-shell { width: min(100% - 28px, 1120px); }
  .nav { align-items: flex-start; }
  .brand-name { white-space: normal; }
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 22px; }
  .section-heading, .focus-panel, .contact-box { grid-template-columns: 1fr; }
  .cards, .blog-grid, .people-grid, .platform-grid { grid-template-columns: 1fr; }
  .card, .post-card { min-height: auto; }
  .person-card { grid-template-columns: 88px minmax(0, 1fr); }
  .people-grid .person-card > img, .person-card img { width: 88px; max-width: 88px; height: 88px; max-height: 88px; }
  .contact-box { align-items: flex-start; }
}
@media (max-width: 700px) { .footer-legal { flex-direction: column; gap: 18px; } .footer-right { text-align: left; } }
@media (max-width: 520px) { header { padding-top: 18px; } .mark { width: 42px; height: 42px; } .button { width: 100%; } .nav .button { width: auto; padding-inline: 13px; } .hero-card, .article-card { padding: 28px 22px; } .person-card { grid-template-columns: 1fr; } }


/* Team section hardening: keep uploaded profile photos from rendering full-size. */
.people-grid .person-card > img {
  width: 112px !important;
  max-width: 112px !important;
  height: 112px !important;
  max-height: 112px !important;
  object-fit: cover !important;
}
@media (max-width: 820px) {
  .people-grid .person-card > img { width: 88px !important; max-width: 88px !important; height: 88px !important; max-height: 88px !important; }
}
@media (max-width: 520px) {
  .people-grid .person-card > img { width: 100% !important; max-width: 320px !important; height: auto !important; max-height: none !important; aspect-ratio: 1 / 1; }
}


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

.platform-tile {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(19, 57, 93, 0.14);
  box-shadow: 0 24px 70px rgba(19, 37, 55, 0.10);
  isolation: isolate;
}

.platform-tile::before,
.platform-tile::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.platform-tile::before {
  width: 260px;
  height: 260px;
  border-radius: 999px;
  right: -90px;
  top: -100px;
  opacity: 0.44;
  filter: blur(1px);
}

.platform-tile::after {
  left: 28px;
  right: 28px;
  bottom: 74px;
  height: 1px;
  opacity: 0.28;
}

.platform-derco {
  background:
    radial-gradient(circle at 86% 12%, rgba(98, 217, 148, 0.36), transparent 34%),
    linear-gradient(135deg, #061827 0%, #0b2b3a 58%, #eaf8f2 140%);
  color: #ffffff;
}

.platform-derco::before { background: rgba(98, 217, 148, 0.26); }
.platform-derco::after { background: linear-gradient(90deg, rgba(98, 217, 148, 0.0), rgba(98, 217, 148, 0.92), rgba(98, 217, 148, 0.0)); }

.platform-dataparks {
  background:
    linear-gradient(90deg, rgba(112, 226, 202, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(112, 226, 202, 0.10) 1px, transparent 1px),
    radial-gradient(circle at 86% 15%, rgba(60, 153, 255, 0.30), transparent 32%),
    linear-gradient(135deg, #07111e 0%, #10213d 58%, #12382f 125%);
  background-size: 34px 34px, 34px 34px, auto, auto;
  color: #ffffff;
}

.platform-dataparks::before { background: rgba(66, 214, 177, 0.24); }
.platform-dataparks::after { background: linear-gradient(90deg, rgba(60, 153, 255, 0.0), rgba(112, 226, 202, 0.82), rgba(60, 153, 255, 0.0)); }

.platform-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.platform-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: rgba(255, 255, 255, 0.96);
  color: #10213d;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.platform-derco .platform-mark { color: #0b2b3a; }

.platform-dataparks .platform-mark {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #07111e;
}

.platform-name {
  margin: 0;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.03em;
}

.platform-kicker {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-summary {
  margin: 28px 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.62;
  max-width: 560px;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.platform-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  padding: 11px 15px;
  color: #0b1e32;
  background: rgba(255, 255, 255, 0.93);
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.platform-link:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

@media (max-width: 700px) {
  .platform-tile { min-height: auto; padding: 22px; border-radius: 24px; }
  .platform-name { font-size: 26px; }
}
