/* ====== BASE ====== */
:root{
  --bg:#f4f6fa;
  --text:#1e293b;
  --muted:#475569;
  --card:#ffffff;
  --border:rgba(15,23,42,0.08);
  --shadow:0 16px 36px rgba(0,0,0,0.12);
  --blue:#2563eb;
  --blue2:#1d4ed8;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.55;
}

a{ text-decoration:none; color:var(--blue); }
a:hover{ text-decoration:underline; }

p{ margin:0 0 14px; }
h1,h2,h3{ line-height:1.2; margin:0 0 12px; }
ul,ol{ margin:0 0 14px; padding-left:22px; }
li{ margin:6px 0; }

/* Utilities */
.small{
  color:var(--muted);
  font-size:0.9rem;
  line-height:1.5;
}
.subtitle{ color:var(--muted); font-size:1.05rem; max-width:70ch; }
.muted{ opacity:0.7; }

/* ====== HEADER / NAV ====== */
.site-header{
  position:sticky;
  top:0;
  z-index:2000;
  background:rgba(255,255,255,0.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,0.06);
}

/* Highlight Tools parent when a tools page is active */
.site-header[data-active^="getting-"] 
.nav-dropdown > .nav-dropbtn {
  background: rgba(37,99,235,0.12);
  color: #1d4ed8;
}

.nav-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:10px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  height:44px;
  width:auto;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 12px;
  border-radius:999px;
  color:#0f172a;
  font-weight:650;
  font-size:0.98rem;
}

.nav-link:hover{
  background:rgba(37,99,235,0.08);
  text-decoration:none;
}

/* Make the Tools button look identical to nav links */
.nav-dropbtn{
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 10px 12px;        /* match .nav-link */
  border-radius: 999px;      /* match .nav-link */
  color: #0f172a;
  font: inherit;
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1;
  cursor: pointer;
}

/* Hover matches links */
.nav-dropbtn:hover{
  background: rgba(37,99,235,0.08);
}

/* Remove the “odd” browser outline, but keep a nice accessible focus */
.nav-dropbtn:focus{
  outline: none;
}
.nav-dropbtn:focus-visible{
  outline: 3px solid rgba(37,99,235,0.35);
  outline-offset: 2px;
}


/* Remove browser focus ring from Tools dropdown button */
.nav-dropbtn{
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
  border-radius: 999px; /* match other nav pills */
}

/* Remove focus ring on click */
.nav-dropbtn:focus,
.nav-dropbtn:active{
  outline: none;
  box-shadow: none;
}

/* Optional: add SAME hover effect as other nav links */
.nav-dropbtn:hover{
  background: rgba(37,99,235,0.08);
}

.nav-cta{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:var(--blue);
  color:#fff;
  font-weight:750;
  box-shadow:0 10px 24px rgba(37,99,235,0.28);
}

.nav-cta:hover{
  background:var(--blue2);
  text-decoration:none;
}

.chev{ font-size:0.9em; opacity:0.8; }

/* Dropdown */
.nav-dropdown{ position:relative; }

.nav-dropmenu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:240px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:8px;
  display:none;
  z-index:2100;
}

/* Invisible bridge so moving mouse down doesn't close the menu */
.nav-dropmenu::before{
  content:"";
  position:absolute;
  top:-10px;
  left:0;
  right:0;
  height:10px;
}

/* Active submenu item */
.nav-item.is-active {
  background: rgba(37,99,235,0.12);
  color: #1d4ed8;
  font-weight: 750;
}

.nav-item{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:#0f172a;
  font-weight:650;
}

.nav-item:hover{
  background:rgba(37,99,235,0.08);
  text-decoration:none;
}

/* Mobile click-open support (your JS toggles .open) */
.nav-dropdown.open .nav-dropmenu{ display:block; }

/* Desktop hover-open behaviour */
@media (min-width: 920px){
  .nav-dropdown:hover .nav-dropmenu{ display:block; }
}

/* Active link */
.site-header .is-active{
  background:rgba(37,99,235,0.12);
  color:var(--blue2);
}

/* Active state for Tools dropdown (when on tools pages) */
.site-header .nav-dropdown.is-active > .nav-dropbtn{
  background: rgba(37,99,235,0.12);
  color: var(--blue2);
}

/* Mobile */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#0f172a;
  margin:4px auto;
  border-radius:2px;
}

@media (max-width: 919px){
  .nav-toggle{ display:inline-block; }

  .nav{
    position:absolute;
    top:66px;
    left:16px;
    right:16px;
    background:rgba(255,255,255,0.98);
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:12px;
    display:none;
    flex-direction:column;
    gap:8px;
  }

  .nav.open{ display:flex; }

  .nav-dropmenu{
    position:static;
    box-shadow:none;
    border-radius:12px;
    margin-top:6px;
  }

  .nav-dropmenu::before{ display:none; }
}

/* ====== PAGE LAYOUT ====== */
.page{
  max-width:1100px;
  margin:0 auto;
  padding:26px 16px 60px;
}

.hero{
  padding:18px 0 8px;
}

.hero h1{
  font-size:2.1rem;
  letter-spacing:-0.02em;
}

.wrapper{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
  margin-top:14px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px 18px;
  box-shadow:0 10px 26px rgba(0,0,0,0.06);
}

.card h2{
  font-size:1.25rem;
  margin-bottom:10px;
}

.card.highlight{
  border-color:rgba(37,99,235,0.25);
  background:rgba(37,99,235,0.05);
}

/* ====== PRICING PAGE COMPONENTS ====== */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
}
@media (min-width:880px){
  .grid{ grid-template-columns:1fr 1fr; }
}

.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  font-size:.95rem;
  font-weight:800;
  background:#eef2ff;
  color:#1e40af;
  margin-bottom:12px;
}
.badge-alt{
  background:#e0f2fe;
  color:#075985;
}

.price{
  font-size:2.1rem;
  font-weight:900;
  margin:8px 0 4px;
  color:#0f172a;
}
.price-sub{
  font-size:1rem;
  font-weight:800;
  color:#64748b;
}

.sub{
  color:#64748b;
  margin:0 0 14px;
  line-height:1.6;
}

.list{
  margin:0;
  padding-left:22px;
  color:#334155;
  line-height:1.7;
  font-size:1.05rem;
}

.cta-row{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  font-size:1.02rem;
  border:1px solid rgba(37,99,235,0.25);
  text-decoration:none;
}
.btn-primary{
  background:var(--blue);
  color:#fff;
  border:none;
  box-shadow:0 10px 24px rgba(37,99,235,0.30);
}
.btn-primary:hover{ background:var(--blue2); text-decoration:none; }

.btn-ghost{
  background:#fff;
  color:var(--blue);
}
.btn-ghost:hover{ background:#f8fafc; text-decoration:none; }

.pill{
  display:block;
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  background:#f1f5f9;
  border:1px solid rgba(15,23,42,0.08);
  padding:10px 12px;
  border-radius:10px;
  font-size:.98rem;
  margin-top:8px;
  word-break:break-word;
}

.notice{
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#7c2d12;
  padding:14px 16px;
  border-radius:12px;
  line-height:1.55;
}

.fineprint{
  margin-top:10px;
  font-size:.95rem;
  color:#64748b;
  line-height:1.6;
}


.steps{
  margin:0;
  padding-left:20px;
}

.link-box{
  margin:10px 0 12px;
  padding:12px;
  border-radius:14px;
  background:#fff;
  border:1px dashed rgba(37,99,235,0.35);
}

.big-link{
  display:inline-block;
  font-weight:800;
  font-size:1.05rem;
  word-break:break-word;
}

blockquote{
  margin:0;
  padding:14px 16px;
  border-left:4px solid rgba(37,99,235,0.45);
  background:rgba(37,99,235,0.06);
  border-radius:12px;
  color:#0f172a;
}

/* Currency toggle */
.currency-toggle{
  display:flex;
  gap:8px;
  margin:10px 0 12px;
  flex-wrap:wrap;
}

.cur-btn{
  border:1px solid var(--border);
  background:#fff;
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:750;
  color:#0f172a;
}

.cur-btn.active{
  background:rgba(37,99,235,0.12);
  border-color:rgba(37,99,235,0.30);
  color:var(--blue2);
}

/* Earnings blocks */
.earnings-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.earn-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
}

.earn-title{
  font-weight:900;
  margin-bottom:8px;
}

.earn-line{
  margin:6px 0;
}

@media (min-width: 960px){
  .hero h1{ font-size:2.35rem; }
  .earnings-grid{ grid-template-columns:1fr 1fr; }
}

/* ====== FOOTER ====== */
.site-footer{
  background:#0f172a;
  color:#cbd5e1;
  margin-top:80px;
}

.footer-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:40px 20px 24px;
}

.footer-cols{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap:32px;
}

.footer-col strong{
  display:block;
  margin-bottom:10px;
  color:#fff;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li{
  margin-bottom:8px;
}

.footer-col a{
  color:#cbd5e1;
}

.footer-col a:hover{
  color:#fff;
  text-decoration:none;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:32px;
  padding-top:16px;
  text-align:center;
}

@media (max-width: 768px){
  .footer-cols{ grid-template-columns:1fr; }
}

/* ====== HOME PAGE TWEAKS ====== */
.hero-home{
  padding:44px 0 18px;
  background:linear-gradient(135deg, #eef3ff, #ffffff);
}
.hero-home h1{
  max-width:900px;
  margin:0 auto 12px;
  font-size:clamp(1.9rem, 3vw, 2.8rem);
  line-height:1.15;
  text-align:center;
}
.hero-home .subtitle{
  max-width:760px;
  margin:0 auto;
  text-align:center;
  color:#475569;
  font-size:clamp(1rem, 1.6vw, 1.2rem);
  line-height:1.5;
}

/* Responsive 16:9 embed that always fills the card width */
.video-embed{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,0.12);
  background:#000;
}
.video-embed iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* Home text */
.home-lead{
  font-size:1.15rem;
  line-height:1.6;
  margin:6px 0 14px;
  color:#334155;
}
.home-body{
  font-size:1.05rem;
  line-height:1.7;
  margin:0 0 14px;
  color:#334155;
}

/* Make CTA button consistent */
.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--blue);
  color:#fff;
  padding:14px 26px;
  border-radius:999px;
  font-size:1.05rem;
  font-weight:750;
  margin-top:6px;
  box-shadow:0 10px 24px rgba(37, 99, 235, 0.28);
  transition:0.15s ease;
}
.cta-btn:hover{
  background:var(--blue2);
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(37, 99, 235, 0.35);
  text-decoration:none;
}

.footer-note{
  margin-top:14px;
  font-size:0.9rem;
  color:#64748b;
}

/* Tools page layout: wider main + narrower sidebar */
.grid-tools{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
}
@media (min-width: 920px){
  .grid-tools{ grid-template-columns: 1.25fr 0.75fr; }
}

/* Getting Customers callouts */
.callout{
  background:#f1f5f9;
  border:1px solid rgba(15,23,42,0.08);
  border-radius:14px;
  padding:14px 16px;
  margin:14px 0;
}
.script{
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#7c2d12;
  border-radius:14px;
  padding:14px 16px;
  line-height:1.6;
  font-style:italic;
  margin:12px 0 0;
}
.ref-box{
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.08);
  background:#f8fafc;
  margin-top:12px;
  line-height:1.6;
}

/* ====== FAQ PAGE ====== */
.faq-search{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.faq-search input{
  flex:1;
  min-width:240px;
  padding:14px 14px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.12);
  font-size:1rem;
  outline:none;
  background:#fff;
  color:#0f172a;
}

.faq-search input:focus{
  border-color:rgba(37,99,235,0.55);
  box-shadow:0 0 0 4px rgba(37,99,235,0.12);
}

.faq-pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,0.10);
  background:#f8fafc;
  color:#0f172a;
  font-weight:700;
  font-size:0.95rem;
  cursor:pointer;
  user-select:none;
}

.faq-pill:hover{
  background:#eef2ff;
  border-color:rgba(37,99,235,0.25);
}

.faq-no-results{
  display:none;
  padding:14px 16px;
  border-radius:14px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#7c2d12;
  line-height:1.6;
  margin-top:14px;
}

/* Accordion */
.faq-accordion details{
  border:1px solid rgba(15,23,42,0.08);
  border-radius:14px;
  padding:14px 16px;
  background:#fff;
}

.faq-accordion details + details{
  margin-top:12px;
}

.faq-accordion summary{
  cursor:pointer;
  list-style:none;
  font-weight:850;
  color:#0f172a;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  font-size:1.08rem;
}

.faq-accordion summary::-webkit-details-marker{
  display:none;
}

.faq-accordion .answer{
  margin-top:10px;
  color:#334155;
  line-height:1.7;
  font-size:1.05rem;
}

.faq-accordion .answer ul{
  margin:10px 0 0 18px;
}

/* CTA row/buttons (if not already styled elsewhere) */
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:999px;
  font-weight:800;
  font-size:1.05rem;
  border:1px solid rgba(37,99,235,0.25);
  text-decoration:none;
}

.btn-primary{
  background:#2563eb;
  color:#fff;
  border:none;
  box-shadow:0 10px 24px rgba(37,99,235,0.30);
}

.btn-primary:hover{
  background:#1d4ed8;
  text-decoration:none;
}

.btn-ghost{
  background:#fff;
  color:#2563eb;
}

.btn-ghost:hover{
  background:#f8fafc;
  text-decoration:none;
}

/* =========================
   FAQ page tweaks (scoped)
   ========================= */

/* Search row */
.search{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.search input{
  flex: 1 1 340px;
  min-width: 240px;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.12);
  font-size: 1rem;
  outline: none;
  background:#fff;
  color:#0f172a;
}

.search input:focus{
  border-color: rgba(37,99,235,0.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

/* IMPORTANT: only style the FAQ filter pills (not other .pill uses) */
.pill[data-filter]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: #f8fafc;
  color:#0f172a;
  font-weight: 750;
  font-size: 0.95rem;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}

.pill[data-filter]:hover{
  background:#eef2ff;
  border-color: rgba(37,99,235,0.25);
}

/* No results */
.no-results{
  display:none;
  padding:14px 16px;
  border-radius:14px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#7c2d12;
  line-height:1.6;
  margin-top:14px;
}

/* FAQ accordion */
#faqList details{
  border:1px solid rgba(15,23,42,0.08);
  border-radius:14px;
  padding:14px 16px;
  background:#fff;
}

#faqList details + details{ margin-top:12px; }

#faqList summary{
  cursor:pointer;
  list-style:none;
  font-weight:850;
  color:#0f172a;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  font-size:1.08rem;
}

#faqList summary::-webkit-details-marker{ display:none; }

/* Hide your inline "+" span and use a nicer automatic indicator */
#faqList summary .muted{ display:none; }

#faqList summary::after{
  content:"+";
  color:#64748b;
  font-weight:900;
  flex: 0 0 auto;
  margin-left: 10px;
}

#faqList details[open] summary::after{
  content:"–";
}

#faqList .answer{
  margin-top:10px;
  color:#334155;
  line-height:1.7;
  font-size:1.05rem;
}

#faqList .answer ul{ margin:10px 0 0 18px; }

/* =========================
   Responsive video embeds
   ========================= */

.video-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  background: #0b1220;
}

.video-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-caption {
  padding: 12px 14px;
  background: #fff;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== /print/ A4 “paper” preview ===== */
.a4-preview{
  margin-top: 12px;
}

/* The paper */
.a4-sheet{
  /* A4 ratio: 210 x 297 -> 1 : 1.414 */
  aspect-ratio: 210 / 297;
  width: 100%;
  max-width: 560px;          /* keeps it sensible on desktop */
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

/* Subtle “paper” feel */
.a4-sheet:before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(15,23,42,0.03), transparent 45%);
  pointer-events:none;
}

/* 8 cards on the sheet */
.a4-sheet{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Individual cut-out card */
.a4-card{
  border: 1px dashed rgba(15,23,42,0.30);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0; /* helps in grids */
}

/* Card typography tuned to “printed” */
.a4-card-title{
  font-weight: 900;
  font-size: 0.92rem;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 6px;
}
.a4-card-sub{
  font-size: 0.78rem;
  color: #334155;
  margin-bottom: 8px;
}
.a4-card-label{
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}
.a4-card-link{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.80rem;
  font-weight: 800;
  color: #0f172a;
  text-decoration: underline; /* looks like a URL on paper */
  word-break: break-word;
}
.a4-card-foot{
  font-size: 0.72rem;
  color: #475569;
  margin-top: 8px;
}

/* Make it still readable on narrow screens */
@media (max-width: 520px){
  .a4-sheet{
    max-width: 100%;
    padding: 12px;
    gap: 8px;
  }
  .a4-card{
    padding: 9px;
  }
  .a4-card-title{ font-size: 0.90rem; }
  .a4-card-link{ font-size: 0.78rem; }
}

/* ===== /print/ “handout slip” preview ===== */
.slip-stage{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.slip{
  width: min(420px, 100%);
  background: #fff;
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
  padding: 18px 18px 16px;
}

/* subtle paper grain */
.slip:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 15%, rgba(15,23,42,0.03), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(15,23,42,0.02), transparent 40%),
    linear-gradient(180deg, rgba(15,23,42,0.02), transparent 30%);
  pointer-events:none;
}

/* “cut corners / paper” vibe */
.slip:after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
  pointer-events:none;
}

.slip-top{ margin-bottom: 12px; }
.slip-title{
  font-weight: 950;
  font-size: 1.05rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.slip-sub{
  margin-top: 6px;
  font-size: 0.92rem;
  color: #334155;
}

.slip-label{
  font-size: 0.9rem;
  font-weight: 850;
  color: #0f172a;
  margin-bottom: 6px;
}

/* Looks like a printed URL */
.slip-link{
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
  font-weight: 900;
  color: #0f172a;
  text-decoration: underline;
  word-break: break-word;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(15,23,42,0.08);
}

.slip-foot{
  margin-top: 10px;
  font-size: 0.86rem;
  color: #475569;
}

/* cut line across the slip */
.slip-cutline{
  margin: 16px 0 12px;
  height: 0;
  border-top: 2px dashed rgba(15,23,42,0.25);
  position: relative;
}

/* little “notches” left/right like it’s been cut */
.slip-cutline:before,
.slip-cutline:after{
  content:"";
  position:absolute;
  top:-8px;
  width: 16px;
  height: 16px;
  background: #f4f6fa; /* matches page bg */
  border-radius: 999px;
}
.slip-cutline:before{ left: -26px; }
.slip-cutline:after{ right: -26px; }

.slip-bottom{
  padding-top: 2px;
}
.slip-small{
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.45;
}


/* ================================
   PRINT PAGE ( /print/ )
   Scope: .page-print
================================ */

/* layout */
.page-print .hero{
  padding:70px 20px 40px;
  background:linear-gradient(135deg,#eef3ff,#ffffff);
}
.page-print .hero h1{
  font-size:clamp(1.9rem,3.2vw,2.8rem);
  font-weight:850;
  margin:0 auto 12px;
  max-width:980px;
  color:#0f172a;
  line-height:1.15;
}
.page-print .hero .subtitle{
  font-size:1.15rem;
  max-width:860px;
  margin:0 auto;
  color:#475569;
  line-height:1.6;
}

.page-print .wrapper{
  max-width:980px;
  margin:0 auto;
  padding:28px 20px 90px;
}

.page-print .grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin-top:18px;
}
@media (min-width:860px){
  .page-print .grid{ grid-template-columns:1.2fr 0.8fr; }
}

/* cards */
.page-print .card{
  background:#fff;
  border-radius:16px;
  padding:26px;
  box-shadow:0 10px 26px rgba(0,0,0,0.07);
  border:1px solid rgba(15,23,42,0.06);
}
.page-print .card h2{
  margin:0 0 10px 0;
  color:#0f172a;
  font-size:1.35rem;
}
.page-print .small{ font-size:0.95rem; }
.page-print .muted{ color:#64748b; }
.page-print .mono{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono",monospace;
  word-break:break-word;
}

/* form */
.page-print label{
  display:block;
  font-weight:800;
  margin:10px 0 6px;
  color:#0f172a;
}
.page-print input[type="text"]{
  width:100%;
  padding:12px 12px;
  border:1px solid rgba(15,23,42,0.12);
  border-radius:12px;
  font-size:1rem;
  color:#0f172a;
  background:#fff;
  outline:none;
}
.page-print input[type="text"]:focus{
  border-color:rgba(37,99,235,0.55);
  box-shadow:0 0 0 3px rgba(37,99,235,0.12);
}

/* buttons row */
.page-print .cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:14px;
}
.page-print .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  font-weight:800;
  font-size:1.02rem;
  border:1px solid rgba(37,99,235,0.25);
  cursor:pointer;
  text-decoration:none;
  user-select:none;
}
.page-print .btn[disabled]{ opacity:.55; cursor:not-allowed; }
.page-print .btn-primary{
  background:#2563eb;
  color:#fff;
  border:none;
  box-shadow:0 10px 24px rgba(37,99,235,0.30);
}
.page-print .btn-primary:hover{ background:#1d4ed8; }
.page-print .btn-ghost{
  background:#fff;
  color:#2563eb;
}
.page-print .btn-ghost:hover{ background:#f8fafc; }

/* notes + quote */
.page-print .note{
  background:#f8fafc;
  border:1px solid rgba(15,23,42,0.08);
  border-radius:14px;
  padding:16px;
  margin-top:14px;
}
.page-print .note h3{
  margin:0 0 8px;
  color:#0f172a;
  font-size:1.05rem;
}
.page-print .quote{
  border-left:4px solid #0f172a;
  padding:10px 12px;
  background:#f1f5f9;
  border-radius:10px;
  color:#0f172a;
  font-weight:650;
}

/* error/success */
.page-print .err{
  color:#7c2d12;
  background:#fff7ed;
  border:1px solid #fed7aa;
  border-radius:12px;
  padding:10px 12px;
  margin-top:12px;
}
.page-print .ok{
  margin-top:10px;
  color:#0f172a;
  font-weight:700;
}

/* video placeholder block (matches your About page style) */
.page-print .video-wrap{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,0.08);
  box-shadow:0 10px 26px rgba(0,0,0,0.10);
  background:#0b1220;
}
.page-print .video-inner{
  position:relative;
  width:100%;
  padding-top:56.25%; /* 16:9 */
}
.page-print .video-inner iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.page-print .video-caption{
  padding:12px 14px;
  background:#fff;
  color:#64748b;
  font-size:0.95rem;
  line-height:1.5;
}

/* image placeholder */
.page-print .img-card{
  width:100%;
  height:auto;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.08);
  display:block;
}

/* Print page small helpers (replaces old inline styles) */
.print-label { display:block; font-weight:800; margin-top:10px; }
.print-help { margin-top:10px; }
.print-mt { margin-top:14px; }
.print-zero { margin:0 0 10px; }

.note-title { margin:0 0 8px; }
.note-ol { margin:0 0 0 18px; }
.note-tip { margin-top:10px; }

.print-photo { width:100%; height:auto; border-radius:14px; border:1px solid rgba(15,23,42,0.08); }
.print-photo-cap { margin-top:8px; }

.print-linkbox {
  display:inline-block;
  padding:10px 12px;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(15,23,42,0.10);
}

/* Make the two buttons the same height in CTA rows */
.cta-row{
  display:flex;
  align-items:center;
  gap:12px;
}

.cta-row .nav-cta,
.cta-row .btn.btn-ghost{
  padding: 14px 22px;      /* match */
  line-height: 1;          /* match */
  font-size: 15px;         /* match */
  display: inline-flex;    /* match */
  align-items: center;     /* match */
  justify-content: center; /* match */
}


/* Spacing between cards on tools pages */
.grid-tools .card {
  margin-bottom: 24px;
}

.biz.is-empty{
  visibility: hidden;   /* keeps layout space, hides text */
}

.voucher{
  position: relative; /* REQUIRED for absolute badge */
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 7mm;
  background:#fff;
  overflow:hidden;

  display:grid;
  grid-template-columns: 1fr 46mm;
  gap: 6mm;
  align-items: center;
}

.badge{
  position: absolute;
  top: 7mm;
  right: 7mm;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(15,23,42,0.04);
  color:#0f172a;
  white-space: nowrap;
}

.biz{
  font-weight: 850;
  font-size: 12px;
  line-height: 1.15;
  margin: 0 0 3mm;
  padding-right: 28mm; /* leaves room so the badge doesn't overlap text */
}


