/* =========================================================
   Proof of Ownership — Standard Landing Page
   Extends the Viral Mind Technologies Premium Light System
   ========================================================= */

.proof-page {
  overflow: clip;
}

.proof-page .section {
  padding: 84px 0;
}

.proof-page h1,
.proof-page h2,
.proof-page h3 {
  color: var(--navy);
}

.proof-page .proof-small-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-page .proof-small-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(199, 154, 72, 0.14);
}

/* Hero */
.proof-hero {
  position: relative;
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 84% 14%, rgba(234, 215, 182, 0.64), transparent 28%),
    linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
}

.proof-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(199, 154, 72, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.proof-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

.proof-hero-copy {
  max-width: 740px;
}

.proof-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 8vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.proof-hero-copy .proof-hero-subtitle {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.2vw, 1.24rem);
  line-height: 1.72;
}

.proof-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-price-line {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 18px;
  align-items: center;
  white-space: nowrap;
  margin-top: 18px;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 700;
}

.proof-price-line span {
  position: relative;
}

.proof-price-line span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -11px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

/* Certificate visual */
.proof-visual {
  position: relative;
  min-height: 520px;
}

.proof-certificate-shell {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 70px rgba(25, 33, 50, 0.14);
  backdrop-filter: blur(14px);
  transform: rotate(1.4deg);
}

.proof-certificate {
  min-height: 445px;
  padding: 34px;
  border: 1px solid rgba(199, 154, 72, 0.62);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(251, 248, 241, 0.84), rgba(255, 255, 255, 0.98)),
    #fff;
}

.proof-certificate-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  color: var(--gold);
  background: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.proof-certificate-kicker {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-certificate h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1;
}

.proof-certificate > p {
  max-width: 360px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.proof-certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.proof-certificate-field span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-certificate-field strong {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.35;
}

.proof-registry-chip {
  position: absolute;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 260px;
  padding: 15px 17px;
  border: 1px solid rgba(199, 154, 72, 0.38);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(25, 33, 50, 0.14);
}

.proof-registry-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.proof-registry-chip strong,
.proof-registry-chip span {
  display: block;
}

.proof-registry-chip strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.proof-registry-chip span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

/* Credibility strip */
.proof-trust-strip {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-trust-grid {
  display: grid;
  gap: 12px;
}

.proof-trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-warm);
}

.proof-trust-item strong {
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.3;
}

.proof-check {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(199, 154, 72, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
}

/* Shared section headings */
.proof-section-heading {
  max-width: 810px;
  margin-bottom: 38px;
}

.proof-section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 6vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.proof-section-heading p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  font-size: 1.04rem;
  line-height: 1.72;
}

/* Problem */
.proof-problem {
  background: #fff;
}

.proof-problem-grid {
  display: grid;
  gap: 18px;
}

.proof-problem-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-warm);
  box-shadow: var(--shadow-soft);
}

.proof-problem-card span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.proof-problem-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.proof-problem-card p {
  margin-bottom: 0;
  line-height: 1.68;
}

/* Steps */
.proof-process {
  background: var(--navy);
}

.proof-process .proof-section-heading h2,
.proof-process .proof-section-heading p:last-child {
  color: #fff;
}

.proof-process .proof-section-heading p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.proof-steps {
  display: grid;
  gap: 14px;
}

.proof-step {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(199, 154, 72, 0.6);
  border-radius: 14px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.proof-step h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.18rem;
}

.proof-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Product screenshots */
.proof-product-tour {
  background:
    radial-gradient(circle at 88% 10%, rgba(234, 215, 182, 0.46), transparent 25%),
    var(--bg-soft);
}

.proof-tour-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}

.proof-tour-stack {
  display: grid;
  gap: 22px;
}

.proof-product-shot {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.proof-shot-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.proof-shot-toolbar {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
}

.proof-shot-toolbar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(199, 154, 72, 0.28);
}

.proof-shot-toolbar strong {
  margin-left: 5px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.proof-shot-window img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #fff;
}

.proof-tour-stack .proof-shot-window img {
  aspect-ratio: 4 / 3;
}

.proof-product-shot figcaption {
  padding: 22px 16px 14px;
}

.proof-product-shot figcaption > span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-product-shot figcaption strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.35;
}

.proof-product-shot figcaption p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.62;
}

/* Features */
.proof-features {
  background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}

.proof-feature-grid {
  display: grid;
  gap: 18px;
}

.proof-feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.proof-feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border: 1px solid rgba(199, 154, 72, 0.4);
  border-radius: 14px;
  color: var(--navy);
  background: rgba(234, 215, 182, 0.25);
  font-size: 0.9rem;
  font-weight: 900;
}

.proof-feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.proof-feature-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.65;
}


/* Documentation toolkit */
.proof-toolkit {
  background:
    radial-gradient(circle at 88% 12%, rgba(234, 215, 182, 0.55), transparent 25%),
    var(--bg-warm);
}

.proof-resource-grid {
  display: grid;
  gap: 18px;
}

.proof-resource-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.proof-resource-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(199, 154, 72, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.proof-resource-tag {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  margin-bottom: 34px;
  padding: 4px 10px;
  border: 1px solid rgba(199, 154, 72, 0.38);
  border-radius: 999px;
  color: #785b28;
  background: rgba(234, 215, 182, 0.3);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-resource-card h3 {
  max-width: 300px;
  margin-bottom: 11px;
  font-size: 1.2rem;
}

.proof-resource-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.68;
}

.proof-bonus-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.proof-bonus-item {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.proof-bonus-item strong {
  color: var(--navy);
  font-size: 0.96rem;
}

.proof-bonus-item span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Use cases */
.proof-use-cases {
  background: #fff;
}

.proof-use-grid {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.proof-use-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 19px 20px;
  border-bottom: 1px solid var(--line);
}

.proof-use-item:first-child {
  border-top: 1px solid var(--line);
}

.proof-use-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 0.98rem;
}

.proof-use-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Honest scope */
.proof-scope {
  background: var(--bg-soft);
}

.proof-scope-grid {
  display: grid;
  gap: 18px;
}

.proof-scope-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.proof-scope-card.is-dark {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.proof-scope-card h3 {
  margin-bottom: 20px;
  font-size: 1.32rem;
}

.proof-scope-card.is-dark h3 {
  color: #fff;
}

.proof-scope-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-scope-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.proof-scope-card.is-dark .proof-scope-list li {
  color: rgba(255, 255, 255, 0.72);
}

.proof-scope-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

/* Pricing */
.proof-pricing {
  background: #fff;
}

.proof-pricing-wrap {
  display: grid;
  gap: 42px;
  align-items: center;
}

.proof-pricing-copy {
  max-width: 690px;
}

.proof-pricing-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 6vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.proof-pricing-copy p {
  max-width: 620px;
  font-size: 1.03rem;
  line-height: 1.72;
}

.proof-pricing-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: var(--bg-warm);
  box-shadow: 0 28px 70px rgba(25, 33, 50, 0.12);
}

.proof-plan-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(199, 154, 72, 0.4);
  border-radius: 999px;
  color: #785b28;
  background: rgba(234, 215, 182, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
}

.proof-price {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  margin: 24px 0 8px;
}

.proof-price strong {
  color: var(--navy);
  font-size: clamp(3.4rem, 9vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.proof-price span {
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.proof-price-note {
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.proof-price-list {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.proof-price-list li {
  position: relative;
  padding-left: 24px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.5;
}

.proof-price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.proof-pricing-card .button {
  width: 100%;
}

.proof-checkout-note {
  margin: 13px 0 0;
  text-align: center;
  font-size: 0.77rem;
  line-height: 1.45;
}

/* FAQ */
.proof-faq {
  background: var(--bg-soft);
}

.proof-faq-list {
  max-width: 880px;
  border-top: 1px solid var(--line-strong);
}

.proof-faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.proof-faq-item summary {
  position: relative;
  padding: 22px 46px 22px 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.proof-faq-item summary::-webkit-details-marker {
  display: none;
}

.proof-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  transform: translateY(-50%);
}

.proof-faq-item[open] summary::after {
  content: "−";
}

.proof-faq-answer {
  max-width: 760px;
  padding: 0 46px 22px 0;
}

.proof-faq-answer p {
  margin-bottom: 0;
  line-height: 1.7;
}

/* Final CTA */
.proof-final-cta {
  background: var(--navy);
}

.proof-final-card {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(199, 154, 72, 0.28), transparent 26%),
    rgba(255, 255, 255, 0.05);
}

.proof-final-card h2 {
  max-width: 720px;
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.proof-final-card p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.proof-final-card .button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

/* Mobile conversion bar */
.proof-mobile-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 90;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 15px;
  border: 1px solid rgba(216, 207, 191, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px rgba(25, 33, 50, 0.18);
  backdrop-filter: blur(18px);
}

.proof-mobile-bar-copy strong,
.proof-mobile-bar-copy span {
  display: block;
}

.proof-mobile-bar-copy strong {
  color: var(--navy);
  font-size: 0.85rem;
}

.proof-mobile-bar-copy span {
  color: var(--muted);
  font-size: 0.7rem;
}

.proof-mobile-bar .button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 15px;
  font-size: 0.78rem;
}

@media (min-width: 640px) {
  .proof-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-problem-grid,
  .proof-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .proof-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
  }

  .proof-use-item:nth-child(2) {
    border-top: 1px solid var(--line);
  }
}

@media (min-width: 900px) {
  .proof-resource-grid,
  .proof-bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .proof-hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.78fr);
  }

  .proof-hero-copy h1 {
    font-size: clamp(3.5rem, 5.3vw, 5.6rem);
  }

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

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

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

  .proof-tour-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  }

  .proof-product-shot-main .proof-shot-window img {
    min-height: 620px;
  }

  .proof-pricing-wrap {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  }

  .proof-final-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .proof-mobile-bar {
    display: none;
  }
}

@media (max-width: 639px) {
  .proof-page .section {
    padding: 68px 0;
  }

  .proof-hero {
    padding: 58px 0 66px;
  }

  .proof-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .proof-hero-actions .button {
    width: 100%;
  }

  .proof-price-line {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px 14px;
    width: 100%;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .proof-price-line span + span::before {
    left: -8px;
  }

  .proof-visual {
    min-height: 455px;
  }

  .proof-certificate-shell {
    padding: 12px;
    border-radius: 24px;
  }

  .proof-certificate {
    min-height: 390px;
    padding: 25px;
    border-radius: 17px;
  }

  .proof-certificate-mark {
    margin-bottom: 28px;
  }

  .proof-certificate-grid {
    gap: 16px;
  }

  .proof-registry-chip {
    right: -2px;
    bottom: -4px;
    max-width: 235px;
  }

  .proof-problem-card,
  .proof-feature-card,
  .proof-resource-card,
  .proof-scope-card,
  .proof-pricing-card,
  .proof-final-card {
    padding: 24px;
    border-radius: 22px;
  }

  .proof-final-card .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 104px;
  }
}

@media (max-width: 370px) {
  .proof-price-line {
    font-size: 0.7rem;
    gap: 4px 9px;
  }

  .proof-price-line span + span::before {
    left: -6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-certificate-shell {
    transform: none;
  }
}


/* Standard plan content refinements */
.proof-pricing-card .proof-price-list {
  gap: 11px;
}

.proof-pricing-card .proof-price-list li {
  line-height: 1.48;
}

@media (max-width: 420px) {
  .proof-price-line {
    gap: 5px 10px;
    font-size: 0.7rem;
  }

  .proof-price-line span + span::before {
    left: -6px;
  }
}

/* Match the homepage H2 scale on desktop without changing mobile headings. */
@media (min-width: 900px) {
  .proof-page .proof-section-heading h2,
  .proof-page .proof-pricing-copy h2,
  .proof-page .proof-final-card h2 {
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
  }

  .proof-product-shot-main .proof-shot-window img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
  }
}

/* =========================================================
   Proof of Ownership — Asset Evidence Check callout
   ========================================================= */

.proof-audit-callout {
  position: relative;
  padding: 0 0 56px;
}

.proof-audit-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
  overflow: hidden;
  padding: 40px 44px;
  border: 1px solid rgba(25, 33, 50, 0.11);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(199, 154, 72, 0.15),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fbf8f1 100%
    );
  box-shadow: 0 20px 56px rgba(25, 33, 50, 0.07);
}

.proof-audit-copy {
  min-width: 0;
}

.proof-audit-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.proof-audit-label,
.proof-audit-category {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.proof-audit-label {
  color: #ffffff;
  background: var(--navy);
}

.proof-audit-category {
  border: 1px solid rgba(199, 154, 72, 0.34);
  color: #795b25;
  background: rgba(234, 215, 182, 0.26);
}

.proof-audit-card h2 {
  max-width: 700px;
  margin: 0 0 15px;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.7vw, 2.3rem);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.proof-audit-copy > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.proof-audit-action {
  display: grid;
  gap: 16px;
  justify-items: start;
  padding-left: 38px;
  border-left: 1px solid rgba(25, 33, 50, 0.1);
}

.proof-audit-action .button {
  min-width: 230px;
  text-align: center;
}

.proof-audit-action > p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .proof-audit-callout {
    padding-bottom: 44px;
  }

  .proof-audit-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .proof-audit-action {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(25, 33, 50, 0.1);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .proof-audit-callout {
    padding-bottom: 36px;
  }

  .proof-audit-card {
    padding: 32px 25px;
    border-radius: 22px;
  }

  .proof-audit-card h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .proof-audit-action {
    justify-items: stretch;
  }

  .proof-audit-action .button {
    width: 100%;
    min-width: 0;
  }

  .proof-audit-action > p {
    max-width: none;
    text-align: center;
  }
}
