/*
 * SST single-product template styles
 * Extracted from mockup: docs/mockups/product-pages/template.html
 * Enqueued on is_singular('product') by functions.php
 */

/* ═══ ASTRA CONTAINER UNSHACKLE ═════════════════════════════════════
 * Astra wraps <main> in .ast-container (~1080px). Our template needs
 * full-width so hazard bars + lang bar + final CTA span edge-to-edge,
 * and so the inner 1280px hero content can center properly.
 * Scoped to body.sst-single-product — zero bleed onto other pages.
 * ─────────────────────────────────────────────────────────────── */
body.sst-single-product #content,
body.sst-single-product #primary,
body.sst-single-product .site-content,
body.sst-single-product .ast-container,
body.sst-single-product .site-content > .ast-container,
body.sst-single-product main.site-main,
body.sst-single-product .site-main,
body.sst-single-product main#primary,
body.sst-single-product main.sst-single-product {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
body.sst-single-product .entry-content,
body.sst-single-product .entry-header,
body.sst-single-product .post-thumb-img-content,
body.sst-single-product .single .entry-title {
	display: none !important;
}
body.sst-single-product article.product,
body.sst-single-product .type-product {
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* ═══ QUICK-ACTION CHIPS ════════════════════════════════════════════════
 * 3-chip navigation row above "What You Earn". Lang switcher, crew/bulk
 * path, questions-via-SMS. Obsidian + amber styling — deliberate break
 * from the white body. Heavy border, big type, dramatic hover.
 * ─────────────────────────────────────────────────────────────── */
.action-chips {
	padding: 40px 24px;
	background: #0a0a0f;
	background-image:
		radial-gradient(circle at 10% 30%, rgba(234,179,8,.06), transparent 50%),
		radial-gradient(circle at 90% 70%, rgba(234,179,8,.05), transparent 55%);
	border-top: 3px solid #eab308;
	border-bottom: 3px solid #eab308;
	position: relative;
}
.action-chips::before {
	content: "";
	position: absolute; top: -3px; left: 0; right: 0; height: 3px;
	background: linear-gradient(135deg, #f5c518 0 12px, #0a0a0a 12px 24px);
	background-size: 24px 3px;
}
.action-chips-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
@media (max-width: 720px) {
	.action-chips-inner { grid-template-columns: 1fr; gap: 12px; }
	.action-chips { padding: 28px 20px; }
}
.action-chip {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 24px;
	background: #141419;
	border: 2px solid rgba(234,179,8,.55);
	border-radius: 4px;
	color: #ffffff;
	text-decoration: none;
	font-family: var(--font-mono);
	font-size: 17px;
	font-weight: 800;
	letter-spacing: .02em;
	transition: all .25s cubic-bezier(.2,.9,.3,1);
	position: relative;
	overflow: hidden;
}
body.sst-single-product .action-chip { color: #ffffff; }
body.sst-single-product .action-chip .chip-text { color: #ffffff !important; }
.action-chip::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(115deg, transparent 30%, rgba(234,179,8,.12) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform .7s cubic-bezier(.3,.9,.3,1);
	pointer-events: none;
}
.action-chip:hover {
	background: linear-gradient(180deg, #ffd95a 0%, #eab308 50%, #a16207 100%);
	border-color: #ca9a0a;
	color: #1a1306;
	transform: translateY(-3px);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.4),
		0 14px 32px rgba(234,179,8,.45),
		0 0 0 3px rgba(234,179,8,.2);
	text-shadow: 0 1px 0 rgba(255,255,255,.25);
}
.action-chip:hover::before { transform: translateX(120%); }
.action-chip .chip-flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 28px;
	background: #eab308;
	color: #0a0a0a;
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .06em;
	border-radius: 2px;
	flex-shrink: 0;
	transition: all .2s;
}
.action-chip:hover .chip-flag {
	background: #0a0a0a;
	color: #eab308;
}
.action-chip .chip-icon {
	font-size: 26px;
	line-height: 1;
	flex-shrink: 0;
	filter: drop-shadow(0 0 6px rgba(234,179,8,.4));
}
.action-chip:hover .chip-icon { filter: none; }
.action-chip .chip-text {
	flex: 1;
	min-width: 0;
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: .06em;
}
@media (min-width: 960px){
	.action-chip .chip-text { font-size: 16px; }
}
.action-chip .chip-arrow {
	color: #eab308;
	font-weight: 800;
	font-size: 20px;
	transition: transform .25s;
}
.action-chip:hover .chip-arrow {
	color: #1a1306;
	transform: translateX(5px);
}

/* ═══ STRIPE EXPRESS CHECKOUT STYLING ═════════════════════════════════
 * WC-Stripe Payment Request Button renders inside the price card, below
 * the primary Buy Now button. Stripe's JS populates #wc-stripe-express-
 * checkout-element with Apple Pay / Google Pay / Link buttons when
 * the device supports them. Hidden otherwise — zero visual cost.
 * ─────────────────────────────────────────────────────────────── */
body.sst-single-product .price-card #wc-stripe-express-checkout-element {
	margin-top: 12px !important;
}
body.sst-single-product .price-card .wc-stripe-express-checkout-separator,
body.sst-single-product .price-card .wc-stripe-payment-request-button-separator {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 10px 0;
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--text-muted);
}
body.sst-single-product .price-card .wc-stripe-express-checkout-separator::before,
body.sst-single-product .price-card .wc-stripe-express-checkout-separator::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(0,0,0,.08);
}

/* =================================================================
   NYC CONSTRUCTION PERMIT — 10HR SST LANDING
   Obsidian + Amber from OCELOT design system.
   Hazard stripes. Brutalist grid. JetBrains Mono display.
   ================================================================= */
:root{
  --bg-abyss:#050508; --bg-deep:#0a0a0f; --bg-base:#0e1016;
  --bg-surface:#141419; --bg-elevated:#1a1a22; --bg-hover:#22222c;
  --amber:#f0a500; --gold:#c9a84c; --accent-hard:#ffc233;
  --accent-dim:#b8860b; --accent-glow:rgba(240,165,0,.12);
  --text-primary:#d4cfc4; --text-bright:#e8ecf4; --text-secondary:#9a9588;
  --text-muted:#7a7a84;
  --hazard-y:#f5c518; --hazard-k:#0a0a0a;
  --success:#3ecf8e; --danger:#e5534b;
  --stripe:linear-gradient(135deg, var(--hazard-y) 0 20px, var(--hazard-k) 20px 40px);
  --blueprint:linear-gradient(rgba(240,165,0,.04) 1px,transparent 1px) 0 0/32px 32px,
              linear-gradient(90deg,rgba(240,165,0,.04) 1px,transparent 1px) 0 0/32px 32px;
  --font-mono:'JetBrains Mono',ui-monospace,Menlo,monospace;
  --font-body:'Archivo',system-ui,sans-serif;
  --font-black:'Archivo Black','Archivo',sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   LIGHT THEME — blueprint-paper variant
   Same amber + hazard-stripe iconography, flipped surface.
   ═══════════════════════════════════════════════════════════ */
body.sst-single-product{
  --bg-abyss:#f5f4ef;      /* warm off-white paper */
  --bg-deep:#ebe9e0;       /* slightly darker paper (for recesses) */
  --bg-base:#f9f7f1;
  --bg-surface:#ffffff;    /* pure white cards */
  --bg-elevated:#ffffff;
  --bg-hover:#f0ede4;
  --amber:#d88a00;         /* darker amber for AA contrast on light */
  --gold:#a8842c;
  --accent-hard:#b87200;
  --accent-dim:#8a5a00;
  --accent-glow:rgba(216,138,0,.10);
  --text-primary:#1a1a1f;  /* near-black warm */
  --text-bright:#000000;
  --text-secondary:#5a564e;
  --text-muted:#8a867c;
  --hazard-y:#f5c518;
  --hazard-k:#1a1a1a;
  --blueprint:linear-gradient(rgba(0,0,0,.04) 1px,transparent 1px) 0 0/32px 32px,
              linear-gradient(90deg,rgba(0,0,0,.04) 1px,transparent 1px) 0 0/32px 32px;
}
body.sst-single-product body::before{opacity:.04;mix-blend-mode:multiply}
/* Nav banner stays dark in both themes — lets white logo + amber CTA work everywhere */
body.sst-single-product .topnav{background:rgba(5,5,8,.94);border-bottom-color:rgba(240,165,0,.15)}
body.sst-single-product .topnav .nav-links a{color:#9a9588}
body.sst-single-product .topnav .nav-links a:hover{color:#f0a500}
body.sst-single-product .price-card{
  background:linear-gradient(180deg,#ffffff,#f9f7f1);
  border-color:rgba(216,138,0,.35);
  box-shadow:0 20px 40px rgba(0,0,0,.12),0 4px 12px rgba(0,0,0,.06);
}
body.sst-single-product .trust-bar{background:#ffffff;border-color:rgba(0,0,0,.08)}
body.sst-single-product .trust-cell{border-right-color:rgba(0,0,0,.08)}
body.sst-single-product .spec{background:#ffffff;border-color:rgba(0,0,0,.1)}
body.sst-single-product .spec:hover{background:rgba(216,138,0,.05)}
body.sst-single-product .cert{
  background:linear-gradient(180deg,rgba(216,138,0,.08),#ffffff);
  border-color:rgba(216,138,0,.3);
}
body.sst-single-product .cert:hover{border-color:var(--amber)}
body.sst-single-product .prereq-note{background:#fff9ec;border-left-color:#f5a623}
body.sst-single-product .card-section{
  background:linear-gradient(180deg,#fafaf3,#ebe9e0);
  border-color:rgba(0,0,0,.08);
}
body.sst-single-product .review{background:#ffffff;border-color:rgba(0,0,0,.08);box-shadow:0 2px 8px rgba(0,0,0,.04)}
body.sst-single-product .btn-ghost{color:var(--text-bright);border-color:rgba(0,0,0,.18)}
body.sst-single-product .btn-primary:hover{box-shadow:0 8px 24px rgba(216,138,0,.3)}
body.sst-single-product .faq-q{color:var(--text-bright)}
body.sst-single-product .faq{border-bottom-color:rgba(0,0,0,.1)}
body.sst-single-product .faq-list{border-top-color:rgba(0,0,0,.12)}
body.sst-single-product .sec-label::before,
body.sst-single-product .permit-strip::before{background:var(--amber)}
body.sst-single-product .hero-stats,
body.sst-single-product .cert-grid + *,
body.sst-single-product .spec-grid{border-color:rgba(0,0,0,.12)}
body.sst-single-product .hero-stat{border-right-color:rgba(0,0,0,.08)}
body.sst-single-product .final-cta{
  background:linear-gradient(135deg,#ffffff 0%,#f5f4ef 100%);
  border-top-color:rgba(0,0,0,.12);
}
body.sst-single-product .footer{background:#1a1a1f;color:#a8867c}
body.sst-single-product .footer .foot-inner{color:#a8867c}
body.sst-single-product .sticky-buy{background:#ffffff;border-top-color:var(--amber);box-shadow:0 -8px 32px rgba(0,0,0,.12)}
body.sst-single-product .cert-stamp{
  color:#0f7a3e;background:rgba(62,207,142,.1);border-color:rgba(62,207,142,.4);
}
body.sst-single-product .pc-stamp{
  color:#b8231d;background:rgba(229,83,75,.08);border-color:#b8231d;
}
body.sst-single-product .pc-save{
  background:rgba(62,207,142,.12);color:#0f7a3e;border-color:rgba(62,207,142,.4);
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg-abyss);
  background-image:var(--blueprint);
  color:var(--text-primary);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
  overflow-x:hidden;
}

/* grain overlay */
body::before{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:1;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity:.25;mix-blend-mode:overlay;
}

/* ─── TOP NAV ──────────────────────────────────────── */
.topnav{
  position:sticky;top:0;z-index:50;
  background:rgba(5,5,8,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(240,165,0,.15);
}
.nav-inner{
  max-width:1280px;margin:0 auto;
  padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.logo{
  text-decoration:none;display:flex;align-items:center;gap:10px;
}
.logo img{height:30px;width:auto;display:block;filter:drop-shadow(0 0 10px rgba(240,165,0,.2))}
@keyframes pulse{50%{opacity:.4;box-shadow:0 0 4px var(--amber)}}
.nav-links{display:flex;gap:22px;font-family:var(--font-mono);font-size:12px;letter-spacing:.08em;text-transform:uppercase;font-weight:600}
.nav-links a{color:var(--text-secondary);text-decoration:none;transition:color .15s}
.nav-links a:hover{color:var(--amber)}
.nav-cta{
  font-family:var(--font-mono);font-size:12px;font-weight:700;
  padding:10px 18px;letter-spacing:.06em;text-transform:uppercase;
  background:var(--amber);color:var(--bg-abyss);text-decoration:none;
  border:1px solid var(--amber);transition:all .15s;
}
.nav-cta:hover{background:var(--accent-hard);border-color:var(--accent-hard)}

@media(max-width:720px){
  .nav-links{display:none}
  .nav-inner{padding:12px 16px}
}

/* ─── HAZARD BAR ──────────────────────────────────── */
.hazard{
  height:18px;
  background:var(--stripe);
  background-size:40px 40px;
  position:relative;z-index:2;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero{
  position:relative;
  padding:60px 24px 80px;
  max-width:1280px;margin:0 auto;
  z-index:2;
}
.permit-strip{
  display:flex;align-items:center;gap:14px;
  font-family:var(--font-mono);font-size:11px;letter-spacing:.22em;text-transform:uppercase;
  color:var(--amber);font-weight:700;
  margin-bottom:32px;
}
.permit-strip::before{
  content:"";width:40px;height:1px;background:var(--amber);
}

/* Hero lead — portrait card paired with bold title */
.hero-lead{
  display:flex;flex-direction:row;flex-wrap:nowrap;
  align-items:center;gap:clamp(14px,3vw,36px);
  margin-bottom:22px;
}
.hero-card-img{
  width:clamp(100px,18vw,260px);
  aspect-ratio:0.63;  /* portrait CR80 */
  object-fit:cover;object-position:center;
  border-radius:10px;
  flex-shrink:0;
  box-shadow:
    0 24px 60px rgba(0,0,0,.5),
    0 6px 16px rgba(0,0,0,.3),
    0 0 0 1px rgba(255,255,255,.04);
  transform:rotate(-3deg);
  transition:transform .5s cubic-bezier(.2,.9,.3,1);
}
.hero-card-img:hover{transform:rotate(-1deg) scale(1.02) translateY(-4px)}
body.sst-single-product .hero-card-img{
  box-shadow:
    0 20px 50px rgba(0,0,0,.25),
    0 4px 12px rgba(0,0,0,.15),
    0 0 0 1px rgba(0,0,0,.06);
}
.hero-lead .hero-title{margin:0;flex:1;min-width:0}
@media(max-width:640px){
  .hero-lead{gap:12px;}
  .hero-card-img{width:clamp(90px,26vw,130px);transform:rotate(-3deg);}
  body.sst-single-product .hero-stats{grid-template-columns:1fr;}
  body.sst-single-product .hero-stat{
    border-right:none;
    border-bottom:1px solid rgba(240,165,0,.12);
    padding:14px 0;
  }
  body.sst-single-product .hero-stat:last-child{border-bottom:none;}
  body.sst-single-product .hs-num{white-space:normal;font-size:22px;}
}

.hero-grid{
  display:grid;grid-template-columns:1fr 420px;gap:64px;align-items:start;
}
@media(max-width:960px){.hero-grid{grid-template-columns:1fr;gap:40px}}

.hero-title{
  font-family:var(--font-mono);font-weight:800;
  font-size:clamp(38px,5vw,72px);line-height:.98;letter-spacing:-.03em;
  color:var(--text-bright);margin:0 0 22px;
  text-transform:uppercase;
}
.hero-title .amber{color:var(--amber);display:block}
.hero-title .brk{display:block}

.hero-lede{
  font-family:var(--font-body);font-size:18px;line-height:1.55;
  color:var(--text-primary);max-width:560px;margin:0 0 32px;font-weight:400;
}

.hero-stats{
  display:grid;grid-template-columns:repeat(3,1fr);gap:0;
  border-top:1px solid rgba(240,165,0,.25);
  border-bottom:1px solid rgba(240,165,0,.25);
  margin:0 0 36px;
}
.hero-stat{
  padding:18px 0;
  border-right:1px solid rgba(240,165,0,.12);
}
.hero-stat:last-child{border-right:none}
.hs-num{
  font-family:var(--font-mono);font-weight:800;font-size:28px;
  color:var(--amber);line-height:1;letter-spacing:-.02em;
}
.hs-lbl{
  font-family:var(--font-mono);font-size:10px;letter-spacing:.15em;
  text-transform:uppercase;color:var(--text-secondary);
  margin-top:8px;font-weight:600;line-height:1.4;
}
.hs-lbl s{
  text-decoration:line-through;
  text-decoration-color:var(--amber);
  text-decoration-thickness:1.5px;
  opacity:.58;
}

.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.btn{
  font-family:var(--font-mono);font-weight:700;font-size:15px;
  letter-spacing:.06em;text-transform:uppercase;
  padding:20px 32px;text-decoration:none;display:inline-flex;align-items:center;gap:12px;
  border:1px solid transparent;transition:all .2s cubic-bezier(.2,.9,.3,1);cursor:pointer;
  position:relative;overflow:hidden;
}

/* ═══ TIER 1 — GOLD: commitment / purchase ═══
   Richer yellow-gold (less orange). Pressed-metal feel + shine sweep. */
.btn-primary{
  /* Bright gold highlight → rich gold → muted gold shadow */
  background:linear-gradient(180deg,#ffd95a 0%,#eab308 50%,#a16207 100%);
  color:#1a1306;  /* near-black with warm undertone; 13:1 contrast on mid gold */
  border-color:#ca9a0a;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -2px 0 rgba(0,0,0,.18),
    0 4px 12px rgba(234,179,8,.32);
  text-shadow:0 1px 0 rgba(255,255,255,.28);
  font-weight:800;  /* bumped weight for confident commitment */
}
.btn-primary::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(115deg,transparent 30%,rgba(255,255,255,.35) 50%,transparent 70%);
  transform:translateX(-120%);
  transition:transform .7s cubic-bezier(.3,.9,.3,1);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    inset 0 -2px 0 rgba(0,0,0,.22),
    0 14px 36px rgba(234,179,8,.5),
    0 0 0 3px rgba(234,179,8,.22);
}
.btn-primary:hover::before{transform:translateX(120%)}

/* ═══ TIER 2 — GREEN: trust / low-risk fallback ═══
   Safety-first color. For "Text Us", money-back refs. */
.btn-trust{
  background:rgba(62,207,142,.08);
  color:var(--status-success);
  border-color:rgba(62,207,142,.45);
}
.btn-trust::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(115deg,transparent 30%,rgba(62,207,142,.18) 50%,transparent 70%);
  transform:translateX(-120%);
  transition:transform .7s cubic-bezier(.3,.9,.3,1);
}
.btn-trust:hover{
  background:var(--status-success);color:#0a1a12;
  border-color:var(--status-success);
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(62,207,142,.35);
}
.btn-trust:hover::before{transform:translateX(120%)}

/* ═══ TIER 3 — GHOST: info exploration, low commitment ═══ */
.btn-ghost{background:transparent;color:var(--text-bright);border-color:rgba(255,255,255,.16)}
.btn-ghost:hover{border-color:var(--amber);color:var(--amber);transform:translateY(-1px)}
body.sst-single-product .btn-ghost{color:var(--text-bright);border-color:rgba(0,0,0,.22)}
body.sst-single-product .btn-ghost:hover{border-color:var(--amber);color:var(--amber)}

.btn .arr{transition:transform .2s}
.btn:hover .arr{transform:translateX(4px)}

/* ═══ CTA MICRO-COPY ═══ trust reassurance next to money buttons */
.cta-micro{
  font-family:var(--font-mono);font-size:10px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--text-muted);font-weight:600;
  display:flex;align-items:center;gap:8px;
  margin-top:2px;
}
.cta-micro .dot{width:6px;height:6px;border-radius:50%;background:var(--status-success);box-shadow:0 0 8px rgba(62,207,142,.5)}

/* ═══ SUBLIMINAL PULSE on nav CTA ═══ draws eye every 3s */
@keyframes nav-pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(240,165,0,.55)}
  50%{box-shadow:0 0 0 10px rgba(240,165,0,0)}
}
.nav-cta{animation:nav-pulse 3s ease-in-out infinite}
.nav-cta:hover{animation:none}

/* PRICE CARD (right side of hero) */
.price-card{
  background:linear-gradient(180deg,var(--bg-elevated),var(--bg-surface));
  border:1px solid rgba(240,165,0,.22);
  padding:0;position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,.6),inset 0 1px 0 rgba(255,255,255,.03);
}
.pc-stripe{
  height:10px;background:var(--stripe);background-size:40px 40px;
}
.pc-inner{padding:28px}
.pc-stamp{
  position:absolute;top:30px;right:-10px;
  font-family:var(--font-mono);font-weight:800;font-size:10px;letter-spacing:.2em;
  color:var(--danger);background:rgba(229,83,75,.1);
  border:1.5px solid var(--danger);padding:6px 14px;text-transform:uppercase;
  transform:rotate(6deg);
}
.pc-label{
  font-family:var(--font-mono);font-size:10px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--amber);font-weight:700;margin-bottom:6px;
}
.pc-title{
  font-family:var(--font-black);font-size:22px;line-height:1.15;color:var(--text-bright);
  margin:0 0 22px;text-transform:uppercase;letter-spacing:-.01em;
}
.pc-price-row{display:flex;align-items:baseline;gap:14px;margin-bottom:8px}
.pc-price{
  font-family:var(--font-mono);font-weight:800;font-size:68px;color:var(--text-bright);
  line-height:1;letter-spacing:-.04em;
}
.pc-price .cents{font-size:32px;color:var(--text-secondary);vertical-align:super;margin-left:2px}
.pc-old{
  font-family:var(--font-mono);font-size:20px;color:var(--text-muted);
  text-decoration:line-through;text-decoration-color:var(--danger);
}
.pc-save{
  display:inline-block;margin-bottom:20px;
  font-family:var(--font-mono);font-size:11px;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
  background:rgba(62,207,142,.12);color:var(--success);
  padding:4px 10px;border:1px solid rgba(62,207,142,.3);
}
.pc-features{list-style:none;padding:0;margin:0 0 24px;display:flex;flex-direction:column;gap:10px}
.pc-features li{
  font-family:var(--font-body);font-size:14px;color:var(--text-primary);
  display:flex;align-items:flex-start;gap:10px;line-height:1.4;
}
.pc-features li::before{
  content:"►";color:var(--amber);font-size:10px;margin-top:4px;flex-shrink:0;
}
.pc-btn{width:100%;justify-content:center}
.pc-meta{
  margin-top:16px;padding-top:16px;border-top:1px dashed rgba(255,255,255,.08);
  font-family:var(--font-mono);font-size:10px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--text-muted);text-align:center;font-weight:600;
}

/* ─── DOB SEAL / TRUST BAR ─────────────────────────── */
.trust-bar{
  background:var(--bg-deep);border-top:1px solid rgba(240,165,0,.15);border-bottom:1px solid rgba(240,165,0,.15);
  padding:28px 24px;position:relative;z-index:2;
}
.trust-inner{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
}
.trust-cell{
  padding:6px 22px;border-right:1px solid rgba(255,255,255,.06);
  display:flex;flex-direction:column;gap:6px;
}
.trust-cell:first-child{padding-left:0}
.trust-cell:last-child{border-right:none;padding-right:0}
.tc-big{font-family:var(--font-mono);font-weight:800;font-size:15px;color:var(--text-bright);letter-spacing:.02em}
.tc-link{
  text-decoration:none;display:inline-flex;align-items:center;gap:6px;
  transition:color .15s;cursor:pointer;
}
.tc-link:hover{color:var(--amber)}
.inline-link{
  color:var(--amber);text-decoration:underline;
  text-decoration-color:rgba(240,165,0,.4);text-underline-offset:3px;
  transition:all .15s;
}
.inline-link:hover{text-decoration-color:var(--amber);color:var(--accent-hard)}
.tc-sub{font-family:var(--font-mono);font-size:10px;letter-spacing:.15em;text-transform:uppercase;color:var(--text-muted);font-weight:600}
@media(max-width:720px){.trust-inner{grid-template-columns:repeat(2,1fr);gap:18px}.trust-cell{border-right:none;padding:0}}

/* ─── SECTION ─────────────────────────────────────── */
.sec{padding:90px 24px;position:relative;z-index:2}
.sec-inner{max-width:1280px;margin:0 auto}

.sec-label{
  font-family:var(--font-mono);font-size:11px;letter-spacing:.28em;text-transform:uppercase;
  color:var(--amber);font-weight:700;
  display:flex;align-items:center;gap:14px;margin-bottom:18px;
}
.sec-label::before{content:"";width:40px;height:1px;background:var(--amber)}
.sec-label .num{color:var(--text-muted);font-weight:600}

.sec-title{
  font-family:var(--font-black);font-size:clamp(32px,5vw,56px);
  line-height:1;letter-spacing:-.02em;color:var(--text-bright);margin:0 0 48px;
  text-transform:uppercase;max-width:900px;
}
.sec-title .amber{color:var(--amber)}

/* ─── CERTIFICATIONS EARNED (marquee) ───────────────────── */
.cert-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:36px;
}
@media(max-width:800px){.cert-grid{grid-template-columns:1fr}}
.cert{
  position:relative;padding:32px 32px 36px;
  background:linear-gradient(180deg,rgba(240,165,0,.06) 0%,rgba(26,26,34,.5) 100%);
  border:1px solid rgba(240,165,0,.3);
  overflow:hidden;
  transition:transform .2s,border-color .2s;
}
.cert:hover{transform:translateY(-3px);border-color:var(--amber)}
.cert::before{
  content:"";position:absolute;top:0;left:0;right:0;height:4px;background:var(--stripe);background-size:40px 40px;
}
.cert-code{
  font-family:var(--font-mono);font-weight:800;font-size:44px;
  color:var(--amber);letter-spacing:.02em;line-height:1;
  margin:20px 0 14px;
  text-shadow:0 0 20px rgba(240,165,0,.3);
}
.cert-title{
  font-family:var(--font-mono);font-size:20px;font-weight:700;
  color:var(--text-bright);letter-spacing:-.005em;line-height:1.2;
  margin-bottom:6px;
}
.cert-meta{
  font-family:var(--font-mono);font-size:11px;letter-spacing:.15em;text-transform:uppercase;
  color:var(--text-secondary);font-weight:600;margin-bottom:18px;
}
.cert-desc{
  font-size:15px;line-height:1.55;color:var(--text-primary);
}
.cert-stamp{
  position:absolute;top:22px;right:22px;
  font-family:var(--font-mono);font-weight:800;font-size:10px;letter-spacing:.2em;
  color:var(--status-success);background:rgba(62,207,142,.1);
  border:1.5px solid rgba(62,207,142,.4);padding:6px 12px;text-transform:uppercase;
}

/* ─── PREREQ NOTE ───────────────────────────────────────── */
.prereq-note{
  display:flex;gap:18px;align-items:flex-start;
  padding:20px 24px;margin-bottom:48px;
  background:var(--bg-deep);border-left:3px solid var(--status-warning);
}
.pn-label{
  font-family:var(--font-mono);font-weight:800;font-size:11px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--status-warning);flex-shrink:0;padding-top:3px;min-width:110px;
}
.pn-text{font-size:15px;line-height:1.55;color:var(--text-primary)}
.pn-text b{color:var(--text-bright)}

/* ─── MINOR SECTION TITLE ─────────────────────────── */
.minor-title{
  font-family:var(--font-mono);font-size:13px;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;color:var(--text-secondary);
  margin:0 0 20px;padding-bottom:12px;
  border-bottom:1px solid rgba(240,165,0,.15);
}

/* ─── WHAT'S INCLUDED (spec sheet) ────────────────── */
.spec-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
  border-top:1px solid rgba(240,165,0,.25);
}
@media(max-width:960px){.spec-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:540px){.spec-grid{grid-template-columns:1fr}}

.spec{
  padding:32px 28px;border-bottom:1px solid rgba(240,165,0,.25);
  border-right:1px solid rgba(240,165,0,.12);
  background:rgba(20,20,25,.3);
  transition:background .2s;
  position:relative;
}
.spec:hover{background:rgba(240,165,0,.04)}
.spec:hover .sp-icon{color:var(--amber)}
@media(max-width:960px){.spec:nth-child(2n){border-right:none}}
@media(max-width:540px){.spec{border-right:none}}
.sp-num{
  font-family:var(--font-mono);font-size:10px;letter-spacing:.2em;
  color:var(--text-muted);font-weight:700;margin-bottom:16px;
}
.sp-icon{
  font-size:40px;line-height:1;color:var(--text-secondary);
  margin-bottom:14px;transition:color .2s;font-family:var(--font-mono);font-weight:800;
}
.sp-title{
  font-family:var(--font-mono);font-size:14px;font-weight:700;
  letter-spacing:.02em;color:var(--text-bright);
  margin:0 0 10px;text-transform:uppercase;
}
.sp-desc{font-size:14px;color:var(--text-primary);line-height:1.5;margin:0}

/* ─── THE CARD YOU GET ────────────────────────────── */
.card-section{
  background:linear-gradient(180deg,var(--bg-deep) 0%,var(--bg-abyss) 100%);
  border-top:1px solid rgba(240,165,0,.15);
  border-bottom:1px solid rgba(240,165,0,.15);
}
.card-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
}
@media(max-width:960px){.card-grid{grid-template-columns:1fr;gap:48px}}

.card-showcase{
  perspective:1400px;display:flex;justify-content:center;
  min-height:380px;align-items:center;position:relative;
}
.card-showcase::before{
  content:"";position:absolute;inset:-20px;
  background:radial-gradient(circle at center,rgba(240,165,0,.12) 0%,transparent 60%);
  pointer-events:none;z-index:0;
}
.sst-card{
  width:100%;max-width:500px;
  position:relative;z-index:1;
  transform:rotateY(-10deg) rotateX(6deg);
  transition:transform .6s cubic-bezier(.2,.9,.3,1);
  filter:drop-shadow(0 30px 50px rgba(0,0,0,.7)) drop-shadow(0 8px 16px rgba(240,165,0,.18));
}
.card-showcase:hover .sst-card{transform:rotateY(-2deg) rotateX(0deg) translateY(-8px) scale(1.02)}
.sst-card img{
  display:block;width:100%;height:auto;
  border-radius:14px;
}
.card-badge{
  position:absolute;top:-8px;right:-8px;z-index:2;
  background:var(--amber);color:var(--bg-abyss);
  font-family:var(--font-mono);font-weight:800;font-size:10px;letter-spacing:.15em;
  text-transform:uppercase;padding:8px 14px;
  box-shadow:0 6px 20px rgba(240,165,0,.4);
  transform:rotate(4deg);
}

.card-copy h3{
  font-family:var(--font-black);font-size:36px;line-height:1;letter-spacing:-.02em;
  color:var(--text-bright);margin:0 0 18px;text-transform:uppercase;
}
.card-copy h3 .amber{color:var(--amber)}
.card-copy p{font-size:16px;line-height:1.6;color:var(--text-primary);margin:0 0 16px}
.card-meta{
  display:grid;grid-template-columns:repeat(2,1fr);gap:20px 28px;margin-top:28px;
  border-top:1px solid rgba(240,165,0,.2);padding-top:22px;
}
.cm-k{font-family:var(--font-mono);font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:var(--text-muted);font-weight:700;margin-bottom:4px}
.cm-v{font-family:var(--font-mono);font-weight:700;font-size:15px;color:var(--text-bright);letter-spacing:.02em}
.cm-v .am{color:var(--amber)}

/* ─── HOW IT WORKS ─────────────────────────────────── */
.steps{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative;
}
@media(max-width:960px){.steps{grid-template-columns:1fr;gap:24px}}
.step{
  padding:32px 24px;
  border-left:1px solid rgba(240,165,0,.18);
  position:relative;
}
@media(max-width:960px){.step{border-left:2px solid var(--amber);padding-left:22px}}
.step:first-child{border-left-color:var(--amber)}
@media(min-width:961px){
  .step::before{content:"";position:absolute;top:46px;left:0;width:10px;height:10px;border-radius:50%;background:var(--amber);transform:translateX(-5px);box-shadow:0 0 12px var(--amber)}
}
@media(max-width:960px){.step::before{content:"";position:absolute;top:32px;left:-7px;width:12px;height:12px;border-radius:50%;background:var(--amber);box-shadow:0 0 12px var(--amber)}}
.step-num{
  font-family:var(--font-mono);font-weight:800;font-size:48px;color:var(--amber);
  line-height:1;margin-bottom:16px;letter-spacing:-.03em;
}
.step h4{
  font-family:var(--font-mono);font-size:14px;font-weight:700;color:var(--text-bright);
  margin:0 0 10px;letter-spacing:.02em;text-transform:uppercase;
}
.step p{font-size:14px;color:var(--text-primary);line-height:1.5;margin:0}

/* ─── SPANISH BAR ──────────────────────────────────── */
.lang-bar{
  background:#eab308;color:#1a1306;  /* richer gold, less orange */
  padding:40px 24px;position:relative;z-index:2;
  border-top:6px solid var(--hazard-k);
  border-bottom:6px solid var(--hazard-k);
}
.lang-inner{
  max-width:1280px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;
}
.lang-stack{display:flex;flex-direction:column;gap:10px;min-width:0}
.lang-text{
  font-family:var(--font-black);font-size:clamp(26px,4vw,44px);
  line-height:1;letter-spacing:-.01em;text-transform:uppercase;
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
}
.lang-text .flag{
  display:inline-flex;background:#1a1306;color:#eab308;
  font-family:var(--font-mono);font-size:14px;padding:5px 12px;letter-spacing:.18em;font-weight:800;
  border-radius:2px;
}
.lang-sub{
  font-family:var(--font-mono);font-size:12px;letter-spacing:.2em;text-transform:uppercase;
  font-weight:700;color:rgba(26,19,6,.78);
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
}
.lang-sub .pip{display:inline-block;width:4px;height:4px;border-radius:50%;background:#1a1306}
.lang-btn,
body.sst-single-product .lang-btn{
  font-family:var(--font-mono);font-weight:800;font-size:15px;
  letter-spacing:.08em;text-transform:uppercase;
  padding:18px 26px;background:#1a1306 !important;color:#ffd95a !important;
  text-decoration:none;border:2px solid #1a1306;
  transition:all .2s cubic-bezier(.2,.9,.3,1);
  display:inline-flex;align-items:center;gap:10px;
  box-shadow:0 6px 18px rgba(0,0,0,.3);
}
.lang-btn:hover,
body.sst-single-product .lang-btn:hover{
  background:#ffd95a !important;color:#1a1306 !important;
  border-color:#1a1306;transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}

/* ─── FAQ ──────────────────────────────────────────── */
.faq-list{border-top:1px solid rgba(240,165,0,.25)}
.faq{
  border-bottom:1px solid rgba(240,165,0,.15);
  padding:0;
}
.faq-q{
  display:flex;align-items:center;gap:18px;width:100%;
  padding:24px 0;background:none;border:0;cursor:pointer;text-align:left;
  font-family:var(--font-mono);font-size:17px;font-weight:700;
  color:var(--text-bright);letter-spacing:-.005em;
  transition:color .2s;
}
.faq-q:hover{color:var(--amber)}
.faq-q::before{
  content:"+";font-family:var(--font-mono);font-weight:800;font-size:22px;color:var(--amber);
  flex-shrink:0;transition:transform .2s;width:24px;
}
.faq.open .faq-q::before{content:"−"}
.faq-n{
  font-family:var(--font-mono);font-size:11px;color:var(--text-muted);font-weight:700;
  letter-spacing:.12em;flex-shrink:0;
}
.faq-a{
  max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s;
  padding:0 0 0 42px;
}
.faq.open .faq-a{max-height:400px;padding:0 0 24px 42px}
.faq-a p{font-size:15px;line-height:1.65;color:var(--text-primary);margin:0}

/* ─── REVIEWS ──────────────────────────────────────── */
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
@media(max-width:960px){.review-grid{grid-template-columns:1fr}}
.review{
  background:var(--bg-surface);border:1px solid rgba(255,255,255,.06);
  padding:28px;position:relative;
}
.review::before{
  content:"";position:absolute;top:0;left:0;width:40px;height:4px;background:var(--amber);
}
.rv-stars{color:var(--amber);font-size:14px;letter-spacing:.08em;margin-bottom:14px;font-family:var(--font-mono)}
.rv-text{font-size:15px;line-height:1.6;color:var(--text-primary);margin:0 0 20px}
.rv-author{
  display:flex;align-items:center;gap:14px;
  padding-top:18px;border-top:1px dashed rgba(255,255,255,.08);
}
.rv-avi{
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,var(--amber),var(--accent-dim));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-mono);font-weight:800;color:var(--bg-abyss);font-size:14px;
}
.rv-name{font-family:var(--font-mono);font-weight:700;font-size:13px;color:var(--text-bright)}
.rv-role{font-family:var(--font-mono);font-size:10px;color:var(--text-muted);letter-spacing:.1em;text-transform:uppercase;margin-top:2px}

/* ─── FINAL CTA ────────────────────────────────────── */
.final-cta{
  background:linear-gradient(135deg,#1a1a22 0%,#0a0a0f 100%);
  padding:80px 24px;text-align:center;position:relative;overflow:hidden;z-index:2;
  border-top:1px solid rgba(240,165,0,.2);
}
.final-cta::before,.final-cta::after{
  content:"";position:absolute;left:0;right:0;height:10px;background:var(--stripe);background-size:40px 40px;
}
.final-cta::before{top:0}
.final-cta::after{bottom:0}
.fc-inner{max-width:780px;margin:0 auto}
.fc-title{font-family:var(--font-black);font-size:clamp(36px,6vw,72px);line-height:.95;color:var(--text-bright);margin:0 0 20px;text-transform:uppercase;letter-spacing:-.02em}
.fc-title .amber{color:var(--amber)}
.fc-lede{font-size:17px;color:var(--text-primary);max-width:540px;margin:0 auto 32px}
.fc-ctas{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.fc-btn-primary{
  background:var(--amber);color:var(--bg-abyss);
  padding:22px 36px;font-size:15px;
}

/* ─── FOOTER STRIP ─────────────────────────────────── */
.footer{
  background:var(--bg-abyss);padding:24px;position:relative;z-index:2;
  border-top:1px solid rgba(255,255,255,.05);
}
.foot-inner{
  max-width:1280px;margin:0 auto;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;
  font-family:var(--font-mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted);font-weight:600;
}

/* ─── STICKY MOBILE BUY BAR ────────────────────────── */
.sticky-buy{
  position:fixed;bottom:0;left:0;right:0;z-index:40;
  background:var(--bg-abyss);
  border-top:2px solid var(--amber);
  padding:12px 16px;
  display:none;
  align-items:center;justify-content:space-between;gap:12px;
  box-shadow:0 -8px 32px rgba(0,0,0,.6);
}
.sb-price{font-family:var(--font-mono);font-weight:800;font-size:22px;color:var(--text-bright);line-height:1}
.sb-price .am{color:var(--amber)}
.sb-sub{font-family:var(--font-mono);font-size:10px;color:var(--text-muted);letter-spacing:.12em;text-transform:uppercase;margin-top:2px;font-weight:600}
.sb-btn{
  background:var(--amber);color:var(--bg-abyss);
  padding:14px 22px;font-family:var(--font-mono);font-weight:700;font-size:13px;
  letter-spacing:.08em;text-transform:uppercase;text-decoration:none;
  border:none;flex-shrink:0;
}
@media(max-width:720px){
  .sticky-buy{display:flex}
  body{padding-bottom:80px}
}

/* ─── REVIEW BADGE ─────────────────────────────────── */
.mockup-tag{
  position:fixed;top:12px;right:12px;z-index:100;
  background:var(--danger);color:white;
  font-family:var(--font-mono);font-weight:800;font-size:10px;
  letter-spacing:.15em;text-transform:uppercase;
  padding:6px 10px;border:1px solid rgba(255,255,255,.2);
  box-shadow:0 4px 12px rgba(0,0,0,.4);
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.hero-title,.hero-lede,.hero-stats,.hero-ctas,.price-card{
  animation:fadeUp .7s ease-out both;
}
.hero-lede{animation-delay:.1s}
.hero-stats{animation-delay:.2s}
.hero-ctas{animation-delay:.3s}
.price-card{animation-delay:.15s}

/* ═══ ROUND 3 OVERRIDES — font bumps + stat cell alignment ═══ */

/* Center each stat cell so num + lbl line up as a unit instead of
   drifting toward the left edge. */
body.sst-single-product .hero-stat{
  text-align:center;
  padding:20px 12px;
}
body.sst-single-product .hs-lbl{
  margin-top:10px;
}
body.sst-single-product .hs-lbl s{
  text-decoration:line-through;
  text-decoration-color:var(--amber);
  text-decoration-thickness:1.5px;
  opacity:.58;
  margin-right:4px;
  color:var(--text-secondary);
}

/* Font bumps — body text sized for construction workers reading on phones */
body.sst-single-product .hero-lede{font-size:22px;line-height:1.55;max-width:620px;}
body.sst-single-product .hs-num{font-size:clamp(22px, 2.4vw, 32px);white-space:nowrap;}
body.sst-single-product .hs-lbl{font-size:13px;letter-spacing:.12em;font-weight:700;color:var(--text-primary);}
body.sst-single-product .btn{font-size:17px;padding:22px 34px;}
body.sst-single-product .cta-micro{font-size:12px;letter-spacing:.12em;}
body.sst-single-product .faq-q{font-size:20px;}
body.sst-single-product .faq-a p{font-size:18px;line-height:1.65;}
body.sst-single-product .rv-text{font-size:18px;line-height:1.6;}
body.sst-single-product .sp-desc{font-size:18px;line-height:1.6;}
body.sst-single-product .card-copy p{font-size:19px;line-height:1.6;}
body.sst-single-product .pc-features li{font-size:16px;line-height:1.5;}
body.sst-single-product .pc-features li .inline-link{white-space:nowrap;}
body.sst-single-product .step p{font-size:16px;line-height:1.55;}
body.sst-single-product .pn-text{font-size:17px;line-height:1.55;}
body.sst-single-product .fc-lede{font-size:21px;}
body.sst-single-product .fc-btn-primary{font-size:18px;padding:24px 38px;}

/* Trust bar + section intros — readable weight */
body.sst-single-product .tc-big{font-size:17px;}
body.sst-single-product .tc-sub{font-size:11px;}
body.sst-single-product .sec-intro{font-size:19px;line-height:1.6;}
body.sst-single-product .cm-v{font-size:17px;}
body.sst-single-product .sp-title{font-size:18px;}
body.sst-single-product .rv-name{font-size:15px;}
body.sst-single-product .stats-legal{
  font-family:var(--font-mono);
  font-size:11px;
  line-height:1.5;
  color:var(--text-muted);
  max-width:620px;
  margin:-22px 0 28px;
  letter-spacing:.02em;
}
