/* ============================================================
   TAG site · SECTIONS
   timeline · bento · split · integrations · dashboard · API
   testimonials · pricing · final CTA
   ============================================================ */

/* ============================================================
   BUSINESS-FLOW TIMELINE
   ============================================================ */
.flow { position: relative; }
.flow-track { position: relative; margin-top: 64px; }
.flow-line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%);
  background: var(--line);
}
.flow-line .fill {
  position: absolute; left: 0; top: 0; width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--amber), var(--amber-deep));
  transition: height .1s linear;
}
.flow-steps { position: relative; display: flex; flex-direction: column; gap: 30px; }
.flow-step { display: grid; grid-template-columns: 1fr 64px 1fr; align-items: center; }
.flow-card {
  grid-row: 1;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px 22px; box-shadow: var(--sh-sm); max-width: 380px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.flow-step:nth-child(odd) .flow-card { justify-self: end; }
.flow-step:nth-child(even) .flow-card { grid-column: 3; justify-self: start; }
.flow-step.lit .flow-card { box-shadow: var(--sh-md); border-color: var(--amber-line); transform: translateY(-2px); }
.flow-card .fc-top { display: flex; align-items: center; gap: 11px; }
.flow-card .fc-ic { width: 38px; height: 38px; border-radius: 11px; background: var(--bg-kraft); color: var(--ink-2); display: grid; place-items: center; flex: none; transition: all .3s; }
.flow-step.lit .fc-ic { background: var(--amber-soft); color: var(--amber-deep); }
.flow-card h4 { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.flow-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin-top: 8px; }
.flow-card .fc-tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--ink-4); text-transform: uppercase; }
.flow-node {
  grid-column: 2; grid-row: 1; justify-self: center; z-index: 2;
  width: 18px; height: 18px; border-radius: 50%; background: var(--surface);
  border: 2px solid var(--line); transition: all .35s var(--ease);
}
.flow-step.lit .flow-node { background: var(--amber); border-color: var(--amber-deep); box-shadow: 0 0 0 6px var(--amber-soft); }

@media (max-width: 760px) {
  .flow-line { left: 19px; }
  .flow-step { grid-template-columns: 38px 1fr; gap: 16px; }
  .flow-step:nth-child(odd) .flow-card,
  .flow-step:nth-child(even) .flow-card { grid-column: 2; justify-self: start; max-width: none; }
  .flow-node { grid-column: 1; }
}

/* ============================================================
   BENTO FEATURE GRID
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 178px; gap: 18px; margin-top: 56px; }
.bento-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
  display: flex; flex-direction: column;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--amber-line); }
.bento-card .bc-ic { width: 44px; height: 44px; border-radius: 13px; background: var(--amber-soft); color: var(--amber-deep); display: grid; place-items: center; margin-bottom: 16px; }
.bento-card h4 { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin-top: 18px; }
.bento-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin-top: 8px; }
.bc-feat { grid-column: span 3; grid-row: span 2; }
.bc-feat h4 { font-size: 26px; }
.bc-feat p { font-size: 15px; max-width: 34ch; }
.bc-med { grid-column: span 3; }
.bc-sm { grid-column: span 2; }
.bc-wide { grid-column: span 4; }

/* feature card embellishments */
.bc-feat .ai-demo { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.ai-row { display: flex; align-items: center; gap: 10px; padding: 10px 13px; border-radius: var(--r-sm); background: var(--bg-soft); border: 1px solid var(--line-2); font-size: 12.5px; }
.ai-row .st { margin-left: auto; font-family: var(--mono); font-size: 10.5px; font-weight: 600; padding: 3px 9px; border-radius: var(--r-pill); }
.ai-row .st.ok { background: var(--green-soft); color: var(--green); }
.ai-row .st.rev { background: var(--amber-soft); color: var(--amber-deep); }
.ai-row .chk { width: 18px; height: 18px; border-radius: 6px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }

.bento-card.dark { background: var(--d-bg-2); border-color: var(--d-line); color: var(--d-ink); }
.bento-card.dark h4 { color: var(--d-ink); }
.bento-card.dark p { color: var(--d-ink-2); }
.bento-card.dark .bc-ic { background: rgba(255,255,255,0.07); color: var(--d-amber); }
.bento-card.dark:hover { border-color: var(--d-amber); }

.refund-amt { margin-top: 16px; font-family: var(--display); font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }
.refund-amt .pos { color: var(--green); font-size: 14px; margin-left: 6px; }
.code-mini { margin-top: 16px; font-family: var(--mono); font-size: 12px; background: var(--d-bg); border: 1px solid var(--d-line); border-radius: var(--r-sm); padding: 13px; color: var(--d-ink-2); line-height: 1.7; }
.code-mini .k { color: oklch(0.78 0.12 30); }
.code-mini .s { color: oklch(0.78 0.13 145); }
.code-mini .f { color: var(--d-amber); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .bc-feat, .bc-med, .bc-sm, .bc-wide { grid-column: span 2; }
  .bc-feat { grid-row: span 2; }
}

/* ============================================================
   MERCHANT vs CUSTOMER SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.split-col { border-radius: var(--r-xl); padding: 34px; position: relative; overflow: hidden; }
.split-merchant { background: var(--ink); color: var(--bg); }
.split-customer { background: var(--surface); border: 1px solid var(--line); }
.split-loyalty { background: linear-gradient(165deg, var(--amber-soft), var(--surface) 78%); border: 1px solid var(--amber-line); }
.split-col .sc-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.split-merchant .sc-tag { color: var(--d-amber); }
.split-customer .sc-tag { color: var(--amber-deep); }
.split-loyalty .sc-tag { color: var(--amber-deep); }
.split-col h3 { font-family: var(--display); font-size: 26px; font-weight: 800; letter-spacing: -0.03em; margin-top: 12px; }
.split-customer h3, .split-loyalty h3 { color: var(--ink); }
.split-col > p { font-size: 14.5px; line-height: 1.55; margin-top: 12px; max-width: 36ch; }
.split-merchant > p { color: oklch(0.78 0.01 70); }
.split-customer > p, .split-loyalty > p { color: var(--ink-2); }
.split-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 16px; }
.split-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 15px; }
.split-list .li-ic { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; margin-top: -1px; }
.split-merchant .li-ic { background: rgba(255,255,255,0.08); color: var(--d-amber); }
.split-customer .li-ic, .split-loyalty .li-ic { background: var(--amber-soft); color: var(--amber-deep); }
.split-merchant .li-t { color: var(--bg); }
.split-list .li-t b { font-weight: 700; }
.split-list .li-s { display: block; font-size: 12.5px; margin-top: 2px; }
.split-merchant .li-s { color: oklch(0.68 0.01 70); }
.split-customer .li-s, .split-loyalty .li-s { color: var(--ink-3); }
@media (max-width: 920px) { .split { grid-template-columns: 1fr; } }

/* ============================================================
   INTEGRATIONS CARDS
   ============================================================ */
.intg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.intg-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
  cursor: default;
}
.intg-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--amber-line); }
.intg-card .ic-logo { display: flex; align-items: center; gap: 12px; }
.intg-card .ic-glyph { width: auto; min-width: 48px; height: 48px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; padding: 0 10px; flex: none; overflow: hidden; box-sizing: border-box; }
.intg-card .ic-name { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.intg-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin-top: 18px; }
.intg-card .ic-foot { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.intg-card .ic-status { font-family: var(--mono); font-size: 11px; color: var(--green); display: flex; align-items: center; gap: 6px; }
.intg-card .ic-status .d { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.intg-card .ic-link { font-size: 13px; font-weight: 600; color: var(--amber-deep); display: inline-flex; align-items: center; gap: 5px; }
.intg-card .ic-link .arr { transition: transform .2s var(--ease); }
.intg-card:hover .ic-link .arr { transform: translateX(4px); }
@media (max-width: 820px) { .intg-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .intg-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DASHBOARD SHOWCASE (light, Stripe-style)
   ============================================================ */
.dash-showcase { margin-top: 56px; }
.dashboard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); overflow: hidden; display: grid; grid-template-columns: 220px 1fr;
}
.db-side { background: var(--bg-soft); border-right: 1px solid var(--line); padding: 20px 16px; }
.db-side .db-brand { display: flex; align-items: center; gap: 9px; padding: 6px 8px 18px; }
.db-nav { display: flex; flex-direction: column; gap: 3px; }
.db-nav .dn { display: flex; align-items: center; gap: 11px; padding: 9px 11px; border-radius: 10px; font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.db-nav .dn svg { color: var(--ink-3); }
.db-nav .dn.on { background: var(--surface); color: var(--ink); box-shadow: var(--sh-sm); font-weight: 600; }
.db-nav .dn.on svg { color: var(--amber-deep); }
.db-side .db-user { margin-top: 24px; padding: 11px; border-radius: 12px; border: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.db-side .db-user .av { width: 30px; height: 30px; border-radius: 9px; background: var(--amber-soft); color: var(--amber-deep); display: grid; place-items: center; font-weight: 800; font-size: 12px; font-family: var(--display); }
.db-side .db-user .un { font-size: 12.5px; font-weight: 600; }
.db-side .db-user .ue { font-size: 10.5px; color: var(--ink-3); }

.db-main { padding: 24px 26px; }
.db-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.db-top h3 { font-family: var(--display); font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.db-top .db-range { display: flex; gap: 4px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px; }
.db-top .db-range button { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: var(--r-pill); color: var(--ink-3); }
.db-top .db-range button.on { background: var(--surface); color: var(--ink); box-shadow: var(--sh-sm); }

.db-metrics { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.db-metric { padding: 16px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
.db-metric .ml { font-size: 11.5px; color: var(--ink-3); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.db-metric .mv { font-family: var(--display); font-size: 26px; font-weight: 800; letter-spacing: -0.03em; margin-top: 8px; }
.db-metric .md { font-size: 11px; margin-top: 6px; font-family: var(--mono); display: flex; align-items: center; gap: 4px; }
.db-metric .md.up { color: var(--green); }
.db-metric .md.amber { color: var(--amber-deep); }

.db-lower { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; margin-top: 14px; }
.db-chart { border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px; }
.db-chart .ch-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.db-chart .ch-head .t { font-size: 13px; font-weight: 700; font-family: var(--display); }
.db-chart .ch-head .v { font-family: var(--display); font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.db-chart svg { width: 100%; height: 130px; display: block; margin-top: 8px; }
.db-chart .ch-x { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 9.5px; color: var(--ink-4); margin-top: 6px; }

.db-claims { border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px; }
.db-claims .t { font-size: 13px; font-weight: 700; font-family: var(--display); margin-bottom: 12px; }
.db-claim { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-top: 1px solid var(--line-2); }
.db-claim:first-of-type { border-top: 0; }
.db-claim .ci { width: 30px; height: 30px; border-radius: 9px; background: var(--bg-kraft); display: grid; place-items: center; color: var(--ink-3); flex: none; }
.db-claim .cn { font-size: 12.5px; font-weight: 600; }
.db-claim .cm { font-size: 10.5px; color: var(--ink-3); font-family: var(--mono); }
.db-claim .cs { margin-left: auto; font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: var(--r-pill); }
.db-claim .cs.ok { background: var(--green-soft); color: var(--green); }
.db-claim .cs.rev { background: var(--amber-soft); color: var(--amber-deep); }

@media (max-width: 900px) {
  .dashboard { grid-template-columns: 1fr; }
  .db-side { display: none; }
  .db-metrics { grid-template-columns: repeat(2, 1fr); }
  .db-lower { grid-template-columns: 1fr; }
}

/* ============================================================
   API SECTION (dark)
   ============================================================ */
.api-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.code-window {
  background: var(--d-bg-2); border: 1px solid var(--d-line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: 0 40px 90px -40px rgba(0,0,0,0.6);
}
.cw-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--d-line); }
.cw-bar .dots { display: flex; gap: 6px; }
.cw-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.cw-bar .fname { font-family: var(--mono); font-size: 11.5px; color: var(--d-ink-3); margin-left: 8px; }
.cw-body { padding: 22px 22px; font-family: var(--mono); font-size: 13.5px; line-height: 1.85; color: var(--d-ink-2); overflow-x: auto; }
.cw-body .ln { white-space: pre; }
.cw-body .k { color: oklch(0.80 0.13 30); }
.cw-body .s { color: oklch(0.80 0.13 145); }
.cw-body .f { color: var(--d-amber); }
.cw-body .c { color: var(--d-ink-3); }
.cw-body .p { color: oklch(0.78 0.11 250); }
.cw-cursor { display: inline-block; width: 8px; height: 16px; background: var(--d-amber); vertical-align: text-bottom; animation: blink 1.1s steps(2) infinite; }
@keyframes blink { 0%,50%{opacity:1;} 50.01%,100%{opacity:0;} }

.api-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.api-chip { font-family: var(--mono); font-size: 12.5px; color: var(--d-ink-2); border: 1px solid var(--d-line); border-radius: var(--r-pill); padding: 8px 15px; transition: all .2s; cursor: pointer; }
.api-chip:hover { border-color: var(--d-amber); color: var(--d-ink); background: rgba(255,255,255,0.04); }
.api-chip.active { border-color: var(--d-amber); color: oklch(0.22 0.04 50); background: var(--d-amber); font-weight: 600; }
.cw-body { transition: opacity .18s var(--ease); }
@media (max-width: 900px) { .api-grid { grid-template-columns: 1fr; gap: 40px; } }

/* dev panel: app mockup leads */
.dev-panel { transition: opacity .18s var(--ease); min-height: 300px; }
.app-mock {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.6); overflow: hidden; color: var(--ink);
}
.am-bar { padding: 11px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line-2); }
.am-store { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; color: var(--ink-3); font-family: var(--mono); }
.am-store svg { color: #5E8E3E; }
.am-head { display: flex; align-items: center; gap: 14px; padding: 22px 22px 0; }
.am-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(145deg, var(--amber), var(--amber-deep)); display: grid; place-items: center; flex: none; box-shadow: 0 8px 18px -8px var(--amber); }
.am-name { font-family: var(--display); font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.am-by { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.am-meta { display: flex; align-items: center; gap: 9px; padding: 14px 22px 0; font-size: 12.5px; color: var(--ink-2); }
.am-stars { color: var(--amber); letter-spacing: 1px; font-size: 13px; }
.am-meta b { font-weight: 800; font-family: var(--display); }
.am-rev { color: var(--ink-3); }
.am-pill { margin-left: auto; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-deep); background: var(--amber-soft); padding: 4px 9px; border-radius: var(--r-pill); }
.am-rows { padding: 18px 22px 4px; display: flex; flex-direction: column; gap: 11px; }
.am-row { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 500; color: var(--ink); }
.mk-ck { width: 20px; height: 20px; border-radius: 7px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }
.am-add { margin: 18px 22px 0; width: calc(100% - 44px); padding: 14px; border-radius: var(--r-pill); background: #5E8E3E; color: #fff; font-weight: 600; font-size: 15px; font-family: var(--display); display: flex; align-items: center; justify-content: center; gap: 8px; transition: background .18s, transform .18s; }
.am-add:hover { background: #527d36; transform: translateY(-2px); }
.am-note { padding: 14px 22px 22px; font-size: 12px; color: var(--ink-3); text-align: center; }

.connect-mock { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: 0 40px 90px -40px rgba(0,0,0,0.6); padding: 22px; color: var(--ink); }
.cm-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cm-h { font-family: var(--display); font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.cm-time { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.cm-time .cm-d { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.cm-list { display: flex; flex-direction: column; gap: 9px; }
.cm-item { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-md); transition: border-color .2s, background .2s; }
.cm-item.is-on { border-color: var(--green); background: var(--green-soft); }
.cm-item:not(.is-on):hover { border-color: var(--amber-line); background: var(--amber-soft); }
.cm-logo { width: 36px; height: 36px; border-radius: 10px; background: var(--bg-kraft); color: var(--ink-2); display: grid; place-items: center; flex: none; }
.cm-name { font-size: 14.5px; font-weight: 600; font-family: var(--display); letter-spacing: -0.01em; }
.cm-state { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--amber-deep); }
.cm-state.on { color: var(--green); }
.cm-state .mk-ck { width: 17px; height: 17px; border-radius: 5px; }
.cm-foot { display: flex; align-items: center; gap: 9px; margin-top: 16px; font-size: 12.5px; color: var(--ink-2); }
.cm-foot .mk-ck { width: 18px; height: 18px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px; margin-top: 56px; }
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; display: flex; flex-direction: column;
}
.quote.feature { grid-row: span 1; background: var(--ink); color: var(--bg); }
.quote .qmark { font-family: var(--display); font-size: 44px; font-weight: 800; line-height: 0.6; color: var(--amber); height: 24px; }
.quote.feature .qmark { color: var(--d-amber); }
.quote blockquote { font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.35; margin: 18px 0 0; text-wrap: pretty; }
.quote.feature blockquote { font-size: 24px; }
.quote .qsmall { font-size: 15px; font-weight: 500; line-height: 1.5; color: var(--ink-2); margin-top: 14px; }
.quote .qauth { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 24px; }
.quote .qav { width: 40px; height: 40px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-deep); display: grid; place-items: center; font-weight: 800; font-family: var(--display); flex: none; }
.quote.feature .qav { background: rgba(255,255,255,0.1); color: var(--d-amber); }
.quote .qn { font-size: 13.5px; font-weight: 700; font-family: var(--display); }
.quote .qr { font-size: 12px; color: var(--ink-3); }
.quote.feature .qr { color: oklch(0.7 0.01 70); }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING BAND
   ============================================================ */
.pricing-band {
  margin-top: 0; border-radius: var(--r-xl); border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--sh-md);
  display: grid; grid-template-columns: 1.1fr 0.9fr; overflow: hidden;
}
.pb-left { padding: 48px; }
.pb-left .eyebrow { margin-bottom: 16px; }
.pb-left h3 { font-family: var(--display); font-size: 34px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
.pb-left p { font-size: 16px; color: var(--ink-2); line-height: 1.55; margin-top: 16px; max-width: 42ch; }
.pb-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pb-points li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink); }
.pb-points .ck { width: 20px; height: 20px; border-radius: 6px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }
.pb-right { background: var(--bg-kraft); border-left: 1px solid var(--line); padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.pb-right .pr-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.pb-right .pr-amt { font-family: var(--display); font-size: 52px; font-weight: 800; letter-spacing: -0.04em; margin-top: 8px; }
.pb-right .pr-amt small { font-size: 17px; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }
.pb-right .pr-sub { font-size: 13.5px; color: var(--ink-2); margin-top: 6px; line-height: 1.5; }
.pb-right .btn { margin-top: 24px; width: 100%; }
.pb-right .pr-fine { font-size: 12px; color: var(--ink-3); margin-top: 14px; text-align: center; }
@media (max-width: 820px) { .pricing-band { grid-template-columns: 1fr; } .pb-left, .pb-right { padding: 36px; } .pb-right { border-left: 0; border-top: 1px solid var(--line); } .pb-points { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA (dark)
   ============================================================ */
.final-cta { position: relative; overflow: hidden; text-align: center; padding: 130px 0; }
.final-cta .fc-wash {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 70% at 50% 0%, oklch(0.34 0.09 60), transparent 60%);
  opacity: 0.7;
}
.final-cta .wrap { position: relative; z-index: 2; }
.final-cta h2 { font-family: var(--display); font-size: clamp(40px, 6vw, 80px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.98; color: var(--d-ink); text-wrap: balance; }
.final-cta h2 .accent { color: var(--d-amber); }
.final-cta p { font-size: 18px; color: var(--d-ink-2); margin: 22px auto 0; max-width: 48ch; line-height: 1.55; }
.final-cta .cta-actions { display: flex; gap: 12px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.final-cta .fc-fine { margin-top: 26px; font-family: var(--mono); font-size: 12px; color: var(--d-ink-3); letter-spacing: 0.04em; }

/* tiny stat ticker used in a couple places */
[data-count] { font-variant-numeric: tabular-nums; }
