/**
 * Contact / Start a PoC — layout & typography only.
 * Page background uses the theme default from style.css (no overrides here).
 */

/* -------------------------------------------------------------------------- */
/* Scoped chrome (no body / shell background rules)                             */
/* -------------------------------------------------------------------------- */

body.bts-contact-poc-page .site-main--contact-poc {
  position: relative;
  z-index: 0;
}

/* Site footer still prints a decorative rule — omit on this template */
body.bts-contact-poc-page .site-footer hr.fading-border {
  display: none;
}

/* -------------------------------------------------------------------------- */
/* Tokens — mirror .compliance-page                                           */
/* -------------------------------------------------------------------------- */

.contact-poc-page {
  --poc-max: 1200px;
  /* Hero H1 at ≥981px — same as .platform-hero__title */
  --poc-title-lg: 40px;
  --poc-title-lh: 50px;
  --poc-gutter: clamp(32px, 10vw, 240px);
  --poc-section-y: 54px;
  /* Header row clearance + shared band gap (menu→H1, hero p→hr, hr→next H2). */
  --poc-header-clearance: calc(32px + 39px);
  --poc-content-gap: 20px;
  --poc-heading-size: 40px;
  --poc-heading-weight: 700;
  --poc-subheading-size: 24px;
  --poc-subheading-weight: 600;
  --poc-radius: 14px;
  --poc-muted: var(--muted, rgba(236, 243, 249, 0.74));
  --poc-blue-accent: #0070c0;
  overflow-x: clip;
  color: var(--text, #f8fafc);
}

.contact-poc-page h1,
.contact-poc-page h2 {
  margin: 0;
}

.contact-poc-page .poc-container {
  width: min(calc(100% - 64px), var(--container, var(--poc-max)));
  margin-inline: auto;
}

@media (max-width: 1120px) {
  .contact-poc-page .poc-container {
    width: min(calc(100% - 48px), var(--container, var(--poc-max)));
  }

  .contact-poc-page .poc-hero + hr.fading-border {
    max-width: min(calc(100% - 48px), var(--container, var(--poc-max)));
  }
}

.contact-poc-page .poc-container--hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--bts-page-hero-stack-gap);
  text-align: left;
}

.contact-poc-page .poc-hero .poc-container {
  position: relative;
  z-index: 1;
}

/* -------------------------------------------------------------------------- */
/* Hero — same rhythm as .platform-hero                                         */
/* -------------------------------------------------------------------------- */

.contact-poc-page .poc-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--poc-header-clearance) + var(--bts-page-hero-section-y)) 0
    var(--bts-page-hero-section-y);
  text-align: left;
}

.contact-poc-page .poc-hero + hr.fading-border {
  margin: 0 auto;
  margin-block: 0;
  max-width: min(calc(100% - 64px), var(--container, var(--poc-max)));
  border: 0;
  opacity: 0.85;
}

/* Match platform: hr→first section H2 uses the same band gap as hero bottom. */
.contact-poc-page .poc-hero + hr.fading-border + .poc-band {
  padding-top: var(--bts-page-hero-section-y);
}

@media (max-width: 720px) {
  .contact-poc-page .poc-container {
    width: min(calc(100% - 16px), var(--container, var(--poc-max)));
  }

  .contact-poc-page .poc-hero + hr.fading-border {
    max-width: min(calc(100% - 16px), var(--container, var(--poc-max)));
  }
}

.contact-poc-page .poc-hero__title {
  margin: 0;
  max-width: 100%;
  color: #fff;
  font-size: clamp(1.75rem, 4.2vw, 2.5rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 2px 10px rgba(1, 20, 46, 0.45);
}

@media (min-width: 981px) {
  .contact-poc-page .poc-hero__title {
    font-size: var(--poc-title-lg);
    line-height: var(--poc-title-lh);
  }
}

.contact-poc-page .poc-hero__sub {
  margin: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-transform: none;
}

.contact-poc-page .poc-hero__sub .bts-reg-mark {
  font-weight: inherit;
}

/* -------------------------------------------------------------------------- */
/* Section bands                                                                */
/* -------------------------------------------------------------------------- */

.contact-poc-page .poc-band {
  padding: var(--poc-section-y) 0;
}

.contact-poc-page .poc-band--last {
  padding-bottom: clamp(56px, 10vw, 96px);
}

@media (max-width: 480px) {
  .contact-poc-page {
    --poc-header-clearance: calc(21px + 29px);
  }
}

@media (max-width: 640px) {
  .contact-poc-page .poc-band {
    padding-block: clamp(40px, 10vw, 60px);
  }
}

.contact-poc-page .poc-two-col {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

@media (min-width: 900px) {
  .contact-poc-page .poc-two-col {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 56px);
    align-items: stretch;
  }

  /* Match text column height: drop fixed aspect-ratio; fill cell with cover image. */
  .contact-poc-page .poc-two-col > .poc-copy {
    align-self: stretch;
    min-height: 0;
  }

  .contact-poc-page .poc-two-col > .poc-figure {
    position: relative;
    align-self: stretch;
    justify-self: stretch;
    min-height: 0;
    aspect-ratio: unset;
  }

  .contact-poc-page .poc-two-col > .poc-figure .poc-figure__img,
  .contact-poc-page .poc-two-col > .poc-figure img.poc-figure__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
  }

  .contact-poc-page .poc-two-col > .poc-figure .poc-figure__placeholder {
    min-height: 240px;
    height: 100%;
    box-sizing: border-box;
  }
}

/* Mobile: copy before image in every band. Qualification markup is figure-first for desktop (image left). */
@media (max-width: 899px) {
  .contact-poc-page .poc-two-col--qual .poc-copy {
    order: 1;
  }

  .contact-poc-page .poc-two-col--qual .poc-figure {
    order: 2;
  }
}

.contact-poc-page .poc-section-title {
  margin: 0 0 clamp(12px, 2vw, 18px);
  color: #FFF;
  font-family: "Open Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px; /* 125% */
  text-transform: none;
}


.contact-poc-page .poc-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--poc-content-gap);
}

/* -------------------------------------------------------------------------- */
/* Lists                                                                        */
/* -------------------------------------------------------------------------- */

.contact-poc-page .poc-list {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.75;
}

.contact-poc-page .poc-list--bullets {
  list-style: none;
  padding-left: 0;
}

.contact-poc-page .poc-list--bullets li {
  position: relative;
  padding-left: 1rem;
}

.contact-poc-page .poc-list--bullets li::before {
  content: "–";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--poc-muted);
}

.contact-poc-page .poc-list--checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-poc-page .poc-list--checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #FFF;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}

.contact-poc-page .poc-check {
  position: relative;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 5px;
}

.contact-poc-page .poc-check--plain {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: var(--poc-muted);
}

.contact-poc-page .poc-check__disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #0c83df;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.contact-poc-page .poc-check__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -57%);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/* Notes                                                                        */
/* -------------------------------------------------------------------------- */

.contact-poc-page .poc-note {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
}

.contact-poc-page .poc-note--warn .poc-note__glyph {
  margin-right: 6px;
  color: #f5c842;
}

.contact-poc-page .poc-note--info .poc-note__glyph {
  margin-right: 6px;
  font-weight: 600;
  color: var(--poc-blue-accent);
}

.contact-poc-page .poc-note--info .poc-note__glyph--info {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--poc-blue-accent);
  font-style: normal;
  font-size: 11px;
  line-height: 1;
  text-transform: none;
}

.contact-poc-page .poc-closing-line {
  margin: 4px 0 0;
  font-size: var(--body-text-size, 16px);
  font-weight: 600;
  line-height: 1.55;
  color: #fff;
}

.contact-poc-page .poc-cta-row {
  margin: clamp(10px, 2vw, 16px) 0 0;
}

/* Primary action link — theme accent (matches header/footer links) */
.contact-poc-page .poc-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--body-text-size, 16px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--blue, #0c83df);
}

.contact-poc-page .poc-cta-link__arrow {
  font-size: 14px;
  line-height: 1;
  transform: translateY(1px);
}

.contact-poc-page .poc-cta-link:hover,
.contact-poc-page .poc-cta-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* -------------------------------------------------------------------------- */
/* Figures — image only (no frame line / shadow)                                */
/* -------------------------------------------------------------------------- */

.contact-poc-page .poc-figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

@media (max-width: 899px) {
  .contact-poc-page .poc-figure {
    aspect-ratio: 585 / 353;
  }
}

.contact-poc-page .poc-figure__img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.contact-poc-page .poc-figure__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: clamp(22px, 4vw, 30px);
  text-align: center;
  border: 0;
  border-radius: var(--poc-radius);
  color: var(--poc-muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-poc-page .poc-figure__placeholder span {
  max-width: 38ch;
}
