/* =============================================================================
   /pages/purchase_card — page stylesheet.

   This page is a standalone widget page: it carries its own inline <style> in
   the <head> and does not load /styles/styles.css. Everything below is scoped
   to .gate-copy so nothing here can reach the purchase widget itself (in
   particular .verification-screen h2, which is existing widget UI).

   The page had no heading tags at all. The headings added below are restated
   with explicit font-size, font-weight, margin and font-family — the same
   pattern already used for the homepage brand line in /styles/styles.css —
   so nothing renders as a browser-default heading.
   ============================================================================= */


/* -----------------------------------------------------------------------------
   Shared block rhythm
   ----------------------------------------------------------------------------- */
.gate-copy {
  margin: 0 0 20px;
  color: #475569;
}

.gate-copy p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0 0 12px;
  color: #475569;
}

.gate-copy p:last-child {
  margin-bottom: 0;
}

.gate-copy a {
  color: var(--dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(10, 20, 47, 0.35);
}

.gate-copy a:hover {
  text-decoration-color: var(--dark);
}


/* -----------------------------------------------------------------------------
   Intro block — sits between the risk disclaimer and the widget card
   ----------------------------------------------------------------------------- */
.gate-intro {
  padding: 0 4px;
  margin-bottom: 24px;
}

.gate-intro .gate-eyebrow {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #64748b;
  margin: 0 0 10px;
}

.gate-intro h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0 0 12px;
  color: var(--dark);
}

.gate-intro .gate-lede {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #475569;
}


/* -----------------------------------------------------------------------------
   Copy panel — sits below the widget card, matching .card's surface
   ----------------------------------------------------------------------------- */
.gate-panel {
  background: white;
  border-radius: 16px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.08);
  padding: 24px;
  margin-bottom: 20px;
}

.gate-panel h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin: 0 0 12px;
  color: var(--dark);
}

.gate-panel section + section h2 {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eef1f6;
}

.gate-panel h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 20px 0 6px;
  color: var(--dark);
}

.gate-panel h3:first-of-type {
  margin-top: 16px;
}


/* -----------------------------------------------------------------------------
   Closing ownership note
   ----------------------------------------------------------------------------- */
.gate-note {
  background: var(--light);
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}

.gate-note p {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}


/* -----------------------------------------------------------------------------
   Small screens — the page column is already narrow; ease the display sizes
   ----------------------------------------------------------------------------- */
@media only screen and (max-width: 420px) {
  .gate-intro h1 {
    font-size: 23px;
  }

  .gate-intro .gate-lede {
    font-size: 14px;
  }

  .gate-panel {
    padding: 20px;
  }
}
