/* Styles for blog / cards / pricing pages — matches the site's dark purple theme */

.page-hero { padding: 170px 5% 30px; text-align: center; position: relative; overflow: visible; }
.page-hero .page-kicker { display: inline-block; padding: 6px 16px; border: 1px solid #2a2a2e; border-radius: 99px; color: #b18cff; font-size: 13px; margin-bottom: 18px; background: rgba(129,75,246,.08); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.12; margin: 0 0 14px; }
.page-hero p.lead { color: #9b9b9f; max-width: 620px; margin: 0 auto; font-size: 17px; }
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 30px 5% 90px; }

/* --- Cards page --- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; }
.product-card { background: #0d0d0f; border: 1px solid #232326; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, border-color .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-6px); border-color: #814bf6; box-shadow: 0 18px 60px rgba(129,75,246,.22); }
.product-card .img-holder { position: relative; height: 190px; background: radial-gradient(120% 120% at 20% 0%, rgba(129,75,246,.35), rgba(1,1,1,0) 60%), #131316; display: flex; align-items: center; justify-content: center; }
.product-card .img-holder img { max-width: 78%; max-height: 150px; object-fit: contain; border-radius: 12px; filter: drop-shadow(0 14px 30px rgba(0,0,0,.5)); }
.product-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { font-size: 19px; margin: 0 0 6px; color: #fff; }
.product-card .price { color: #b18cff; font-weight: 700; font-size: 24px; margin-bottom: 10px; }
.product-card p.desc { color: #9b9b9f; font-size: 14px; line-height: 1.6; flex: 1; margin: 0 0 18px; }
.product-card .buy { display: inline-block; text-align: center; padding: 12px 18px; border-radius: 10px; background: #814bf6; color: #fff; font-weight: 600; font-size: 14px; text-decoration: none; }
.product-card .buy:hover { background: #6d38e0; }
.product-card .buy.ghost { background: transparent; border: 1px solid #2a2a2e; color: #d6d6da; }

/* --- Pricing page --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; align-items: stretch; }
.price-card { background: #0d0d0f; border: 1px solid #232326; border-radius: 18px; padding: 30px 28px; display: flex; flex-direction: column; position: relative; transition: transform .25s, border-color .25s; }
.price-card:hover { transform: translateY(-6px); border-color: #814bf6; }
.price-card.popular { border-color: #814bf6; box-shadow: 0 0 60px rgba(129,75,246,.25); }
.price-card .pop-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #814bf6; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 99px; }
.price-card h3 { font-size: 18px; margin: 0 0 8px; color: #fff; }
.price-card .amount { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.price-card .amount span { font-size: 14px; color: #9b9b9f; font-weight: 400; }
.price-card p.desc { color: #9b9b9f; font-size: 13px; margin: 0 0 18px; min-height: 34px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-card ul li { color: #d6d6da; font-size: 14px; padding: 7px 0 7px 26px; position: relative; border-bottom: 1px dashed #1c1c20; }
.price-card ul li::before { content: "✓"; color: #4ade80; position: absolute; left: 0; font-weight: 700; }
.price-card .buy { display: block; text-align: center; padding: 13px; border-radius: 10px; background: #814bf6; color: #fff; font-weight: 600; text-decoration: none; }
.price-card .buy:hover { background: #6d38e0; }

/* --- Blog --- */
.cat-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.cat-chips a { padding: 8px 18px; border-radius: 99px; border: 1px solid #2a2a2e; color: #9b9b9f; font-size: 13px; text-decoration: none; }
.cat-chips a:hover { color: #fff; border-color: #814bf6; }
.cat-chips a.active { background: #814bf6; color: #fff; border-color: #814bf6; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; }
.post-card { background: #0d0d0f; border: 1px solid #232326; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: transform .25s, border-color .25s; }
.post-card:hover { transform: translateY(-6px); border-color: #814bf6; }
.post-card .cover { height: 180px; background: #131316; }
.post-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 20px 22px 22px; }
.post-card .meta { font-size: 12px; color: #b18cff; margin-bottom: 8px; }
.post-card h3 { color: #fff; font-size: 18px; line-height: 1.35; margin: 0 0 8px; }
.post-card p { color: #9b9b9f; font-size: 14px; line-height: 1.6; margin: 0; }

/* Single post */
.post-single { max-width: 760px; margin: 0 auto; }
.post-single .cover { border-radius: 18px; overflow: hidden; margin: 26px 0; border: 1px solid #232326; }
.post-single .cover img { width: 100%; display: block; }
.post-body { color: #cfcfd4; font-size: 16px; line-height: 1.8; }
.post-body p { font-size: 16px; line-height: 1.8; margin: 0 0 1em; }
.post-body h2, .post-body h3 { color: #fff; margin: 1.6em 0 .6em; }
.post-body a { color: #b18cff; }
.post-body img { max-width: 100%; border-radius: 12px; }
.post-body blockquote { border-left: 3px solid #814bf6; margin: 1.4em 0; padding: 6px 0 6px 18px; color: #9b9b9f; }
.post-body pre { background: #131316; border: 1px solid #232326; border-radius: 10px; padding: 16px; overflow: auto; font-size: 14px; }
.post-body ul, .post-body ol { padding-left: 1.4em; }
.author-box { display: flex; gap: 16px; align-items: flex-start; background: #0d0d0f; border: 1px solid #232326; border-radius: 16px; padding: 22px; margin-top: 44px; }
.author-box img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 1px solid #2a2a2e; }
.author-box .who { color: #fff; font-weight: 700; margin-bottom: 4px; }
.author-box .bio { color: #9b9b9f; font-size: 14px; line-height: 1.6; }
.related { margin-top: 56px; }
.related h2 { color: #fff; font-size: 22px; margin-bottom: 8px; }

.empty-note { text-align: center; color: #9b9b9f; padding: 70px 0; border: 1px dashed #2a2a2e; border-radius: 16px; margin-top: 36px; }

.page-pagination { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 40px; flex-wrap: wrap; }
.page-pagination a, .page-pagination span { padding: 9px 15px; border-radius: 9px; border: 1px solid #232326; color: #9b9b9f; font-size: 14px; text-decoration: none; transition: border-color .15s, color .15s, background .15s; }
.page-pagination a:hover { border-color: #814bf6; color: #e8e0ff; background: rgba(129,75,246,.08); }
.page-pagination .current { background: linear-gradient(135deg, #9a6ef0, #6d38e0); color: #fff; border-color: #814bf6; font-weight: 700; box-shadow: 0 8px 22px rgba(129,75,246,.45); }
.page-pagination .dots { border: 0; padding: 9px 4px; color: #6b6b70; }
.page-pagination .active span { background: #814bf6; color: #fff; border-color: #814bf6; }
@media (max-width: 480px) { .page-pagination a, .page-pagination span { padding: 8px 12px; font-size: 13px; } }

@media (max-width: 991px) { .cards-grid, .pricing-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); } .page-hero h1 { font-size: 40px; } }
@media (max-width: 640px) { .cards-grid, .pricing-grid, .blog-grid { grid-template-columns: 1fr; } .page-hero { padding-top: 120px; } .page-hero h1 { font-size: 32px; } }

/* Cards page: visual inside product card */
.product-card .img-holder .ccard { max-width: 86%; box-shadow: 0 14px 34px rgba(0,0,0,.5); }
.pricing-extra { color:#9b9b9f; font-size:13px; line-height:1.7; margin:0 0 18px; }
.pricing-extra a { color:#b18cff; }
.pricing-extra table { width:100%; border-collapse:collapse; }
.pricing-extra td, .pricing-extra th { border:1px solid #232326; padding:6px 8px; font-size:12px; }

/* ===== Blog font: Work Sans ===== */
.blog-font, .blog-font .page-hero h1, .blog-font .post-body, .blog-font .post-card h3, .blog-font .post-card p,
.blog-font .author-box, .blog-font .page-hero p.lead, .blog-font .cat-chips a, .blog-font .related h2 {
  font-family: 'Work Sans', 'Segoe UI', system-ui, sans-serif;
}

/* Author socials */
.author-socials { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.author-socials a { font-size:12px; padding:5px 12px; border-radius:99px; border:1px solid #2a2a2e; color:#b18cff; text-decoration:none; }
.author-socials a:hover { border-color:#814bf6; color:#fff; }

/* ===== Realistic card faces (colour-driven via CSS vars) ===== */
.ccard { --c1:#6d38e0; --c2:#31146b; --c3:#9a6ef0; --ink:#f4f5fa;
  container-type:inline-size;
  position:relative; width:100%; aspect-ratio:1.586; border-radius:4.7%/7.5%;
  padding:5.5% 6.5%; color:var(--ink); overflow:hidden; display:flex; flex-direction:column;
  justify-content:space-between; isolation:isolate;
  box-shadow:0 22px 55px rgba(0,0,0,.5), 0 3px 10px rgba(0,0,0,.35), inset 0 1px 1px rgba(255,255,255,.25), inset 0 -1px 2px rgba(0,0,0,.3);
  font-family:'Segoe UI', system-ui, sans-serif; }
.ccard-lg { max-width:430px; } .ccard-md { max-width:360px; }

/* Finishes */
.ccard-fin-gradient { background: linear-gradient(128deg, var(--c3) 0%, var(--c1) 42%, var(--c2) 100%); }
.ccard-fin-silk { background:
  radial-gradient(130% 90% at 85% -10%, var(--c3) 0%, transparent 55%),
  radial-gradient(140% 110% at -15% 110%, var(--c2) 0%, transparent 60%),
  linear-gradient(128deg, var(--c1), var(--c2)); }
.ccard-fin-metal { background:
  linear-gradient(100deg, transparent 20%, rgba(255,255,255,.28) 34%, transparent 46%, rgba(255,255,255,.12) 62%, transparent 76%),
  linear-gradient(128deg, var(--c3) 0%, var(--c1) 45%, var(--c2) 100%); }
.ccard-fin-steel { background:
  repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 3px),
  linear-gradient(180deg, var(--c3), var(--c1) 55%, var(--c2)); }
.ccard-fin-carbon { background:
  radial-gradient(120% 100% at 80% 0%, color-mix(in srgb, var(--c1) 45%, transparent) 0%, transparent 55%),
  repeating-linear-gradient(45deg, #16161a 0 5px, #1e1e24 5px 10px),
  #141418; }
.ccard-fin-holo { background:
  conic-gradient(from 210deg at 70% 20%, rgba(255,0,132,.20), rgba(255,214,0,.16), rgba(0,255,163,.18), rgba(0,140,255,.20), rgba(174,0,255,.18), rgba(255,0,132,.20)),
  linear-gradient(128deg, var(--c3), var(--c1) 45%, var(--c2)); }
.ccard-fin-matte { background: linear-gradient(150deg, var(--c1) 0%, var(--c2) 100%); }

/* Guilloche curves + fine grain overlay */
.ccard-texture { position:absolute; inset:0; z-index:-1; opacity:.5; pointer-events:none;
  background:
    radial-gradient(75% 120% at 110% 118%, transparent 58%, rgba(255,255,255,.055) 58.6%, transparent 59.4%, transparent 63%, rgba(255,255,255,.05) 63.6%, transparent 64.4%, transparent 68%, rgba(255,255,255,.045) 68.6%, transparent 69.4%),
    radial-gradient(85% 130% at -12% -30%, transparent 55%, rgba(255,255,255,.05) 55.6%, transparent 56.4%, transparent 60%, rgba(255,255,255,.045) 60.6%, transparent 61.4%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.016) 0 1px, transparent 1px 4px); }
.ccard-sheen { position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(112deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,.05) 22%, transparent 40%, transparent 68%, rgba(255,255,255,.07) 100%); }
.ccard::after { content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), inset 0 0 0 2px rgba(0,0,0,.06); }

.ccard-row { display:flex; justify-content:space-between; align-items:center; }
.ccard-bank { font-weight:700; font-size:clamp(11px, 4.4cqi, 17px); letter-spacing:.05em; text-transform:uppercase;
  text-shadow:0 1px 2px rgba(0,0,0,.35); max-width:72%; line-height:1.2; }
.ccard-nfc { width:24px; height:24px; opacity:.9; }

.ccard-chiprow { justify-content:flex-start; gap:14px; margin-top:2px; }
.ccard-chip { width:52px; height:39px; filter:drop-shadow(0 2px 3px rgba(0,0,0,.4)); }
.ccard-holo { display:none; }

.ccard-number { max-width:100%; overflow:hidden; text-overflow:clip; font-family:'Consolas','Menlo','Courier New',monospace;
  font-size:clamp(14px, 5.9cqi, 23px); letter-spacing:.1em; font-weight:600; color:var(--ink);
  text-shadow:0 1px 2px rgba(0,0,0,.22); font-variant-numeric:tabular-nums; white-space:nowrap;
  margin:2px 0; }

.ccard-foot { align-items:flex-end; gap:8px; }
.ccard-id { min-width:0; flex:1; }
.ccard-brand { flex-shrink:0; max-width:42%; text-align:right; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.ccard-holder { font-family:'Consolas','Courier New',monospace; font-size:clamp(10px, 3.8cqi, 15px);
  font-weight:700; text-transform:uppercase; letter-spacing:.09em;
  text-shadow:0 1px 2px rgba(0,0,0,.18); }
.ccard-sub { display:flex; align-items:center; gap:8px; margin-top:4px; }
.ccard-validlbl { font-size:6.5px; line-height:1.15; letter-spacing:.1em; opacity:.85; font-weight:700; }
.ccard-exp { font-family:'Consolas','Courier New',monospace; font-size:12.5px; font-weight:700;
  text-shadow:0 1px 2px rgba(0,0,0,.18); }
.ccard-country { font-size:clamp(7px, 2.6cqi, 10px); opacity:.8; letter-spacing:.08em; text-transform:uppercase; margin-left:6px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:90px; }
.ccard-brand { font-weight:800; font-size:clamp(13px, 5.2cqi, 22px); letter-spacing:.01em; font-style:italic;
  text-shadow:0 1px 3px rgba(0,0,0,.45); }
.ccard-brand-mastercard, .ccard-brand-mir, .ccard-brand-unionpay, .ccard-brand-rupay { font-style:normal; font-weight:800; }
.ccard-brand-amex, .ccard-brand-diners { font-size:clamp(9px, 3.1cqi, 13px); font-style:normal; text-transform:uppercase; letter-spacing:.12em; font-weight:800; }

/* Colour swatch grid (admin) */
.swatches { display:grid; grid-template-columns:repeat(20, 1fr); gap:5px; margin-top:10px; }
.swatches button { aspect-ratio:1; border-radius:6px; border:1px solid rgba(255,255,255,.14); cursor:pointer; padding:0; }
.swatches button:hover { transform:scale(1.15); border-color:#fff; }

/* ===== Marketplace card table (screenshot layout) ===== */
.market { max-width: 1160px; margin: 0 auto; padding: 20px 4% 90px; }
.market-table { background: #0d0d0f; border: 1px solid #232326; border-radius: 18px; overflow: hidden; }
.market-head, .market-row { display: grid; grid-template-columns: 220px 220px 1fr 120px; align-items: center; gap: 16px; padding: 16px 22px; }
.market-head { background: #131316; color: #9b9b9f; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; border-bottom: 1px solid #232326; }
.market-row { border-bottom: 1px solid #1c1c20; }
.market-row:last-child { border-bottom: 0; }
.market-row:hover { background: rgba(255,255,255,.015); }
.mc-numcell { display: flex; align-items: center; gap: 12px; }
.mc-pan { background: #f1f2f6; color: #15161c; font-family: 'Consolas', monospace; font-weight: 700; font-size: 14px; padding: 9px 12px; border-radius: 9px; letter-spacing: .04em; white-space: nowrap; box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); }
.mc-pan.locked { background: linear-gradient(135deg, #4b4b52, #2f2f35); color: #cfcfd4; }
.mc-mini { width: 46px; height: 30px; border-radius: 5px; flex-shrink: 0; position: relative; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,.4); }
.mc-mini .ccard { position: absolute; inset: 0; width: 100%; max-width: none; border-radius: 5px; padding: 5px 6px; aspect-ratio: auto; }
.mc-mini .ccard-texture, .mc-mini .ccard-sheen, .mc-mini .ccard-number, .mc-mini .ccard-foot, .mc-mini .ccard-head, .mc-mini .ccard-holo { display: none; }
.mc-mini .ccard-chiprow { margin: 0; }
.mc-mini .ccard-chip { width: 18px; height: 13px; }
.mc-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #e8e8ec; font-size: 15px; }
.mc-brandmark { font-weight: 800; font-style: italic; font-size: 17px; padding: 2px 4px; border-radius: 4px; }
.mc-brandmark.b-visa { color: #1a1f71; background: #fff; font-family: Georgia, serif; }
.mc-brandmark.b-mastercard { color: #fff; background: linear-gradient(90deg,#eb001b 50%,#f79e1b 50%); -webkit-text-fill-color: transparent; background-clip: text; -webkit-background-clip: text; font-style: normal; }
.mc-brandmark.b-generic { color: #b18cff; }
.mc-notes { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.mc-chip { font-size: 12.5px; padding: 6px 11px; border-radius: 8px; border: 1px solid #2a2a2e; color: #cfcfd4; background: #131316; white-space: nowrap; }
.mc-chip.price { border-style: solid; color: #e8e8ec; }
.mc-chip.warn { border-color: #b45c3a; color: #e6a883; }
.mc-chip.good { border-color: #2e7d54; color: #7fd6a4; }
.mc-chip.threeds { border-color: #3a4db4; color: #9fb0ff; }
.mc-chip.threeds::before { content: "🛡 "; }
.mc-buy { justify-self: end; }
.mc-buy button, .mc-buy a { display: inline-block; padding: 10px 22px; border-radius: 10px; border: 0; background: #814bf6; color: #fff; font-weight: 600; font-size: 14px; cursor: pointer; text-decoration: none; }
.mc-buy button:hover { background: #6d38e0; }
.mc-buy .disabled { background: #26262b; color: #6f6f75; cursor: not-allowed; }
.mc-grade { color: #9b9b9f; font-size: 13px; }
.mc-grade b { color: #e2b84b; }
.mc-grade .sub { font-size: 12px; color: #6f6f75; }
@media (max-width: 900px) {
  .market-head { display: none; }
  .market-row { grid-template-columns: 1fr; gap: 12px; }
  .mc-buy { justify-self: start; }
}

/* Checkout / reveal */
.reveal-wrap { max-width: 620px; margin: 0 auto; padding: 40px 5% 90px; }
.reveal-box { background: #0d0d0f; border: 1px solid #232326; border-radius: 18px; padding: 30px; }
.reveal-field { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid #1c1c20; }
.reveal-field .l { color: #9b9b9f; font-size: 13px; }
.reveal-field .v { font-family: 'Consolas', monospace; font-size: 15px; color: #fff; font-weight: 600; }
.reveal-warn { background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.3); color: #fca5a5; border-radius: 10px; padding: 12px 16px; font-size: 13px; margin-top: 18px; }

/* ===== Cards storefront (original design) ===== */
.cards-stage { max-width: 1200px; margin: 0 auto; padding: 10px 5% 100px; }
.cards-lead-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 24px 0 8px; }
.cards-lead-row .pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 99px; border: 1px solid #232326; background: #0d0d0f; color: #9b9b9f; font-size: 13px; }
.cards-lead-row .pill b { color: #fff; font-weight: 600; }

.cards-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 44px; }
.showcard { position: relative; border-radius: 22px; padding: 26px; background:
    radial-gradient(120% 80% at 50% -10%, rgba(129,75,246,.12), transparent 60%), #0c0c0f;
  border: 1px solid #1e1e22; transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s; overflow: hidden; }
.showcard::before { content:""; position:absolute; inset:0; border-radius:inherit; padding:1px;
  background: linear-gradient(135deg, rgba(129,75,246,.5), transparent 40%, transparent 60%, rgba(129,75,246,.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity:0; transition:opacity .3s; pointer-events:none; }
.showcard:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.showcard:hover::before { opacity:1; }

.showcard-card { perspective: 1400px; margin-bottom: 24px; position: relative; }
.showcard-card::after { content:""; position:absolute; left:8%; right:8%; bottom:-14px; height:30px; border-radius:50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55), transparent 70%); filter: blur(6px); z-index:-1;
  transition: opacity .4s, transform .4s; }
.showcard:hover .showcard-card::after { transform: scaleX(.9) translateY(4px); opacity:.8; }
.showcard-card .ccard { transition: transform .5s cubic-bezier(.2,.7,.2,1); transform-style: preserve-3d; }
.showcard:hover .ccard { transform: rotateX(6deg) rotateY(-7deg) translateY(-4px); }

.showcard h3, .showcard .sc-price, .showcard .sc-desc, .showcard .sc-feats { position: relative; z-index: 1; }
.showcard h3 { color: #fff; font-size: 20px; margin: 0 0 4px; letter-spacing: -.01em; }
.showcard .sc-price { color: #b18cff; font-weight: 700; font-size: 22px; margin-bottom: 12px; }
.showcard .sc-price span { font-size: 13px; color: #6f6f75; font-weight: 400; }
.showcard .sc-desc { color: #9b9b9f; font-size: 14px; line-height: 1.65; margin: 0 0 16px; min-height: 42px; }
.showcard .sc-feats { list-style: none; padding: 0; margin: 0 0 20px; }
.showcard .sc-feats li { color: #cfcfd4; font-size: 13.5px; padding: 6px 0 6px 24px; position: relative; }
.showcard .sc-feats li::before { content: "✓"; position: absolute; left: 0; color: #7fd6a4; font-weight: 700; }
.showcard .sc-actions { display: flex; gap: 10px; position: relative; z-index: 2; }
.sc-btn { display: inline-block; text-align: center; padding: 12px; border-radius: 99px; font-weight: 700; font-size: 14px; cursor: pointer; border: 0; text-decoration: none; transition: background .2s, border-color .2s, transform .15s, box-shadow .2s; }
.showcard .sc-btn { flex: 1; border-radius: 11px; }
.sc-btn.primary { background: linear-gradient(92deg, #9a6ef0, #814bf6); color: #fff; box-shadow: 0 8px 22px rgba(129,75,246,.35); }
.sc-btn.primary:hover { background: linear-gradient(92deg, #8d5ceb, #6d38e0); transform: translateY(-1px); }
.sc-btn.ghost { background: transparent; border: 1px solid #2a2a2e; color: #d6d6da; }
.sc-btn.ghost:hover { border-color: #814bf6; color: #fff; }

/* Detail modal */
.cx-modal { position: fixed; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; z-index: 9999; padding: 24px; }
.cx-modal.open { display: flex; }
.cx-inner { background: #0d0d0f; border: 1px solid #232326; border-radius: 20px; max-width: 560px; width: 100%; padding: 30px; position: relative; }
.cx-inner .cx-close { position: absolute; top: 16px; right: 18px; background: none; border: 0; color: #9b9b9f; font-size: 24px; cursor: pointer; line-height: 1; }
.cx-inner h3 { color: #fff; font-size: 22px; margin: 14px 0 4px; }
.cx-inner .cx-price { color: #b18cff; font-weight: 700; font-size: 24px; margin-bottom: 14px; }
.cx-inner .cx-desc { color: #9b9b9f; font-size: 14.5px; line-height: 1.7; }

@media (max-width: 991px) { .cards-showcase { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-showcase { grid-template-columns: 1fr; } }

/* ===== Single card detail page ===== */
.card-detail { max-width: 560px; margin: 0 auto; padding: 6px 5% 100px; }
.card-detail-col { display: flex; flex-direction: column; align-items: stretch; }
.card-detail-visual { perspective: 1400px; margin: 6px auto 0; width: 100%; max-width: 440px; }
.card-detail-visual .showcard-card { perspective: 1400px; }
.card-detail-buy { margin-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.card-detail-buy .price-tag { font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.card-detail-buy .price-tag span { font-size: 14px; color: #6f6f75; font-weight: 400; }
.card-detail-buy .buy-btn { display: block; width: 100%; max-width: 440px; text-align: center; padding: 15px; border-radius: 13px;
  background: linear-gradient(135deg, #9a6ef0, #814bf6 55%, #6d38e0); color: #fff; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: filter .2s, box-shadow .2s; box-shadow: 0 12px 30px rgba(129,75,246,.32); }
.card-detail-buy .buy-btn:hover { filter: brightness(1.08); box-shadow: 0 16px 38px rgba(129,75,246,.42); }
.card-detail-feats { list-style: none; padding: 0; margin: 30px auto 0; width: 100%; max-width: 440px; }
.card-detail-feats li { color: #cfcfd4; font-size: 15px; padding: 12px 0 12px 28px; position: relative; border-bottom: 1px solid #1c1c20; }
.card-detail-feats li:last-child { border-bottom: 0; }
.card-detail-feats li::before { content: "✓"; position: absolute; left: 0; color: #7fd6a4; font-weight: 700; }
.card-detail-about { margin-top: 40px; padding-top: 30px; border-top: 1px solid #1c1c20; }
.card-detail-about h2 { font-size: 20px; color: #fff; margin: 0 0 14px; letter-spacing: -.01em; }
.card-detail-body { color: #cfcfd4; font-size: 15.5px; line-height: 1.8; }
.card-detail-body h1, .card-detail-body h2, .card-detail-body h3 { color: #fff; margin: 1.3em 0 .5em; line-height: 1.25; }
.card-detail-body h2 { font-size: 22px; } .card-detail-body h3 { font-size: 18px; }
.card-detail-body p { margin: 0 0 1em; }
.card-detail-body a { color: #b18cff; }
.card-detail-body img { max-width: 100%; border-radius: 12px; margin: 12px 0; }
.card-detail-body ul, .card-detail-body ol { padding-left: 1.4em; margin: 0 0 1em; }
.card-detail-body li { margin: 6px 0; }
.card-detail-body table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.card-detail-body th, .card-detail-body td { border: 1px solid #232326; padding: 10px 12px; text-align: left; font-size: 14px; }
.card-detail-body th { background: #131316; color: #e8e8ec; }
.card-detail-body blockquote { border-left: 3px solid #814bf6; margin: 1.2em 0; padding: 6px 0 6px 18px; color: #9b9b9f; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: #9b9b9f; text-decoration: none; font-size: 14px; margin-bottom: 4px; }
.back-link:hover { color: #fff; }

/* ===== Static pages / FAQ / Pricing / Contact ===== */
.static-stage { max-width: 860px; margin: 0 auto; padding: 20px 5% 100px; }
/* Match blog-post reading typography exactly (16px / 1.8 like .post-body). */
.static-content { color: #cfcfd4; font-size: 16px; line-height: 1.8; font-family: 'Work Sans','Segoe UI',sans-serif; }
.static-content img { max-width: 100%; border-radius: 12px; }
.static-content blockquote { border-left: 3px solid #814bf6; margin: 1.4em 0; padding: 6px 0 6px 18px; color: #9b9b9f; }
.static-content table { border-collapse: collapse; width: 100%; margin: 0 0 1.2em; }
.static-content td, .static-content th { border: 1px solid #2a2a2e; padding: 9px 12px; }
.static-content h1, .static-content h2, .static-content h3 { color: #fff; margin: 1.6em 0 .6em; letter-spacing: -.01em; }
.static-content h2 { font-size: 24px; } .static-content h3 { font-size: 19px; }
.static-content p { margin: 0 0 1em; }
.static-content a { color: #b18cff; }
.static-content ul, .static-content ol { margin: 0 0 1.2em; padding-left: 24px; }
.static-content li { margin-bottom: 6px; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #0d0d10; border: 1px solid #212126; border-radius: 15px; overflow: hidden; transition: border-color .25s; }
.faq-item[open] { border-color: rgba(129,75,246,.45); box-shadow: 0 14px 40px rgba(0,0,0,.35); }
.faq-item summary { cursor: pointer; list-style: none; padding: 19px 22px; color: #fff; font-weight: 600; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: #b18cff; font-size: 22px; font-weight: 400; transition: transform .25s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; color: #a9a9b2; font-size: 14.5px; line-height: 1.8; }

.pricing-tablewrap { overflow-x: auto; border: 1px solid #212126; border-radius: 18px; background: #0c0c0f; }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 920px; }
.pricing-table th { text-align: left; padding: 16px 18px; color: #8f8f97; font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .08em; border-bottom: 1px solid #212126; font-weight: 600; }
.pricing-table td { padding: 18px; border-bottom: 1px solid #1a1a1f; color: #c9c9d0; font-size: 14px; vertical-align: top; }
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table tr:hover td { background: rgba(129,75,246,.04); }
/* Pricing card visual: clean, centered, glowing — clutter hidden at small size */
.pt-visual { width: 212px; min-width: 212px; vertical-align: middle !important; }
.pt-visual a { display: block; padding: 6px; border-radius: 16px; position: relative; }
.pt-visual a::before {
  content: ""; position: absolute; inset: 10%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(129,75,246,.35), transparent 75%);
  filter: blur(14px); z-index: 0;
}
.pt-visual .ccard {
  position: relative; z-index: 1; max-width: 188px; margin: 0 auto;
  box-shadow: 0 14px 30px rgba(0,0,0,.55), inset 0 1px 1px rgba(255,255,255,.25);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.pt-visual a:hover .ccard { transform: translateY(-4px) rotate(-2deg) scale(1.03); }
/* At card sizes this small, hide the fine print so the face stays elegant */
.pt-visual .ccard-holder, .pt-visual .ccard-validlbl, .pt-visual .ccard-exp,
.pm-visual .ccard-holder, .pm-visual .ccard-validlbl, .pm-visual .ccard-exp { display: none; }
.pt-visual .ccard-country, .pm-visual .ccard-country { margin-left: 0; }
.pm-visual .ccard { box-shadow: 0 14px 30px rgba(0,0,0,.5), inset 0 1px 1px rgba(255,255,255,.22); }

/* ---------- Pricing: running-text announcement ---------- */
.pr-announce {
  display: flex; align-items: center; gap: 14px; height: 48px; padding: 0 18px;
  max-width: 1100px; margin: 0 auto 26px; overflow: hidden; border-radius: 99px;
  background: linear-gradient(90deg, rgba(129,75,246,.16), rgba(177,140,255,.06) 40%, rgba(129,75,246,.14));
  border: 1px solid rgba(177,140,255,.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 30px rgba(129,75,246,.12);
}
.pr-announce-chip {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 99px;
  background: linear-gradient(135deg, #9a6ef0, #814bf6 55%, #6d38e0);
  color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(129,75,246,.45), inset 0 1px 1px rgba(255,255,255,.35);
}
.pr-announce-chip svg { width: 13px; height: 13px; }
.pr-announce-track {
  flex: 1; overflow: hidden; min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.pr-announce-run { display: inline-flex; white-space: nowrap; will-change: transform; animation: prAnnScroll 26s linear infinite; }
.pr-announce-run span {
  padding-right: 90px; font-size: 14.5px; font-weight: 600;
  background: linear-gradient(90deg, #fff, #d8c6ff 60%, #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pr-announce:hover .pr-announce-run { animation-play-state: paused; }
@keyframes prAnnScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 760px) { .pr-announce { height: 42px; margin: 0 14px 20px; padding: 0 12px; gap: 10px; } .pr-announce-chip { padding: 5px 10px; font-size: 10px; } }

/* ---------- Pricing: dynamic search + sort ---------- */
.pricing-tools { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.pr-search {
  flex: 1; min-width: 220px; padding: 13px 17px; border-radius: 99px; border: 1px solid #2a2a30;
  background: #101014; color: #e8e8ec; font-size: 15px; outline: none; font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.pr-search:focus { border-color: #814bf6; box-shadow: 0 0 0 3px rgba(129,75,246,.16); }
.pr-sort {
  padding: 13px 17px; border-radius: 99px; border: 1px solid #2a2a30; background: #101014;
  color: #e8e8ec; font-size: 14px; outline: none; font-family: inherit; cursor: pointer;
}
.pr-sort:focus { border-color: #814bf6; }
.pr-noresults { text-align: center; color: #8f8f97; padding: 40px 20px; font-size: 15px;
  border: 1px dashed #2a2a30; border-radius: 16px; margin-bottom: 16px; }
.pr-item { transition: opacity .2s; }
.pr-hide { display: none !important; }
@keyframes prIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.pricing-table tbody tr, .pm-card { animation: prIn .45s ease both; }
.pricing-table tbody tr:nth-child(2) { animation-delay: .05s; }
.pricing-table tbody tr:nth-child(3) { animation-delay: .1s; }
.pricing-table tbody tr:nth-child(4) { animation-delay: .15s; }
.pricing-table tbody tr:nth-child(n+5) { animation-delay: .2s; }

/* ---------- Pricing: adaptive columns (no sideways scroll at any width) ---------- */
@media (max-width: 1000px) and (min-width: 761px) {
  .pricing-table { min-width: 0; }
  /* hide BIN, Issuing bank & Country on tablets — the essentials stay */
  .pricing-table th:nth-child(3), .pricing-table td:nth-child(3),
  .pricing-table th:nth-child(4), .pricing-table td:nth-child(4),
  .pricing-table th:nth-child(5), .pricing-table td:nth-child(5) { display: none; }
}

/* ---------- Pricing: mobile stacked cards ---------- */
.pricing-mobile { display: none; }
.pm-card { background: #0c0c0f; border: 1px solid #212126; border-radius: 18px; padding: 18px; margin-bottom: 16px; }
.pm-visual { display: block; margin: 0 auto 14px; max-width: 250px; }
.pm-visual .ccard { max-width: 250px; margin: 0 auto; }
.pm-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 10px; }
.pm-price { font-size: 22px; font-weight: 800; color: #b18cff; white-space: nowrap; }
.pm-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: #c9c9d0; font-size: 13px; margin-bottom: 10px; }
.pm-meta b { color: #8f8f97; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; margin-right: 4px; }
.pm-card .pt-feats { margin: 0 0 14px; }
.pm-btn { display: block; width: 100%; padding: 14px; font-size: 15px; }
@media (max-width: 760px) {
  .pricing-mobile { display: block; }
  .pricing-tablewrap { display: none; }
}
.pt-name { color: #fff; font-weight: 700; font-size: 15.5px; }
.pt-brand { color: #6f6f75; font-size: 12px; margin-top: 2px; text-transform: uppercase; letter-spacing: .06em; }
.pt-price { color: #b18cff; font-weight: 800; font-size: 17px; white-space: nowrap; }
.pt-issue { color: #f0a742; font-weight: 600; font-size: 13px; white-space: nowrap; }
.pm-card .pt-issue { text-align: right; margin-top: 2px; }
.pt-mono { font-family: 'Consolas', monospace; color: #d6d6da; }
.pt-feats { list-style: none; margin: 0; padding: 0; }
.pt-feats li { position: relative; padding: 2px 0 2px 18px; font-size: 13px; }
.pt-feats li::before { content: "✓"; position: absolute; left: 0; color: #7fd6a4; font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card { display: block; background: #0d0d10; border: 1px solid #212126; border-radius: 18px; padding: 34px 28px;
  text-align: center; text-decoration: none; transition: transform .25s, border-color .25s, box-shadow .25s; }
.contact-card:hover { transform: translateY(-6px); border-color: rgba(129,75,246,.5); box-shadow: 0 22px 55px rgba(0,0,0,.4); }
.contact-card .cc-ic { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px; display: grid; place-items: center;
  font-size: 24px; background: rgba(129,75,246,.14); color: #b18cff; }
.contact-card .cc-t { color: #fff; font-weight: 700; font-size: 18px; }
.contact-card .cc-v { color: #b18cff; font-size: 14.5px; margin-top: 6px; word-break: break-all; }
.contact-card .cc-hint { color: #6f6f75; font-size: 12.5px; margin-top: 10px; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== Related posts: single column, one per row, clear titles ===== */
.related-list { display: flex; flex-direction: column; gap: 14px; }
.related-item { display: flex; align-items: center; gap: 18px; padding: 14px; border-radius: 14px;
  border: 1px solid #232326; background: #101013; text-decoration: none;
  transition: border-color .15s, transform .15s, background .15s; }
.related-item:hover { border-color: #814bf6; background: #131318; transform: translateX(4px); }
.rel-cover { flex: 0 0 128px; height: 84px; border-radius: 10px; overflow: hidden; background: #17171b;
  display: grid; place-items: center; }
.rel-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rel-ph { font-size: 26px; opacity: .35; }
.rel-body { min-width: 0; }
.rel-meta { color: #9b9b9f; font-size: 12.5px; margin-bottom: 5px; }
.related-item h3 { color: #fff; font-size: 17.5px; line-height: 1.45; margin: 0 0 6px; font-weight: 700; letter-spacing: -.01em; }
.related-item:hover h3 { color: #d9c9ff; }
.rel-more { color: #b18cff; font-size: 13px; font-weight: 600; }
@media (max-width: 560px) {
  .related-item { gap: 12px; padding: 12px; }
  .rel-cover { flex-basis: 96px; height: 68px; }
  .related-item h3 { font-size: 15.5px; }
}
