/* OncoGenox / GenoXvision — rebuilt from Claude artifact
   https://claude.ai/public/artifacts/6203d8a9-aa25-46cb-9513-a0d0d2f50f78 */

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}

.ogp {
  --navy: #0f1f2e;
  --deep: #0a1622;
  --teal: #2dbfa0;
  --tealdk: #189b80;
  --grey: #5d6e7c;
  --line: #e4eaef;
  --wash: #f5f8fa;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #16232f;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
.ogp * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.ogp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Nav ---------- */
.ogp-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.ogp-nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
}
.ogp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.ogp-l-sm {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  color: var(--grey);
  font-weight: 600;
  line-height: 1;
}
.ogp-l-lg {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.ogp-l-tag {
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--tealdk);
  font-weight: 600;
}
.ogp-links {
  display: flex;
  gap: 34px;
}
.ogp-links a {
  font-size: 15px;
  color: var(--grey);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.ogp-links a:hover {
  color: var(--navy);
}
.ogp-links a.ogp-on {
  color: var(--navy);
  font-weight: 600;
}
.ogp-nav-cta {
  display: flex;
  gap: 11px;
  align-items: center;
  flex-shrink: 0;
}
.ogp-btn {
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 9px;
  padding: 12px 21px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    transform 0.15s ease;
}
.ogp-btn-ghost {
  border-color: var(--line);
  color: var(--navy);
  background: #fff;
}
.ogp-btn-ghost:hover {
  border-color: var(--teal);
}
.ogp-btn-teal {
  background: var(--teal);
  color: #fff;
}
.ogp-btn-teal:hover {
  background: var(--tealdk);
}
.ogp-btn-light {
  background: #fff;
  color: var(--navy);
}
.ogp-btn-light:hover {
  background: var(--wash);
}

.ogp-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.ogp-menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.ogp-head {
  padding: 92px 0 70px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.ogp-head:before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 760px;
  height: 760px;
  background: radial-gradient(
    ellipse at center,
    rgba(45, 191, 160, 0.09),
    transparent 62%
  );
}
.ogp-head-in {
  position: relative;
  max-width: 900px;
}
.ogp-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--tealdk);
  margin-bottom: 18px;
}
.ogp-head h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.07;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.ogp-head h1 em {
  color: var(--teal);
  font-style: normal;
}
.ogp-head p {
  font-size: 19px;
  line-height: 1.64;
  color: var(--grey);
  margin-top: 24px;
  max-width: 760px;
}
.ogp-head-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ---------- Index strip ---------- */
.ogp-index {
  background: var(--wash);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.ogp-index-in {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.ogp-index-in a {
  text-decoration: none;
}
.ogp-index-in span {
  font-size: 13px;
  color: var(--grey);
}
.ogp-index-in b {
  font-size: 11px;
  color: var(--tealdk);
  display: block;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

/* ---------- Modules ---------- */
.ogp-mod {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}
.ogp-mod-in {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.ogp-flip .ogp-mod-in {
  direction: rtl;
}
.ogp-flip .ogp-mod-in > * {
  direction: ltr;
}
.ogp-mod-n {
  font-size: 12px;
  color: var(--tealdk);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  font-weight: 600;
}
.ogp-mod h2 {
  font-size: clamp(25px, 2.8vw, 35px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.16;
  letter-spacing: -0.03em;
}
.ogp-tagline {
  font-size: 18px;
  font-weight: 500;
  color: var(--tealdk);
  margin-top: 12px;
}
.ogp-mod p {
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--grey);
  margin-top: 18px;
  max-width: 780px;
}
.ogp-guard {
  margin-top: 20px;
  padding: 14px 18px;
  border-left: 3px solid var(--teal);
  background: rgba(45, 191, 160, 0.06);
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy);
  border-radius: 0 8px 8px 0;
  max-width: 780px;
}

/* ---------- Product mock cards ---------- */
.ogp-card {
  background: var(--deep);
  border-radius: 16px;
  padding: 24px 24px 0;
  position: relative;
  overflow: hidden;
  height: 360px;
  box-shadow: 0 26px 60px -30px rgba(10, 22, 34, 0.6);
}
.ogp-card-fit {
  height: auto;
  padding-bottom: 22px;
}
.ogp-card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}
.ogp-card-t {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #7e93a4;
}
.ogp-badge {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
  background: rgba(45, 191, 160, 0.16);
  color: var(--teal);
}
.ogp-badge-warn {
  background: rgba(217, 119, 6, 0.2);
  color: #f0a742;
}
.ogp-flag {
  background: rgba(217, 119, 6, 0.13);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 10px;
  padding: 13px 15px;
  margin-bottom: 16px;
}
.ogp-flag-t {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #f0a742;
  margin-bottom: 5px;
}
.ogp-flag-b {
  font-size: 12.5px;
  color: #e6d4b4;
  line-height: 1.5;
}
.ogp-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  padding: 12px 15px;
  margin-bottom: 8px;
}
.ogp-line-l {
  font-size: 12.5px;
  color: #8fa3b2;
}
.ogp-line-r {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}
.ogp-muted {
  color: #7e93a4;
}
.ogp-blur {
  filter: blur(4.5px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.ogp-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(10, 22, 34, 0), rgba(10, 22, 34, 0.96) 62%);
}
.ogp-more {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  font-size: 11.5px;
  color: #6c8393;
  padding: 0 20px;
}

/* ---------- Research / charts ---------- */
.ogp-research {
  background: var(--wash);
}
.ogp-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.ogp-chart {
  background: var(--deep);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 56px -30px rgba(10, 22, 34, 0.6);
}
.ogp-chart svg {
  display: block;
  width: 100%;
  height: auto;
}
.ogp-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 11px;
  color: #8fa3b2;
}
.ogp-legend i {
  display: inline-block;
  width: 14px;
  height: 2.5px;
  margin-right: 6px;
  vertical-align: middle;
  border-radius: 2px;
}
.ogp-legend em {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.ogp-risk {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 10px;
  color: #5d7484;
}
.ogp-risk th,
.ogp-risk td {
  padding: 4px 0;
  text-align: center;
  font-weight: 400;
}
.ogp-risk th:first-child,
.ogp-risk td:first-child {
  text-align: left;
  color: #7e93a4;
}
.ogp-risk tr + tr td {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ogp-caption {
  font-size: 12.5px;
  color: var(--grey);
  margin-top: 18px;
  font-style: italic;
}

/* ---------- CTA ---------- */
.ogp-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 96px 0;
}
.ogp-cta h2 {
  font-size: clamp(27px, 3.5vw, 43px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.ogp-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: #8fa3b2;
  max-width: 620px;
  margin: 20px auto 32px;
}
.ogp-cta-btns {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Resources ---------- */
.ogr-sec {
  padding: 68px 0;
}
.ogr-group {
  margin-bottom: 56px;
}
.ogr-group:last-of-type {
  margin-bottom: 0;
}
.ogr-group-h {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 26px;
}
.ogr-group-h h2 {
  font-size: 13px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--tealdk);
  white-space: nowrap;
}
.ogr-group-h span {
  font-size: 14.5px;
  color: var(--grey);
}
.ogr-group-h:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.ogr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.ogr-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 26px 22px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px -36px rgba(15, 31, 46, 0.34);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.ogr-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(45, 191, 160, 0));
}
.ogr-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 191, 160, 0.35);
  box-shadow: 0 22px 44px -28px rgba(15, 31, 46, 0.45);
}
.ogr-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.ogr-card .ogr-sub {
  font-size: 12.5px;
  color: #8496a3;
  margin-top: 5px;
  line-height: 1.4;
}
.ogr-card p {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.62;
  margin-top: 14px;
  flex: 1;
}
.ogr-view {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--tealdk);
}

.ogr-note {
  margin-top: 56px;
  padding: 20px 24px;
  background: var(--wash);
  border-radius: 12px;
  border-left: 3px solid var(--teal);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--grey);
  max-width: 820px;
}

/* ---------- Solutions / about extras ---------- */
.ogp-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.ogp-plain {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
}
.ogp-plain h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ogp-plain p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey);
  margin: 0;
}
.ogp-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--tealdk);
  margin-bottom: 10px;
}

.ogp-list {
  list-style: none;
  margin-top: 22px;
  max-width: 720px;
}
.ogp-list li {
  display: flex;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--grey);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.ogp-list li:last-child {
  border-bottom: 0;
}
.ogp-list b {
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.04em;
  min-width: 28px;
}

/* ---------- Forms ---------- */
.ogp-form {
  max-width: 560px;
  margin-top: 36px;
  display: grid;
  gap: 16px;
}
.ogp-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 8px;
}
.ogp-field input,
.ogp-field select,
.ogp-field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease;
}
.ogp-field input:focus,
.ogp-field select:focus,
.ogp-field textarea:focus {
  border-color: var(--teal);
}
.ogp-field textarea {
  min-height: 120px;
  resize: vertical;
}
.ogp-form .ogp-btn {
  justify-self: start;
  margin-top: 4px;
}
.ogp-form-ok {
  display: none;
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(45, 191, 160, 0.08);
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.6;
}
.ogp-form-ok.show {
  display: block;
}

.ogp-legal {
  font-size: 12.5px;
  color: var(--grey);
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.ogp-legal-in {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .ogr-grid,
  .ogp-grid-3,
  .ogp-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 980px) {
  .ogp-mod-in,
  .ogp-charts {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .ogp-flip .ogp-mod-in {
    direction: ltr;
  }
  .ogp-links {
    display: none;
  }
  .ogp-menu-btn {
    display: flex;
  }
  .ogp-nav.open .ogp-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 32px 22px;
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .ogr-grid,
  .ogp-grid-3,
  .ogp-grid-4 {
    grid-template-columns: 1fr;
  }
  .ogr-group-h {
    flex-wrap: wrap;
  }
  .ogr-group-h:after {
    display: none;
  }
}
@media (max-width: 640px) {
  .ogp-wrap {
    padding: 0 20px;
  }
  .ogp-mod {
    padding: 58px 0;
  }
  .ogp-card {
    height: 340px;
  }
  .ogp-card-fit {
    height: auto;
  }
  .ogp-nav-cta .ogp-btn-ghost {
    display: none;
  }
  .ogp-head {
    padding: 64px 0 48px;
  }
  .ogp-cta {
    padding: 72px 0;
  }
}

/* ---------- Home: EMR stack ---------- */
.ogp-layer {
  background: var(--wash);
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.ogp-layer h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.ogp-layer > .ogp-wrap > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--grey);
  max-width: 640px;
  margin: 14px auto 36px;
}
.ogp-stack {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
  position: relative;
}
.ogp-stack:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
  z-index: 0;
}
.ogp-stack-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 24px;
  text-align: left;
}
.ogp-stack-row span:first-child {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.ogp-stack-row span:last-child {
  color: var(--grey);
  font-size: 14.5px;
}
.ogp-stack-core {
  background: var(--navy);
  border-color: var(--navy);
}
.ogp-stack-core span:first-child {
  color: #fff;
}
.ogp-stack-core span:last-child {
  color: var(--teal);
  font-weight: 600;
}
.ogp-stack-core b {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 2px;
}

/* ---------- Why / story split ---------- */
.ogp-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.ogp-split h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.16;
}
.ogp-split p + p {
  margin-top: 16px;
}
.ogp-quote {
  margin: 20px 0;
  padding: 12px 0 12px 18px;
  border-left: 3px solid var(--teal);
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
}

/* ---------- Two feature cards ---------- */
.ogp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ogp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---------- Five modules bar ---------- */
.ogp-modsbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.ogp-modsbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ogp-modsbar-l {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--grey);
}
.ogp-modsbar-l b {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--navy);
}
.ogp-modsbar-l a {
  color: var(--grey);
  text-decoration: none;
}
.ogp-modsbar-l a:hover,
.ogp-modsbar a.ogp-morelink {
  color: var(--tealdk);
}
.ogp-morelink {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--tealdk);
  white-space: nowrap;
}

/* ---------- DIVAN / tumour board ---------- */
.ogp-divan {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 56px;
}
.ogp-divan h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  max-width: 720px;
}
.ogp-divan > .ogp-wrap > p {
  color: #8fa3b2;
  font-size: 17px;
  line-height: 1.6;
  max-width: 680px;
  margin: 14px 0 28px;
}
.ogp-divan-ui {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
  background: var(--deep);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.55);
}
.ogp-hub {
  position: relative;
  min-height: 360px;
}
.ogp-hub-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: #102433;
  border: 2px solid var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  z-index: 2;
}
.ogp-hub-core b {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #fff;
}
.ogp-hub-core span {
  font-size: 11px;
  color: #8fa3b2;
  line-height: 1.4;
  margin-top: 6px;
}
.ogp-hub-node {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  color: #c5d4de;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(45, 191, 160, 0.28);
  border-radius: 100px;
  padding: 6px 10px;
  white-space: nowrap;
}
.ogp-hub-node:nth-child(1) { left: 50%; top: 8px; transform: translateX(-50%); }
.ogp-hub-node:nth-child(2) { right: 8px; top: 22%; }
.ogp-hub-node:nth-child(3) { right: 8px; top: 48%; }
.ogp-hub-node:nth-child(4) { right: 18px; bottom: 18%; }
.ogp-hub-node:nth-child(5) { left: 50%; bottom: 8px; transform: translateX(-50%); }
.ogp-hub-node:nth-child(6) { left: 8px; bottom: 18%; }
.ogp-hub-node:nth-child(7) { left: 8px; top: 48%; }
.ogp-hub-node:nth-child(8) { left: 8px; top: 22%; }
.ogp-long {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ogp-long-h {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #7e93a4;
}
.ogp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ogp-chip {
  background: rgba(45, 191, 160, 0.14);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 10px;
}
.ogp-tl {
  list-style: none;
  margin-top: 6px;
}
.ogp-tl li {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  font-size: 12px;
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #8fa3b2;
}
.ogp-tl b {
  color: #e8eef2;
  font-weight: 600;
}
.ogp-tl em {
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
}

/* ---------- Region line ---------- */
.ogp-region {
  padding: 56px 0 0;
}
.ogp-region h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.ogp-region p {
  font-size: 18px;
  color: var(--grey);
  margin-top: 14px;
  max-width: 720px;
  padding-bottom: 56px;
}

/* ---------- Pills / deployment ---------- */
.ogp-deploy {
  background: var(--wash);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.ogp-deploy-in {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.ogp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.ogp-pill i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--teal);
  display: inline-block;
}

/* ---------- Solutions cards ---------- */
.ogp-sol {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.ogp-sol-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(45, 191, 160, 0.12);
  color: var(--tealdk);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ogp-sol h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.ogp-sol .ogp-tagline {
  margin-top: 8px;
  font-size: 15.5px;
}
.ogp-sol p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey);
}
.ogp-check {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy);
}
.ogp-check:before {
  content: "✓ ";
  color: var(--tealdk);
  font-weight: 700;
}

/* ---------- Partnerships ---------- */
.ogp-partner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.ogp-partner:last-of-type {
  border-bottom: 1px solid var(--line);
}
.ogp-partner b {
  color: var(--navy);
  font-size: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.ogp-partner b:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}
.ogp-partner span {
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ---------- Team ---------- */
.ogp-person {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.ogp-person:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(45, 191, 160, 0));
}
.ogp-ava {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(45, 191, 160, 0.16);
  color: var(--tealdk);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ogp-person h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.ogp-person .ogp-role {
  color: var(--tealdk);
  font-weight: 700;
  font-size: 14px;
  margin-top: 4px;
}
.ogp-person .ogr-sub {
  margin-top: 4px;
}
.ogp-person p {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--grey);
}
.ogp-center {
  text-align: center;
  max-width: 720px;
  margin: 48px auto 0;
}
.ogp-center h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.ogp-center p {
  margin-top: 14px;
  color: var(--grey);
  font-size: 16.5px;
  line-height: 1.65;
}

/* ---------- Contact ---------- */
.ogp-contact {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 40px;
  align-items: start;
}
.ogp-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 18px 40px -36px rgba(15, 31, 46, 0.34);
  position: relative;
  overflow: hidden;
}
.ogp-form-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(45, 191, 160, 0));
}
.ogp-form-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}
.ogp-form-card > p {
  color: var(--grey);
  font-size: 14.5px;
  margin: 6px 0 22px;
}
.ogp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.ogp-form-grid .ogp-span {
  grid-column: 1 / -1;
}
.ogp-checkrow {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.5;
  margin-top: 8px;
}
.ogp-checkrow input {
  margin-top: 3px;
}
.ogp-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.ogp-form-actions span {
  font-size: 13px;
  color: var(--grey);
}
.ogp-side h3 {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--tealdk);
  margin-bottom: 18px;
}
.ogp-side-block {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.ogp-side-block b {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 6px;
}
.ogp-side-block p,
.ogp-side-block a {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--grey);
  text-decoration: none;
}
.ogp-side-block a {
  color: var(--tealdk);
  font-weight: 600;
}
.ogp-side-note {
  font-size: 13.5px;
  font-style: italic;
  color: var(--grey);
  line-height: 1.6;
  margin-top: 18px;
}

@media (max-width: 1020px) {
  .ogp-grid-2,
  .ogp-split,
  .ogp-divan-ui,
  .ogp-contact,
  .ogp-form-grid,
  .ogp-partner {
    grid-template-columns: 1fr;
  }
  .ogp-hub {
    min-height: 320px;
  }
}
