:root {
  --ink: #0b1f33;
  --ink-soft: #496179;
  --muted: #6d7f8f;
  --line: #d9e3ec;
  --bg: #f5f8fb;
  --card: #ffffff;
  --blue: #0f5f9f;
  --blue-dark: #0a3f73;
  --teal: #0aa6a6;
  --teal-soft: #d9f4f2;
  --gold: #d89b20;
  --danger: #b74d4d;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(11, 31, 51, 0.07);
  --shadow-md: 0 10px 28px rgba(11, 31, 51, 0.10);
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topline {
  background: #08243f;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.topline__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.topline strong {
  color: #fff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 227, 236, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
  box-shadow: var(--shadow-sm);
}

.brand small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav__links a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn--primary {
  color: #fff;
  background: var(--blue);
}

.btn--secondary {
  color: var(--blue-dark);
  background: #fff;
  border-color: var(--line);
}

.btn--ghost {
  color: var(--blue-dark);
  background: var(--teal-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6fb 100%);
}

.hero--medical {
  padding: 78px 0 64px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 52%, rgba(237, 246, 251, 0.78) 100%),
    linear-gradient(135deg, #f7fbfd 0%, #dcecf6 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(10, 166, 166, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-top: 18px;
  max-width: 780px;
  font-size: clamp(36px, 5vw, 58px);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 21px;
}

.lead {
  margin: 22px 0 0;
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.proofbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.proofbar__item {
  padding: 14px 16px;
  border: 1px solid rgba(217, 227, 236, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.proofbar__item strong {
  display: block;
  font-size: 20px;
}

.proofbar__item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card {
  padding: 24px;
  border: 1px solid rgba(217, 227, 236, 0.82);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.hero-media img {
  width: 100%;
  min-height: 220px;
  object-fit: contain;
  padding: 28px;
  background: #f7fafc;
}

.hero-media__caption {
  display: grid;
  gap: 4px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.hero-media__caption strong {
  font-size: 16px;
}

.hero-media__caption span {
  color: var(--muted);
  font-size: 13px;
}

.device-stack {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.device {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.device__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--teal-soft);
  font-weight: 900;
}

.device p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #edf6fb;
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 76px 0;
}

.section--white {
  background: #fff;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section__head p {
  max-width: 610px;
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.card__body {
  padding: 22px;
}

.card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

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

.product-tile {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 92% 10%, rgba(15, 95, 159, 0.14), transparent 34%);
  box-shadow: var(--shadow-sm);
}

.product-tile--large {
  grid-row: span 2;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(10, 63, 115, 0.92), rgba(8, 36, 63, 0.96)),
    radial-gradient(circle at 85% 16%, rgba(10, 166, 166, 0.42), transparent 36%);
}

.product-tile span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.product-tile--large span {
  color: rgba(255, 255, 255, 0.76);
}

.product-tile h3 {
  max-width: 520px;
}

.product-tile p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.product-tile--large p,
.product-tile--large ul {
  color: rgba(255, 255, 255, 0.78);
}

.product-tile ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

.application-card {
  min-height: 100%;
}

.document-list,
.about-points {
  display: grid;
  gap: 12px;
}

.document-list div,
.about-points div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.document-list strong,
.about-points strong {
  color: var(--ink);
}

.document-list span,
.about-points span {
  color: var(--muted);
  font-size: 14px;
}

.mini-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.product-card__top {
  min-height: 118px;
  padding: 22px;
  color: #fff;
  background: var(--blue-dark);
}

.product-card:nth-child(2) .product-card__top,
.product-card:nth-child(5) .product-card__top {
  background: #0b6875;
}

.product-card:nth-child(3) .product-card__top {
  background: #24496d;
}

.product-card__top span {
  display: block;
  margin-bottom: 10px;
  opacity: 0.78;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.url {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  background: #f2f6f9;
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-wrap: anywhere;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.workflow__step {
  position: relative;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
}

.workflow__step strong {
  display: block;
}

.workflow__step span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.image-panel__caption {
  padding: 16px 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.table th,
.table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table th {
  color: var(--blue-dark);
  background: #edf6fb;
  font-size: 13px;
  text-transform: uppercase;
}

.table tr:last-child td {
  border-bottom: 0;
}

.table td {
  color: var(--ink-soft);
}

.status {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  color: #126249;
  background: #e4f8ee;
  font-size: 12px;
  font-weight: 900;
}

.status--draft {
  color: #7a4a00;
  background: #fff2d3;
}

.cta-band {
  padding: 42px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: #0b3f69;
  box-shadow: var(--shadow-md);
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer {
  padding: 48px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #08243f;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer h3,
.footer strong {
  color: #fff;
}

.footer a {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  color: #6a4a0c;
  background: #fff8e8;
  font-size: 14px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.contact-person {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7fafc;
}

.contact-person h4 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.contact-person p {
  min-height: 44px;
  margin: 8px 0 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-person a {
  display: block;
  margin-top: 8px;
  color: var(--blue-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-list a,
.contact-list strong {
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  color: var(--blue);
}

.contact-list--company {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .topline__inner,
  .nav,
  .section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav__links {
    flex-wrap: wrap;
  }

  .hero__grid,
  .split,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .proofbar,
  .grid--3,
  .grid--4,
  .workflow,
  .product-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-tile--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding-top: 52px;
  }

  .proofbar,
  .grid--3,
  .grid--4,
  .workflow,
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .device {
    grid-template-columns: 40px 1fr;
  }

  .device .tag {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .contact-people {
    grid-template-columns: 1fr;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
