:root {
  --ink: #071319;
  --muted: #58707d;
  --line: #dbe7ec;
  --paper: #f7fbfc;
  --white: #ffffff;
  --teal: #00a6a6;
  --teal-dark: #007f86;
  --blue: #2454d6;
  --mint: #dff7f3;
  --amber: #f5b84b;
  --coral: #e85d5d;
  --shadow: 0 24px 80px rgba(7, 19, 25, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(219, 231, 236, 0.82);
  background: var(--white);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.linkedin-link {
  display: flex;
  align-items: center;
  color: #0a66c2; /* LinkedIn blue */
  text-decoration: none;
}

.linkedin-icon {
  width: 22px;
  height: 22px;
}

.linkedin-link:hover {
  opacity: 0.8;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 2rem;
  color: #28424f;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: #28424f;
  font-size: 1.05rem;
  font-weight: 750;
}

.nav-links a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--teal-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 750;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(7, 19, 25, 0.18);
}

.hero .button.primary {
  background: var(--teal);
  color: #042326;
  border-color: rgba(223, 247, 243, 0.65);
  box-shadow: 0 16px 38px rgba(0, 166, 166, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.34);
}

.menu-toggle {
  display: none;
}

/*
.hero {
  display: flex;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(64px, 10vw, 112px) clamp(20px, 5vw, 72px) 50px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(7, 19, 25, 0.94), rgba(7, 19, 25, 0.76)),
    radial-gradient(circle at 78% 24%, rgba(0, 166, 166, 0.36), transparent 33%),
    linear-gradient(135deg, #071319, #143843 62%, #eef8f9 62%);
  color: var(--white);
  justify-content: center;
  text-align: center;
} */

.hero {
  position: relative;
  display: flex;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  justify-content: center;
  text-align: center;

  min-height: calc(100vh - 92px);
  padding: clamp(64px, 10vw, 112px) clamp(20px, 5vw, 72px) 50px;

  overflow: hidden;
  color: var(--white);

  /* Background image */
  background-image:
    linear-gradient(110deg, rgba(7, 19, 25, 0.7), rgba(7, 19, 25, 0.5)),
    radial-gradient(circle at 78% 24%, rgba(0, 166, 166, 0.25), transparent 33%),
    url("hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 1180px;
  margin: 0 auto;
}

.hero .eyebrow {
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  letter-spacing: 0.14em;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1180px;
  margin-bottom: 22px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.65rem, 5.7vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 34px 0 36px;
}

.hero-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1040px;
  margin: 0 auto;
}

.hero-impact-grid article {
  min-height: 142px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.hero-impact-grid h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.22;
}

.hero-impact-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.monitor-card {
  width: min(100%, 520px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.monitor-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.monitor-top strong {
  color: var(--mint);
}

.ecg-grid {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 166, 166, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 166, 0.13) 1px, transparent 1px),
    #ffffff;
  background-size: 22px 22px;
}

.ecg-line {
  position: absolute;
  inset: 92px 8% auto;
  height: 120px;
  background:
    linear-gradient(90deg, transparent 0 4%, var(--teal) 4% 7%, transparent 7% 15%, var(--teal) 15% 19%, transparent 19% 26%, var(--teal) 26% 28%, transparent 28% 33%, var(--coral) 33% 36%, transparent 36% 41%, var(--teal) 41% 45%, transparent 45% 56%, var(--teal) 56% 58%, transparent 58% 67%, var(--amber) 67% 72%, transparent 72% 100%);
  clip-path: polygon(0 49%, 9% 49%, 12% 41%, 15% 61%, 18% 49%, 27% 49%, 30% 36%, 34% 74%, 38% 48%, 48% 48%, 52% 43%, 56% 54%, 60% 49%, 69% 49%, 72% 31%, 76% 77%, 80% 49%, 100% 49%, 100% 53%, 80% 53%, 76% 81%, 72% 35%, 69% 53%, 60% 53%, 56% 58%, 52% 47%, 48% 52%, 38% 52%, 34% 78%, 30% 40%, 27% 53%, 18% 53%, 15% 65%, 12% 45%, 9% 53%, 0 53%);
}

.risk-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(7, 19, 25, 0.22);
}

.risk-panel span,
.card-kicker,
.news-card p {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.risk-panel strong {
  display: block;
  margin: 8px 0;
}

.risk-panel p,
.signal-list {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.5;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.signal-list div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.signal-list span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
}

.logo-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-band span {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 16px;
  background: var(--white);
  color: #536b77;
  font-size: 0.92rem;
  font-weight: 750;
  text-align: center;
}

.split-section,
.platform-section,
.benefits-section,
.workflow-section,
.integration-section,
.evidence-section,
.about-section,
.market-section,
.faq-section,
.demo-section,
.news-section,
.partners-section,
.cta-section,
.site-footer {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
  background: var(--white);
}

h2 {
  max-width: 1010px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
  
}

.stacked-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}


.workflow-copy p,
.section-heading p,
.cta-section p,
.site-footer p {
  color: var(--muted);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.impact-strip article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  align-content: center;
  padding: clamp(28px, 4vw, 54px);
  background: var(--ink);
  color: var(--white);
}

.impact-strip strong {
  color: var(--teal);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.impact-strip span {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 700;
}

.platform-heading {
  margin-left: 40px;
}

.platform-section,
.evidence-section {
  background: #eef7f8;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.section-heading.compact {
  display: block;
  max-width: 1120px;
}

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

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

.product-card,
.news-card,
.faq-list details {
  border: 1px solid rgba(219, 231, 236, 0.95);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(7, 19, 25, 0.06);
  color: #143843;
}

.news-card a:hover {
  color: var(--teal);
}

.product-card {
  min-height: 280px;
  padding: 26px;
}

.product-card.large {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 18px;
}

.product-card.large .card-image {
  min-height: 0;
}

.card-image {
  min-height: 250px;
}

img.card-image {
  display: block;
  width: 70%;
  object-fit: cover;
}

.solution-figure {
  width: min(90%, 650px);
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  padding: 0;
  margin: 0 auto;
  border-radius: 8px;
  background: var(--white);
}

.placeholder-image {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 84, 214, 0.16), rgba(0, 166, 166, 0.2)),
    repeating-linear-gradient(0deg, rgba(7, 19, 25, 0.08) 0 1px, transparent 1px 18px),
    #f8fcfd;
  color: #55727f;
  font-size: 0.84rem;
  font-weight: 800;
}

.product-card-body {
  align-self: center;
  padding-right: 10px;
}

.product-card h3,
.news-card h3,
.timeline-item h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  line-height: 1.15;
}

.product-card p,
.news-card a,
.timeline-item p,
.faq-list p {
  color: var(--muted);
  line-height: 1.68;
}

.icon-chip,
.benefit-number,
.timeline-item span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 0.83rem;
  font-weight: 850;
}

.benefits-section {
  background: var(--ink);
  color: var(--white);
}

.benefits-section .section-heading h2 {
  max-width: 880px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.benefit-grid article {
  min-height: 330px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.06);
}

.benefit-grid p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 98px);
  background: var(--white);
}

.workflow-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfefe;
}

.timeline-item span {
  margin: 0;
  background: var(--ink);
  color: var(--white);
}

.integration-section {
  background: #f6fbfb;
}

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

.integration-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(7, 19, 25, 0.05);
}

.integration-grid h3 {
  margin-bottom: 12px;
  font-size: 1.34rem;
  line-height: 1.18;
}

.integration-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.integration-footer {
  margin-top: 2rem;

  font-size: 0.95rem;
  color: #5f6b7a;
}

.integration-footer p {
  margin: 0;
}

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

.news-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.8) 30%,
    rgba(255,255,255,0.35) 65%,
    rgba(255,255,255,0) 100%
  );
}

.news-card .card-image {
  min-height: 220px;
  border-radius: 0;
}

.news-card p,
.news-card h3,
.news-card a {
  margin-left: 22px;
  margin-right: 22px;
}

.news-card h3 {
  font-weight: 700;
  font-size: larger

}

.news-card p {
  margin-top: 22px;
}

.news-card a {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--ink);
  font-weight: 800;
}

.about-section {
  background: var(--white);
}

.team-group {
  margin-top: clamp(42px, 6vw, 76px);
}

.team-group-heading {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
  line-height: 1.1;
}

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

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

.advisory-grid {
  grid-template-columns: repeat(4, minmax(0, 320px));
}


/* CARD */
.team-card {
  position: relative;
  width: 100%;
  height: 440px;
  perspective: 1200px;
  cursor: pointer;
  border: none;
  background: transparent;
  box-shadow: none;
  outline: none;
}

.team-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
}

.team-card.flipped .team-card-inner {
  transform: rotateY(180deg);
}

/* FRONT + BACK */
.team-card-front,
.team-card-back {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 78% 22%;   /* exact split */
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(7,19,25,.06);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: white;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

/* FRONT */
.team-card-front {
  z-index: 2;
}

/* PHOTO = exact top section */
.team-photo,
img.team-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
}

/* NAME SECTION = exact bottom section */
.team-info,
.team-back-info {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  z-index: 3;
}

/* BACK */
.team-card-back {
  transform: rotateY(180deg);
  position: absolute;
}

.team-card-front {
  transform: rotateY(0deg);
}

.team-card-back {
  transform: rotateY(180deg);
}

/* faded portrait bg */
.team-card-back::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  height: 78%;   /* same as photo region */

  background-image: var(--member-photo);
  background-size: cover;
  background-position: center;

  opacity: 0.4;
  filter: blur(2px);
  transform: scale(1.05);
  z-index: 0;
}

.team-card-back::after {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  height: 78%;

  background: rgba(255,255,255,.72);
  z-index: 1;
}

/* BIO occupies EXACT same area as photo */
.team-bio-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  overflow-y: auto;
  display: flex;
  align-items: center;
}

/* text */
.team-bio-content p {
  margin: 0;
  color: #143843;
  font-size: 0.95rem;
  line-height: 1.8;
}

.team-info h3,
.team-back-info h3 {
  margin-bottom: 6px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.team-info p,
.team-back-info p {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-bg {
  position: absolute;
  inset: 0 0 auto 0;
  height: 78%;
  background-image: var(--member-photo);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: blur(2px);
  transform: scale(1.05);
  z-index: 0;
}

.market-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
  background: var(--white);
}

.faq-section {
  background: var(--white);
}

.demo-section {
  background: #eef7f8;
}


.dashboard-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 42px;
  padding: 18px;
  border: 1px solid rgba(219, 231, 236, 0.95);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(7, 19, 25, 0.06);
}


.dashboard-frame {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-sizing: border-box;
}

.dashboard-frame video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;   
  max-width: 100%;
}


.dashboard-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 28px;
}

.dashboard-copy h3 {
  margin-bottom: 50px;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  line-height: 1.05;

}

.dashboard-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.demo-footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

.video-preview {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.video-preview img,
.video-preview iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-preview iframe {
  position: absolute;
  inset: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  opacity: 0.7;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  transition: transform .25s ease;
  object-fit: contain;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-preview.playing img,
.video-preview.playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-preview.playing iframe {
  opacity: 1;
  pointer-events: auto;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-top: 32px;
}

.faq-list details {
  padding: 22px 26px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
}

.faq-list p {
  margin: 14px 0 0;
}

.news-section {
  background: white;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;

  background: #eef7f8;
}

.cta-section .section-heading h2 {
  color: (0, 0, 0, 0.72);
}

.cta-section .section-heading p {
  color: var(--muted);
}

.cta-section p {
  max-width: 620px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;

  border-radius: 12px;

  /* glass effect */
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* 3D border effect */
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);

  /* subtle depth lift */
  transform: translateY(-2px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.86rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(35, 30, 30, 0.426);
  border-radius: 8px;
  padding: 14px 15px;
  color: rgba(0, 0, 0, 0.72);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
}

.contact-form .button.primary {
  background: var(--teal);
  color: #042326;
  box-shadow: none;
}

.partners-image {
  position: relative;
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
}

/* image fills section */
.partners-image img {
  display: block;
  width: 100%;
  height: clamp(360px, 48vw, 700px);
  object-fit: cover;

  /* makes photo richer */
  filter: contrast(1.03) saturate(0.95);

  /* smooth edges */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 12%,
    rgba(0,0,0,1) 82%,
    rgba(0,0,0,0) 100%
  );

  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 12%,
    rgba(0,0,0,1) 82%,
    rgba(0,0,0,0) 100%
  );
}

.partner-banner {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  position: relative;
}

/* soft fade edges */
.partner-banner::before,
.partner-banner::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partner-banner::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(7,19,25,0),
    rgba(7,19,25,0)
  );
}

.partner-banner::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(7,19,25,0),
    rgba(7,19,25,0)
  );
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  animation: scrollPartners 30s linear infinite;
}

.partner-track img {
  height: 70px;   /* BIGGER */
  width: auto;

  opacity: 1;      /* fully colored */
  filter: none;    /* remove grayscale */
  transition: transform 0.25s ease;
}

.partner-track img:hover {
  transform: scale(1.12);
}

/* pause on hover */
.partner-banner:hover .partner-track {
  animation-play-state: paused;
}

@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 46px;
  padding-bottom: 46px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 460px;
  margin: 18px 0 0;
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-content: start;
  color: #405a66;
  font-weight: 750;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 92px;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 56px;
    height: 56px;
    margin-left: auto;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .nav-links,
  .header-cta {
    display: inline-flex;
  }

  .nav-open .nav-links {
    position: fixed;
    inset: 92px 12px auto;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links a {
    padding: 20px 22px;
    border-radius: 8px;
    font-size: 1.18rem;
    font-weight: 800;
  }

  .nav-open .nav-links a:hover {
    background: #edf8f8;
  }

  .hero,
  .split-section,
  .workflow-section,
  .dashboard-preview,
  .market-section,
  .news-section,
  .partners-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .logo-band,
  .impact-strip,
  .hero-impact-grid,
  .benefit-grid,
  .integration-grid,
  .team-grid,
  .leadership-grid,
  .advisory-grid,
  .engineering-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 18px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card.large {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .workflow-copy {
    position: static;
  }

  .dashboard-copy {
    padding: 12px 8px 20px;
  }
}

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

  .hero,
  .split-section,
  .platform-section,
  .benefits-section,
  .workflow-section,
  .evidence-section,
  .about-section,
  .market-section,
  .faq-section,
  .demo-section,
  .news-section,
  .partners-section,
  .cta-section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }



  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4rem);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .logo-band,
  .impact-strip,
  .hero-impact-grid,
  .benefit-grid,
  .integration-grid,
  .team-grid,
  .leadership-grid,
  .advisory-grid,
  .engineering-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article,
  .product-card {
    min-height: auto;
  }

  .product-card.large .card-image {
    min-height: 260px;
  }

  .dashboard-frame {
    aspect-ratio: 4 / 3;
    min-height: unset;
  }

  .team-card {
    min-height: 390px;
  }

  .team-photo {
    min-height: 290px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ecg-grid {
    min-height: 280px;
  }

  .risk-panel {
    position: absolute;
    left: 14px;
    right: 14px;
    width: auto;
  }
}
