/* Steady Ground — calm, women-first, mobile-first */
:root {
  --bg: #f7f4ef;
  --bg-soft: #efeae2;
  --surface: #ffffff;
  --ink: #2a2826;
  --ink-muted: #5c574f;
  --ink-soft: #7a7368;
  --accent: #3d5a4c;
  --accent-hover: #2f463b;
  --accent-soft: #e4ebe6;
  --border: #ddd6cb;
  --warn: #6b5344;
  --focus: #2a5a8a;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(42, 40, 38, 0.04), 0 8px 24px rgba(42, 40, 38, 0.06);
  --font: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 42rem;
  --wide: 56rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-hover);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--wide));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--wide));
  margin-inline: auto;
}

.logo {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.85rem;
  margin-left: 0.35rem;
}

.header-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--ink);
  max-width: 18ch;
}

.lede {
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  color: var(--ink-muted);
  max-width: 36ch;
  margin: 0 0 1.75rem;
}

.price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.price-chip strong {
  font-family: var(--font);
  font-size: 1.5rem;
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #f8faf8;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--ink-soft);
  color: var(--ink);
}

.age-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Sections */
section {
  padding: 3rem 0;
}

section + section {
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

h2 {
  font-family: var(--font);
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.prose p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

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

/* Split cards: for / not for */
.split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}

.card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-muted);
}

.card li {
  margin-bottom: 0.55rem;
}

.card li:last-child {
  margin-bottom: 0;
}

.card-muted {
  background: var(--bg-soft);
  box-shadow: none;
}

/* What's inside */
.kit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.kit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}

.kit-num {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kit-item p {
  margin: 0.25rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.free-callout {
  margin-top: 1.5rem;
  padding: 1.2rem 1.35rem;
  background: var(--accent-soft);
  border-radius: var(--radius);
  border: 1px solid #c8d6cc;
}

.free-callout p {
  margin: 0 0 0.85rem;
  color: var(--ink-muted);
}

/* Not list */
.not-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.not-list li {
  padding: 0.85rem 1.1rem;
  background: var(--surface);
  border-left: 3px solid var(--border);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-muted);
}

/* Pricing */
.pricing-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.pricing-box .amount {
  font-family: var(--font);
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0.25rem 0 0.35rem;
  color: var(--ink);
}

.pricing-box .amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 0.2rem;
}

.pricing-box .sub {
  color: var(--ink-muted);
  margin: 0 0 1.35rem;
}

.pricing-box .cta-row {
  justify-content: center;
}

.guarantee {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* FAQ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.95rem 1.15rem;
  margin-bottom: 0.65rem;
}

.faq details[open] {
  background: var(--bg-soft);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--ink-soft);
  font-weight: 400;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* Disclaimer */
.disclaimer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.disclaimer .box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  background: var(--surface);
}

.disclaimer h2 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.disclaimer p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
}

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

/* Final CTA band */
.final-cta {
  padding: 3.25rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-soft) 100%);
}

.final-cta h2 {
  max-width: 22ch;
  margin-inline: auto;
}

.final-cta .lede {
  margin-inline: auto;
  max-width: 38ch;
}

.final-cta .cta-row {
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer .brand {
  font-family: var(--font);
  color: var(--ink-muted);
  font-weight: 600;
}


/* Email subscribe band */
.subscribe-band {
  margin-top: 1.5rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.subscribe-lede {
  color: var(--ink-muted);
  margin: 0.5rem 0 1rem;
  font-size: 0.98rem;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.subscribe-form input[type="email"] {
  flex: 1 1 220px;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
}

.subscribe-form input[type="email"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero-subscribe-hint {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px dashed var(--border);
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 600;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--ink);
}


/* ===== Homepage conversion architecture ===== */

.page-home {
  padding-bottom: 5.5rem; /* room for sticky mobile CTA */
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--ink-muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--accent);
}

.hero-product .outcome-line {
  max-width: 42ch;
}

.hero-meta {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }
}

.product-shot {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-strip {
  padding: 0.85rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}

.trust-dot {
  color: var(--ink-soft);
  font-weight: 400;
}

.section-intro {
  color: var(--ink-muted);
  margin: -0.5rem 0 1.5rem;
  max-width: 48ch;
}

.card-foot {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.kit-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .kit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .kit-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.kit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: var(--shadow);
}

.kit-card .kit-num {
  margin-bottom: 0.65rem;
}

.kit-card p {
  margin: 0.3rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Proof without testimonials */
.proof-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.proof-card p {
  margin: 0;
  color: var(--ink-muted);
  flex: 1;
}

.proof-card .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.pricing-visual {
  margin: 0 auto 1.15rem;
  max-width: 22rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.pricing-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.pricing-label {
  margin-bottom: 0.15rem;
}

.checkout-status {
  margin: 0 0 1.1rem;
  padding: 0.85rem 1rem;
  background: #f3ebe4;
  border: 1px solid #e0d0c2;
  border-radius: var(--radius);
  color: var(--warn);
  font-size: 0.95rem;
  text-align: left;
}

.what-next {
  margin-top: 1.35rem;
  text-align: left;
  padding: 1rem 1.1rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.what-next h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.what-next ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.what-next li {
  margin-bottom: 0.4rem;
}

.what-next li:last-child {
  margin-bottom: 0;
}

.privacy-line {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.age-note-spaced {
  margin-top: 0.85rem;
}

.prose-follow {
  margin-top: 1.25rem;
}

.fineprint-bar {
  text-align: center;
  padding: 0 1rem 1.25rem;
}

/* Sticky mobile CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(247, 244, 239, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 -6px 20px rgba(42, 40, 38, 0.08);
}

.mobile-cta-inner {
  width: min(100%, var(--wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mobile-cta-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.mobile-cta-price strong {
  font-family: var(--font);
  font-size: 1.05rem;
  color: var(--ink);
}

.mobile-cta-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 12rem;
}

.mobile-cta-note:hover {
  color: var(--accent);
}

.btn-compact {
  padding: 0.7rem 1.1rem;
  font-size: 0.95rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: block;
  }
}

@media (min-width: 768px) {
  .page-home {
    padding-bottom: 0;
  }
}

/* Free→paid bridge (free.html) */
.bridge-module {
  margin-top: 0.5rem;
  padding: 1.35rem 1.4rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bridge-module ul {
  margin: 0.75rem 0 1.1rem;
  padding-left: 1.15rem;
  color: var(--ink-muted);
}

.bridge-module li {
  margin-bottom: 0.45rem;
}

.bridge-status {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 768px) {
  .hero {
    padding: 4.5rem 0 3.5rem;
  }

  section {
    padding: 3.75rem 0;
  }
}

/* Wallet card (screen + print) */
.wallet-section {
  padding-top: 0;
}

.wallet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  max-width: 28rem;
  margin-inline: auto;
}

.wallet-card-head {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.wallet-brand {
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.wallet-age {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.wallet-block {
  margin: 1.1rem 0;
}

.wallet-block h2 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.wallet-emergency {
  background: #f3ebe4;
  border: 1px solid #e0d0c2;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--warn);
}

.wallet-emergency h2 {
  font-size: 1.05rem;
  color: var(--warn);
  margin-bottom: 0.4rem;
}

.wallet-emergency p {
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
}

.wallet-steps {
  margin: 0.4rem 0 0;
  padding-left: 1.25rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
}

.wallet-steps li {
  margin-bottom: 0.55rem;
}

.wallet-timer-hint {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.wallet-script .pocket-script {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0.35rem 0 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.wallet-card-foot {
  margin-top: 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.wallet-card-foot p {
  margin: 0.25rem 0;
}

.print-only {
  display: none;
}

.fineprint {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Sample / peek-inside page */
.sample-example-card {
  overflow: hidden;
}

.sample-example-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--warn);
  background: #f3ebe4;
  border: 1px solid #e0d0c2;
  border-radius: 999px;
}

.sample-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
}

.sample-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.45;
  min-width: 36rem;
}

.sample-table th,
.sample-table td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.7rem;
  text-align: left;
  vertical-align: top;
}

.sample-table th {
  background: var(--bg-soft);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink-muted);
}

.sample-table td {
  background: var(--surface);
  color: var(--ink);
}

.wallet-print-sheet {
  display: none;
}

@media print {
  @page {
    size: Letter;
    margin: 0.4in;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 9.5pt;
    line-height: 1.35;
  }

  .no-print,
  .skip-link,
  .site-header,
  .site-footer,
  .hero,
  .disclaimer,
  .wallet-card-screen {
    display: none !important;
  }

  .print-only {
    display: block;
  }

  main,
  .wallet-section,
  .wrap-narrow {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 2-up credit-card-ish: two identical cards on one Letter/A4 page */
  .wallet-print-sheet {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.28in;
    width: 100%;
    align-items: stretch;
  }

  .wallet-card-print {
    box-shadow: none;
    border: 1px dashed #444;
    border-radius: 0.12in;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0.28in 0.3in 0.26in;
    page-break-inside: avoid;
    font-size: 8.6pt;
    line-height: 1.32;
    background: #fff;
  }

  .wallet-card-print .wallet-brand {
    font-size: 11pt;
  }

  .wallet-card-print .wallet-age {
    font-size: 7.5pt;
  }

  .wallet-card-print .wallet-card-head {
    margin-bottom: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .wallet-card-print .wallet-block {
    margin: 0.45rem 0;
  }

  .wallet-card-print .wallet-block h2 {
    font-size: 9.5pt;
    margin-bottom: 0.25rem;
  }

  .wallet-card-print .wallet-steps {
    font-size: 8.4pt;
    padding-left: 1rem;
    margin-top: 0.2rem;
  }

  .wallet-card-print .wallet-steps li {
    margin-bottom: 0.28rem;
  }

  .wallet-card-print .wallet-script .pocket-script {
    font-size: 9pt;
  }

  .wallet-card-print .wallet-emergency {
    background: #f5f5f5 !important;
    border-color: #666;
    padding: 0.35rem 0.45rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .wallet-card-print .wallet-emergency p {
    font-size: 8pt;
  }

  .wallet-card-print .wallet-card-foot {
    margin-top: 0.4rem;
    padding-top: 0.35rem;
    font-size: 7.5pt;
  }

  .wallet-card-print .wallet-timer-hint {
    display: none !important;
  }

  a {
    color: #000;
    text-decoration: none;
  }

  a[href]::after {
    content: none;
  }
}

/* Narrow paper fallback: stack 2-up if columns too tight */
@media print and (max-width: 7.5in) {
  .wallet-print-sheet {
    grid-template-columns: 1fr;
  }
}
