/* ══════════════════════════════════════════════════════════════════
   STOBOX — Tokenization v3 (page-specific overrides)
   Loads AFTER /css/v3-system.css. Hosts components unique to the
   tokenization explainer (definition compare grid, steps, asset
   classes, benefits grid, regulatory grid, problem grid, faq).
   Also reuses the homepage hero, ribbon, prob-grid, tech-grid,
   pricing-journey patterns — these definitions are duplicated in
   /css/index-v3.css and need their own copy here so this page
   doesn't depend on the homepage stylesheet.
   ══════════════════════════════════════════════════════════════════ */

/* ── HERO (shared with homepage v3) ──────────────────────────── */
.hero{
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: calc(100vh - 52px);
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  color: var(--bg);
}
.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: 0 0;
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 75%, transparent);
  pointer-events: none;
  z-index: 1;
}
.hero::after{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, transparent 30%, rgba(10,14,44,0.55) 70%, var(--bg-dark) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero .sec-bg-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  display: block;
  animation: bg-drift-a 22s ease-in-out infinite;
}
@keyframes glow-breathe{
  0%, 100%{ opacity: 0.55; filter: blur(70px) }
  50%     { opacity: 1;    filter: blur(90px) }
}
.hero-glow{
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  top: -10%;
  left: 35%;
  background: radial-gradient(circle at 50% 50%,
    rgba(99,91,255,0.45) 0%,
    rgba(99,91,255,0.20) 30%,
    rgba(99,91,255,0.05) 60%,
    transparent 80%);
  pointer-events: none;
  z-index: 1;
  animation: glow-breathe 7s ease-in-out infinite;
}
.hero-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 80px var(--gutter) 60px;
  position: relative;
  z-index: 2;
}
.hero-eye{
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-hi);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-eye::before{
  content: '';
  width: 24px; height: 2px;
  background: var(--accent-hi);
}
.hero h1{
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 116px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero h1 .line{ display: block; overflow: hidden }
.hero h1 .line span{
  display: inline-block;
  transform: translateY(102%);
  animation: rise .9s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) span{ animation-delay: .1s }
.hero h1 .line:nth-child(2) span{ animation-delay: .22s }
.hero h1 .line:nth-child(3) span{ animation-delay: .34s }
.hero h1 em{
  font-style: normal;
  color: var(--accent-hi);
}
@keyframes rise{ to { transform: none } }
.hero-sub{
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 64ch;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade .5s var(--ease) .2s forwards;
}
.hero-sub strong{ color: var(--bg); font-weight: 600 }
.hero .btn-g{
  border-color: rgba(255,255,255,0.4);
  color: var(--bg);
}
.hero .btn-g:hover{ background: var(--bg); color: var(--ink); border-color: var(--bg) }
@keyframes fade{ to { opacity: 1 } }
.hero-btns{
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fade .5s var(--ease) .35s forwards;
}
@media (max-width: 1024px){
  .hero{ min-height: auto }
  .hero-content{ padding: 60px var(--gutter) 50px }
}
@media (min-width: 768px){
  .hero h1 .line span{ white-space: nowrap }
}

/* ── HERO RIBBON (shared) ────────────────────────────────────── */
.hero-ribbon{
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-dark-2);
  position: relative;
  z-index: 3;
  padding: 0 var(--gutter);
}
.ribbon-inner{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.ribbon-item{
  padding: 26px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ribbon-item:last-child{ border-right: 0 }
.ribbon-key{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ribbon-val{
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  color: var(--bg);
  line-height: 1;
  letter-spacing: -0.022em;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.ribbon-unit{
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
@media (max-width: 1100px){
  .ribbon-inner{ grid-template-columns: repeat(3, 1fr) }
  .ribbon-item:nth-child(3n){ border-right: 0 }
  .ribbon-item:nth-child(-n+3){ border-bottom: 1px solid rgba(255,255,255,0.08) }
}
@media (max-width: 600px){
  .ribbon-inner{ grid-template-columns: repeat(2, 1fr) }
  .ribbon-item{ padding: 14px 16px }
  .ribbon-item:nth-child(2n){ border-right: 0 }
  .ribbon-item:nth-child(2n+1){ border-right: 1px solid rgba(255,255,255,0.08) }
  .ribbon-val{ font-size: 22px }
}

/* ── COMPARE GRID (definition section) ───────────────────────── */
.tk-compare{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border: 1px solid var(--rule);
  background: var(--rule);
  gap: 1px;
}
.tk-cmp{
  background: var(--bg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tk-cmp-tag{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--rule-hard);
  padding: 4px 9px;
  align-self: flex-start;
  margin-bottom: 22px;
  border-radius: 1px;
}
.tk-cmp-tag.yes{
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-bg);
}
.tk-cmp h4{
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.018em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 14px;
}
.tk-cmp p{
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}
.tk-cmp--yes{
  background: var(--blue-ice);
  outline: 1px solid var(--accent);
  outline-offset: -1px;
}
.tk-cmp--yes h4{ color: var(--accent) }
@media (max-width: 920px){
  .tk-compare{ grid-template-columns: 1fr }
}

/* ── HIGHLIGHT BOX ───────────────────────────────────────────── */
.tk-highlight{
  margin-top: 50px;
  padding: 30px 32px;
  background: var(--ink);
  color: var(--bg);
  border-left: 3px solid var(--accent);
}
.tk-highlight strong{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-hi);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.tk-highlight p{
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* ── INLINE NOTE BLOCK ───────────────────────────────────────── */
.tk-note{
  margin-top: 40px;
  padding: 22px 26px;
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.tk-note strong{ color: var(--ink); font-weight: 600 }

/* ── STEPS (technical architecture — 5 numbered rows) ────────── */
.tk-steps{
  margin-top: 60px;
  border-top: 1px solid var(--rule);
}
.tk-step{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 28px;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  background: var(--bg);
}
.sec.alt .tk-step{ background: var(--bg-2) }
.tk-step-num{
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.025em;
}
.tk-step-title{
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.tk-step-desc{
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}
@media (max-width: 920px){
  .tk-step{ grid-template-columns: 1fr; gap: 12px; padding: 22px 0 }
  .tk-step-num{ font-size: 36px }
}

/* ── ASSET CLASSES GRID ──────────────────────────────────────── */
.tk-assets{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border: 1px solid var(--rule);
  background: var(--rule);
  gap: 1px;
}
.tk-asset{
  background: var(--bg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--t-base);
}
.tk-asset:hover{ background: var(--blue-ice) }
.tk-asset-n{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.tk-asset h4{
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 12px;
}
.tk-asset p{
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: auto;
}
@media (max-width: 920px){
  .tk-assets{ grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 560px){
  .tk-assets{ grid-template-columns: 1fr }
}

/* ── BENEFITS GRID (dark section) ────────────────────────────── */
.tk-benefits{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.10);
  gap: 1px;
  position: relative;
  z-index: 2;
}
.tk-benefit{
  background: var(--bg-dark-2);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  color: var(--bg);
  transition: background var(--t-base);
}
.tk-benefit:hover{ background: var(--bg-dark) }
.tk-benefit-n{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-hi);
  margin-bottom: 18px;
}
.tk-benefit h4{
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--bg);
  margin-bottom: 12px;
}
.tk-benefit p{
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
@media (max-width: 920px){
  .tk-benefits{ grid-template-columns: 1fr }
}
/* Override generic card-hover shadow for dark-bg benefit cards */
.tk-benefit:hover{
  box-shadow: 0 18px 40px rgba(99, 91, 255, 0.28);
}

/* ── REGULATORY FRAMEWORK GRID ───────────────────────────────── */
.tk-compliance{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border: 1px solid var(--rule);
  background: var(--rule);
  gap: 1px;
}
.tk-reg{
  background: var(--bg-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: background var(--t-base);
}
.sec .tk-reg{ background: var(--bg) }
.sec.alt .tk-reg{ background: var(--bg) }
.tk-reg:hover{ background: var(--blue-ice) }
.tk-reg-tag{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  background: var(--accent-bg);
  padding: 4px 9px;
  border-radius: 1px;
  align-self: flex-start;
  margin-bottom: 18px;
}
.tk-reg h4{
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 12px;
}
.tk-reg p{
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 920px){
  .tk-compliance{ grid-template-columns: 1fr }
}

/* ── PROBLEM-GRID (failures) — homepage class reuse ──────────── */
.prob-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.prob{
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background var(--t-base);
}
.prob:nth-child(2), .prob:nth-child(3){ padding-left: 28px }
.prob:last-child{ border-right: 0 }
.sec.alt .prob:hover{ background: var(--bg-3) }
.prob-n{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.prob-n::before{
  content: '';
  width: 12px; height: 2px;
  background: var(--accent);
}
.prob-t{
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.012em;
}
.prob-b{
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}
.prob-b strong{ color: var(--ink); font-weight: 600 }
@media (max-width: 920px){
  .prob-grid{ grid-template-columns: 1fr }
  .prob, .prob:nth-child(2), .prob:nth-child(3){
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .prob:last-child{ border-bottom: 0 }
}

/* ── TECH GRID (proprietary tech section) — reuse from home ──── */
.tech-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border: 1px solid rgba(255,255,255,0.12);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  position: relative;
  z-index: 2;
}
/* Compass tile — featured product treatment */
.tc.tc-compass{
  background: #1c1c5e;
  box-shadow:
    inset 0 4px 0 var(--accent),
    0 0 0 1px rgba(165,180,252,0.18);
}
.tc.tc-compass .tc-lbl{ color: var(--accent-hi) }
.tc.tc-compass .tc-link{ color: var(--accent-hi) }
.tc.tc-compass:hover{
  background: #24249a;
  box-shadow:
    inset 0 4px 0 var(--accent),
    0 24px 60px -22px rgba(99,91,255,0.55),
    0 0 0 1px rgba(165,180,252,0.30);
}
.tc{
  background: var(--bg-dark-2);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  transition: background var(--t-base);
  position: relative;
  color: var(--bg);
}
.tc:hover{ background: var(--bg-dark) }
.tc-lbl{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-hi);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tc-lbl::before{
  content: '';
  width: 16px; height: 2px;
  background: var(--accent-hi);
}
.tc-name{
  font-family: var(--display);
  font-weight: 800;
  font-size: 38px;
  color: var(--bg);
  margin-bottom: 20px;
  line-height: 0.95;
  letter-spacing: -0.022em;
  text-transform: uppercase;
}
.tc-out{
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  color: var(--accent-hi);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.tc-desc{
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: auto;
}
.tc-link{
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--bg);
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
  transition: color var(--t-fast), gap var(--t-base) var(--ease);
}
.tc-link::after{ content: '→' }
.tc:hover .tc-link{ color: var(--accent-hi); gap: 14px }
@media (max-width: 1100px){
  .tech-grid{ grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 600px){
  .tech-grid{ grid-template-columns: 1fr }
  .tc{ padding: 32px 22px }
}

/* ── PRICING JOURNEY (re-used for the 7-layer process) ───────── */
.pricing-journey{
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.pj-step{
  padding: 50px 28px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  transition: background var(--t-base);
}
.pj-num-box{ font-family: var(--display); text-align: left }
.pj-nv{
  font-weight: 800;
  font-size: 64px;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.pj-nl{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}
.pj-info-wrap{ padding-left: 40px; border-left: 1px solid var(--rule) }
.pj-info{ margin-bottom: 18px }
.pj-info h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.018em;
  line-height: 1;
}
.pj-meta{
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--ink-3);
  line-height: 1.6;
  text-transform: uppercase;
}
.pj-price{
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 24px 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.pj-pv{
  font-family: var(--display);
  font-weight: 800;
  font-size: 56px;
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.pj-pn{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.pj-step:first-child .pj-pv{ color: var(--accent) }
.pj-body{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.pj-col h4{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pj-col h4::before{
  content: '';
  width: 12px; height: 2px;
  background: var(--accent);
}
.pj-col ul{ list-style: none }
.pj-col li{
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 9px 0 9px 22px;
  position: relative;
  border-bottom: 1px solid var(--rule-soft);
}
.pj-col li::before{
  content: '+';
  position: absolute;
  left: 0; top: 8px;
  color: var(--accent);
  font-weight: 600;
  font-family: var(--mono);
  font-size: 14px;
}
.pj-col li:last-child{ border-bottom: 0 }
.pj-cta-row{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pj-btn{
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base);
  border: 1px solid;
}
.pj-btn::after{ content: '→' }
.pj-btn.primary{ background: var(--accent); border-color: var(--accent); color: var(--bg) }
.pj-btn.primary:hover{ background: var(--accent-lo); border-color: var(--accent-lo) }
.pj-btn.soft{ background: transparent; border-color: var(--ink); color: var(--ink) }
.pj-btn.soft:hover{ background: var(--ink); color: var(--bg) }
.pj-link{
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.pj-link:hover{ color: var(--accent); border-color: var(--accent) }
@media (max-width: 920px){
  .pj-step{ grid-template-columns: 1fr; gap: 16px; padding: 36px 0 }
  .pj-info-wrap{ padding-left: 0; border-left: 0 }
  .pj-body{ grid-template-columns: 1fr; gap: 24px }
}
.pricing-note{
  margin-top: 50px;
  padding: 30px 32px;
  background: var(--ink);
  color: var(--bg);
  border-left: 3px solid var(--accent);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.pricing-note strong{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-hi);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.pricing-note a{
  color: var(--accent-hi);
  border-bottom: 1px solid var(--accent-hi);
  font-weight: 500;
}

/* ── FAQ accordion ───────────────────────────────────────────── */
.tk-faq{
  margin-top: 60px;
  border-top: 1px solid var(--rule);
}
.tk-faq-item{
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.sec.alt .tk-faq-item{ background: var(--bg-2) }
.tk-faq-q{
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-align: left;
  transition: color var(--t-fast);
}
.tk-faq-q:hover{ color: var(--accent) }
.tk-faq-q svg{
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease);
}
.tk-faq-q[aria-expanded="true"] svg{ transform: rotate(180deg) }
.tk-faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) var(--ease);
}
.tk-faq-a-inner{
  padding: 0 28px 24px;
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 80ch;
}
@media (max-width: 600px){
  .tk-faq-q{ font-size: 18px; padding: 20px 16px }
  .tk-faq-a-inner{ padding: 0 16px 20px }
}

/* ── Reduced-motion overrides for hero animations ────────────── */
@media (prefers-reduced-motion: reduce){
  .hero h1 .line span, .hero-sub, .hero-btns{
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero .sec-bg-img{ animation: bg-drift-a 60s ease-in-out infinite !important }
  .hero-glow{ animation: glow-breathe 20s ease-in-out infinite !important }
}
