/**
 * Shared styles for PaymentPutty vertical landing pages.
 *
 * Used by all 01-*.html through 14-*.html one-pagers. Not used by
 * index.html (which has its own style block).
 *
 * Pages that need to override a token (e.g. a silhouette background
 * image) can declare it in an inline `:root` block.
 */

:root {
  --pink: #e11d75;
  --purple: #8820f7;
  --grad: linear-gradient(90deg, #e81d75, #8820f7);
  --grad-diag: linear-gradient(135deg, #e81d75 0%, #8820f7 100%);
  --dark: #25272e;
  --gray-bg: #f7f8fc;
  --gray-light: #f1f1f4;
  --gray-border: #e8e8ed;
  --gray-text: #6b6f7e;
  --white: #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  max-width: 8.5in;
  margin: 0 auto;
}

/* ── HEADER ── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  border-bottom: 1px solid var(--gray-border);
  background: var(--white);
  position: relative;
  z-index: 10;
}
.logo {
  font-size: 19px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.header-center {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.3px;
}
.header-cta {
  background: var(--grad);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--grad-diag);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 24px;
  align-items: center;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
}
.hero-headline {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.93;
}
.hero-image-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* ── HERO BLOBS ── */
.blob-1 {
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(255,255,255,0.18);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  top: -160px;
  right: -140px;
  filter: blur(0px);
  animation: blobMorph 8s ease-in-out infinite, blobDrift 12s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.blob-2 {
  position: absolute;
  width: 340px;
  height: 340px;
  background: rgba(255,255,255,0.12);
  border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  bottom: -100px;
  left: -80px;
  filter: blur(0px);
  animation: blobMorph 11s ease-in-out infinite reverse, blobDrift 15s ease-in-out infinite reverse;
  z-index: 1;
  pointer-events: none;
}
.blob-3 {
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.10);
  border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%;
  top: 10px;
  left: 36%;
  filter: blur(0px);
  animation: blobMorph 7s ease-in-out infinite 2s, blobDrift 10s ease-in-out infinite reverse 1s;
  z-index: 1;
  pointer-events: none;
}
@keyframes blobMorph {
  0%,100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%; }
  25%      { border-radius: 40% 60% 30% 70% / 70% 40% 60% 50%; }
  50%      { border-radius: 70% 30% 50% 50% / 30% 70% 50% 40%; }
  75%      { border-radius: 30% 70% 60% 40% / 60% 30% 40% 70%; }
}
@keyframes blobDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-30px, 20px) scale(1.05); }
  66%      { transform: translate(20px, -15px) scale(0.97); }
}
@media print { .blob-1, .blob-2, .blob-3 { display: none !important; } }

/* ── INLINE RULE DEMO (screen only) ── */
.demo-wrap {
  padding: 0 28px 28px;
  background: var(--white);
}
@media print {
  .demo-wrap,
  .demo-wrap * {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
  }
}

/* ── INDUSTRY BAND ── */
.industry-band {
  background: var(--dark);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.industry-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0.15;
}
.industry-band-icon {
  font-size: 20px;
  color: var(--white);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}
.industry-band-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
}
.industry-band-text span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BODY ── */
.body-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  padding: 28px 28px 24px 28px;
  position: relative;
}

/* Silhouette background image — sits behind the body content */
.body-bg-img {
  position: absolute;
  inset: 0;
  background-image: var(--silhouette-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.left-col, .right-col { position: relative; z-index: 1; }

/* ── SECTION LABELS ── */
.label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pink);
  margin-bottom: 8px;
}

/* ── WHY IT MATTERS ── */
.why-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-text);
  margin-bottom: 22px;
  padding-left: 10px;
  border-left: 3px solid var(--pink);
}

/* ── USE CASES ── */
.use-cases { list-style: none; margin-bottom: 0; }
.use-cases li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
}
.use-cases li:last-child { border-bottom: none; }
.uc-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(232,29,117,0.12), rgba(136,32,247,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.uc-icon i {
  font-size: 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.uc-text {
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--dark);
  font-weight: 500;
}

/* ── RIGHT COLUMN CARDS ── */
.card {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 14px;
}
.card:last-child { margin-bottom: 0; }
.card-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 14px;
}
.card-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 12px;
  line-height: 1.4;
}
.card-item:last-child { margin-bottom: 0; }
.card-item i {
  font-size: 14px;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 1px;
  width: 16px;
  text-align: center;
}
.card-item-text { color: var(--dark); }
.card-item-text strong { font-weight: 700; }

/* positioning card gets white bg + pink left border */
.card-positioning {
  background: var(--white);
  border-left: 3px solid var(--pink);
}
.positioning-intro {
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray-text);
  margin-bottom: 10px;
}
.positioning-quote {
  font-size: 12.5px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  color: var(--dark);
}

/* ── FOOTER ── */
footer {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.footer-logo {
  font-size: 16px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-center { color: var(--gray-text); }
.footer-link {
  color: var(--pink);
  text-decoration: none;
  font-weight: 700;
}

/* ── PRINT ── */
@media print {
  @page { margin: 0.35in; size: letter; }
  body { max-width: none; width: auto; margin: 0; font-size: 12px; }
  .blob-1, .blob-2 { display: none !important; }
  header { padding: 8px 28px !important; }
  .logo { font-size: 17px !important; }
  .header-cta { display: none !important; }

  /* Hero: 1-column layout with absolute-positioned image in the right margin
     so it adds no vertical space to the print layout. */
  .hero {
    grid-template-columns: 1fr !important;
    padding: 16px 120px 14px 28px !important;
    overflow: visible !important;
  }
  .hero-image-wrap {
    display: flex !important;
    position: absolute !important;
    top: 50% !important;
    right: 28px !important;
    transform: translateY(-50%) !important;
    width: 80px !important;
    height: 80px !important;
  }
  .hero-img {
    width: 80px !important;
    height: 80px !important;
    border-width: 2px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2) !important;
  }
  .hero-eyebrow { margin-bottom: 6px; }
  .hero-headline { font-size: 26px !important; margin-bottom: 8px; }
  .hero-sub { font-size: 12px !important; }
  .industry-band { padding: 10px 28px !important; }
  .industry-band-icon { font-size: 24px !important; }
  .body-wrap { padding: 12px 24px !important; gap: 16px !important; }
  .body-bg-img { display: none !important; }
  .why-text { margin-bottom: 14px; font-size: 12px; }
  .label { margin-bottom: 6px; }
  .use-cases li { padding: 6px 0; }
  .uc-text { font-size: 12px; }
  .card { padding: 12px 14px; margin-bottom: 10px; }
  .card-item { padding: 5px 0; }
  .card-item-text { font-size: 11.5px; }
  .card-positioning { margin-top: 0; }
  .positioning-intro, .positioning-quote { font-size: 11px; line-height: 1.4; }
  footer { padding: 10px 24px; font-size: 11px; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  body { font-size: 14px; }

  .header-cta { display: none; }
  header {
    padding: 12px 16px;
    gap: 8px;
  }
  .logo { font-size: 17px; }
  .header-center { font-size: 11px; }

  .hero {
    display: grid;
    grid-template-columns: 1fr 138px;
    column-gap: 10px;
    align-items: end;
    padding: 22px 16px 20px;
    overflow: hidden;
  }
  .hero-content {
    grid-column: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .hero-eyebrow {
    font-size: 10px;
    margin-bottom: 6px;
    width: calc(100% + 170px);
  }
  .hero-headline {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
    width: calc(100% + 170px);
  }
  .hero-sub {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
  }
  .hero-image-wrap {
    grid-column: 2;
    align-self: end;
    display: flex;
    justify-content: flex-end;
    padding-top: 80px;
  }
  .hero-img {
    width: 160px;
    height: 160px;
    margin-bottom: -40px;
    margin-right: -40px;
  }

  .industry-band { padding: 10px 16px; }
  .industry-band-text { font-size: 12px; }

  .body-wrap {
    grid-template-columns: 1fr;
    padding: 18px 16px;
    gap: 18px;
  }
  .body-bg-img { display: none; }

  .uc-text { font-size: 12px; }
  .uc-icon { width: 26px; height: 26px; }
  .uc-icon i { font-size: 12px; }

  .card { padding: 14px; }
  .card-item { font-size: 11.5px; }

  footer { padding: 10px 16px; font-size: 11px; }
}
