/* ============================================================
   LIVE RESKIN LAYER
   The live sitework.uk page set, restyled in the ecosystem
   visual system. Loads AFTER styles.css (the ecosystem base).
   ============================================================ */

:root {
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;
}

/* live copy uses <em> as the amber accent */
em {
  color: var(--amber);
  font-style: normal;
}

/* mono kicker used across the live pages */
.kicker {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.mono {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* the live nav carries more links than the ecosystem build */
.site-header {
  width: min(calc(100% - 2rem), 920px);
}

/* TEMP — pricing hidden while a custom-priced client deal is live.
   Mirrors the rule on the live site. */
.price-hide {
  display: none !important;
}

/* ---------- HOME HERO (centred, rotating words) ---------- */
.hero--home {
  min-height: auto;
  padding-block: clamp(7rem, 13vw, 11rem) clamp(4rem, 8vw, 6rem);
  text-align: center;
}

.hero--home .hero-copy {
  max-width: 62rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--home h1 {
  max-width: 17ch;
  font-size: clamp(2.9rem, 6.6vw, 5.6rem);
}

.hero--home .lead {
  margin-inline: auto;
  margin-bottom: 0;
}

.hero--home .lead strong {
  color: var(--ink);
  font-weight: 600;
}

.hero--home .actions {
  justify-content: center;
  margin-top: 2.2rem;
}

.rotate-wrap {
  display: inline-block;
  position: relative;
  min-width: 7.2ch;
  text-align: left;
}

.rword {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--amber);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rword.active {
  position: relative;
  opacity: 1;
  transform: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.6rem;
  margin-top: 2.4rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-proof svg,
.hero-proof .amber {
  color: var(--amber);
}

/* ---------- TICKER ---------- */
.ticker {
  overflow: hidden;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 2.6rem;
  animation: tick 32s linear infinite;
  color: var(--muted-2);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.6rem;
}

.ticker-track span::after {
  content: "";
  width: 0.38rem;
  aspect-ratio: 1;
  background: var(--amber);
  opacity: 0.7;
  transform: rotate(45deg);
}

@keyframes tick {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- TAXMAN (copy left, receipt right) ---------- */
.tax-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.tax-copy h2 {
  max-width: 15ch;
}

.tax-copy p {
  max-width: 46ch;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.tax-visual {
  display: flex;
  justify-content: center;
}

.receipt {
  position: relative;
  width: min(355px, 100%);
  padding: 1.9rem 1.7rem 1.6rem;
  background: #f2f0ea;
  color: #1f1b16;
  font-family: var(--mono);
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.55));
  transform: rotate(-1.8deg);
  -webkit-mask:
    linear-gradient(#000 0 0) top/100% calc(100% - 9px) no-repeat,
    conic-gradient(from -45deg at bottom, #0000 25%, #000 0) bottom/15px 9px repeat-x;
  mask:
    linear-gradient(#000 0 0) top/100% calc(100% - 9px) no-repeat,
    conic-gradient(from -45deg at bottom, #0000 25%, #000 0) bottom/15px 9px repeat-x;
}

.r-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.r-logo {
  font-family: var(--font);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.r-logo span {
  color: #b57708;
}

.r-tag {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
}

.r-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.55rem;
  color: #7a7064;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.r-rule {
  margin: 0.95rem 0;
  border-top: 1.5px dashed #cabfae;
}

.r-items {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  list-style: none;
}

.r-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
}

.r-items b {
  font-weight: 600;
}

.r-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.r-stamp {
  display: inline-block;
  margin-top: 1.15rem;
  padding: 0.32rem 0.62rem;
  border: 2px solid #b57708;
  border-radius: 4px;
  color: #b57708;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  transform: rotate(-4deg);
}

.r-foot {
  margin-top: 0.95rem;
  color: #8c8275;
  font-size: 0.56rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.r-barcode {
  height: 32px;
  margin-top: 1.05rem;
  background: repeating-linear-gradient(90deg, #1f1b16 0 2px, #0000 2px 4px, #1f1b16 4px 6.5px, #0000 6.5px 9px, #1f1b16 9px 10px, #0000 10px 13px);
}

/* ---------- SECTION HEAD (live two-column heading) ---------- */
.sec-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 1.5rem 3rem;
  margin-bottom: 3.2rem;
}

.sec-head p {
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.6;
}

.sec-head--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

/* ---------- WORK GRID ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.work-card {
  position: relative;
  min-height: 232px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.work-card:hover {
  border-color: var(--amber-line);
  background: var(--panel-2);
  transform: translateY(-4px);
}

.wtag {
  margin-bottom: 0.7rem;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card h3 {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.work-card .go {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.work-card:hover .go {
  color: var(--ink);
}

.work-card .arrow {
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.work-card:hover .arrow {
  transform: rotate(45deg) translate(2px, -2px);
}

.work-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  max-width: 70ch;
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.work-note svg {
  flex: none;
  margin-top: 2px;
  color: var(--amber);
}

.work-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.7rem;
  color: var(--amber);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.work-all-link:hover {
  color: var(--amber-bright);
}

/* ---------- TOOLBOX ---------- */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.tool {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.tool .ic {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border: 1px solid var(--amber-line);
  border-radius: 12px;
  background: var(--amber-soft);
  color: var(--amber);
}

.tool h4 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.tool p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---------- PRICING (hidden on live via .price-hide, styled anyway) ---------- */
.bill-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.bill-toggle {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}

.bt-opt {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: none;
  color: var(--muted);
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.bt-opt.active {
  background: var(--amber);
  color: #171004;
}

.bt-save {
  color: var(--amber);
  font-size: 0.74rem;
}

.bt-opt.active .bt-save {
  color: #171004;
}

/* ---------- HOME PRICING: one joined offer, not two floating cards ---------- */
.pricing-section .wrap {
  max-width: 1120px;
}

.pricing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(18rem, 0.74fr);
  align-items: end;
  gap: 1.5rem clamp(2rem, 6vw, 6rem);
  margin-bottom: 3.1rem;
}

.pricing-intro .kicker {
  margin-bottom: 0.95rem;
}

.pricing-intro h2 {
  max-width: 13ch;
  margin: 0;
}

.pricing-intro > p {
  max-width: 47ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.pricing-board {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  border: 1px solid var(--line-strong);
  background: rgba(11, 12, 14, 0.78);
  box-shadow: var(--shadow);
}

.website-offer,
.reach-offer {
  min-width: 0;
  padding: clamp(1.55rem, 3.7vw, 3.1rem);
}

.website-offer {
  display: flex;
  flex-direction: column;
}

.reach-offer {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 100% 0, rgba(244, 160, 0, 0.16), transparent 17rem),
    rgba(255, 255, 255, 0.025);
}

.offer-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.7fr);
  gap: 1rem 2rem;
  align-items: end;
}

.offer-head h3,
.reach-offer h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.offer-head > p,
.reach-lede {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.price-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: clamp(1.75rem, 3.7vw, 2.75rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-steps > div {
  padding: 1.35rem 1.2rem 1.35rem 0;
}

.price-steps > div + div {
  padding-right: 0;
  padding-left: 1.2rem;
  border-left: 1px solid var(--line);
}

.price-steps span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-steps strong,
.reach-price strong {
  display: block;
  color: var(--amber);
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.price-steps small {
  margin-left: 0.15rem;
  color: var(--muted);
  font-size: 0.3em;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.price-steps p {
  max-width: 24ch;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.website-includes h4 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.website-includes ul,
.reach-offer ul {
  display: grid;
  gap: 0.75rem 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.website-includes ul {
  grid-template-columns: 1fr 1fr;
}

.website-includes li,
.reach-offer li {
  position: relative;
  padding-left: 1rem;
  color: #d5d8db;
  font-size: 0.88rem;
  line-height: 1.5;
}

.website-includes li::before,
.reach-offer li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  transform: rotate(45deg);
  background: var(--amber);
  content: "";
}

.website-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.2rem;
  margin-top: auto;
  padding-top: 1.7rem;
}

.text-link {
  color: var(--amber);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.reach-name {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reach-price {
  margin: clamp(1.7rem, 3.4vw, 2.7rem) 0 1.15rem;
}

.reach-price span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.reach-offer ul {
  margin-top: 1.55rem;
}

.reach-offer li strong {
  color: var(--ink);
}

.reach-note {
  margin: auto 0 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.76rem;
  line-height: 1.5;
}

.pricing-note {
  max-width: 76ch;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.6;
}

.pricing-note strong {
  color: var(--ink);
}

@media (max-width: 820px) {
  .pricing-intro,
  .pricing-board {
    grid-template-columns: 1fr;
  }

  .pricing-intro {
    gap: 1rem;
  }

  .pricing-intro h2 {
    max-width: 17ch;
  }

  .pricing-intro > p {
    max-width: 58ch;
  }

  .reach-offer {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .website-offer,
  .reach-offer {
    padding: 1.45rem;
  }

  .offer-head,
  .price-steps,
  .website-includes ul {
    grid-template-columns: 1fr;
  }

  .offer-head {
    gap: 0.9rem;
  }

  .price-steps > div,
  .price-steps > div + div {
    padding: 1.1rem 0;
  }

  .price-steps > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

/* ---------- PROCESS STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.step .snum {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.step--counter::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.step h3 {
  margin: 0.8rem 0 0.6rem;
  font-size: 1.35rem;
}

.step p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.step p em {
  color: var(--ink);
  font-style: italic;
}

.free-flag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.32rem 0.62rem;
  border: 1px solid var(--amber-line);
  border-radius: 99px;
  background: var(--amber-soft);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- FAQ (ecosystem faq-list, wider) ---------- */
.faq-shell {
  max-width: 860px;
  margin-inline: auto;
}

.faq-list details p strong {
  color: var(--ink);
}

.faq-list details p a {
  color: var(--amber);
}

/* ---------- BLOG HUB ---------- */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}

.fpill {
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fpill:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.fpill.active {
  border-color: var(--amber);
  background: var(--amber);
  color: #171004;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.blog-card:hover {
  border-color: var(--amber-line);
  background: var(--panel-2);
  transform: translateY(-4px);
}

.blog-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.blog-card.hide {
  display: none;
}

.blog-more {
  display: block;
  margin-top: 2.4rem;
  text-align: center;
}

/* ---------- APPLY FORM (centred shell on the ecosystem form styles) ---------- */
.form-shell {
  max-width: 880px;
  margin-inline: auto;
}

.tier-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tier-pick label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: #dadddf;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.tier-pick input {
  display: none;
}

.tier-pick .radio {
  width: 15px;
  height: 15px;
  border: 2px solid var(--muted-2);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.tier-pick input:checked + .radio {
  border-color: var(--amber);
  background: var(--amber);
  box-shadow: inset 0 0 0 3px #08090b;
}

.tier-pick label:has(input:checked) {
  border-color: var(--amber);
}

.consent a {
  color: var(--amber);
}

.consent strong {
  color: var(--ink);
}

.req {
  color: var(--amber);
}

.form-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-foot .note {
  max-width: 42ch;
  color: var(--muted-2);
  font-size: 0.8rem;
}

.hp {
  position: absolute;
  left: -9999px;
}

.sent {
  display: none;
  padding: 2.5rem 1rem;
  text-align: center;
}

.sent.show {
  display: block;
}

.sent h3 {
  margin-bottom: 0.7rem;
  font-size: 2rem;
}

.sent h3 span {
  color: var(--amber);
}

.sent p {
  max-width: 48ch;
  margin-inline: auto;
  line-height: 1.6;
}

.field select {
  appearance: none;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f4a000' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.field select option {
  background: var(--panel-2);
  color: var(--ink);
}

.field select:invalid,
.field select option[value=""] {
  color: #70757c;
}

/* ---------- FOUR-STEP MOCKUP ENQUIRY ---------- */
.apply-intro {
  max-width: 52ch;
  margin: 0.9rem auto 0;
}

.form-wizard {
  display: block;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at top right, rgba(244, 160, 0, 0.08), transparent 34%),
    var(--panel);
}

.wizard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.wizard-kicker {
  display: block;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wizard-step-text {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.wizard-progress {
  display: flex;
  gap: 0.45rem;
}

.wizard-progress i {
  display: block;
  width: 1.6rem;
  height: 0.32rem;
  border-radius: 99px;
  background: var(--line-strong);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.wizard-progress i.is-active {
  background: var(--amber);
  transform: scaleX(1.05);
}

.wizard-panel {
  min-width: 0;
  margin: 0;
  padding: clamp(1.8rem, 4vw, 3rem) 0;
  border: 0;
}

.wizard-panel legend {
  max-width: 19ch;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.wizard-panel > p {
  max-width: 56ch;
  margin: 0.9rem 0 1.8rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.wizard-options label {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  min-height: 7.4rem;
  padding: 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.012);
  cursor: pointer;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.wizard-options label:hover {
  border-color: rgba(244, 160, 0, 0.58);
  transform: translateY(-2px);
}

.wizard-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.wizard-options b,
.wizard-options small {
  display: block;
}

.wizard-options b {
  color: var(--ink);
  font-size: 1.03rem;
  letter-spacing: -0.02em;
}

.wizard-options small {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.wizard-options i {
  width: 1.28rem;
  height: 1.28rem;
  border: 1px solid var(--muted-2);
  border-radius: 50%;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.wizard-options label:has(input:checked) {
  border-color: var(--amber);
  background: rgba(244, 160, 0, 0.08);
}

.wizard-options label:has(input:checked) i {
  border: 5px solid var(--amber);
  background: #121315;
  box-shadow: 0 0 0 3px rgba(244, 160, 0, 0.12);
}

.wizard-options label:has(input:focus-visible),
.wizard-back:focus-visible,
.wizard-next:focus-visible,
.wizard-submit:focus-visible {
  outline: 3px solid rgba(244, 160, 0, 0.55);
  outline-offset: 3px;
}

.wizard-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wizard-fields .field {
  color: #dadddf;
  font-size: 0.84rem;
  font-weight: 600;
}

.optional {
  margin-left: 0.25rem;
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 500;
}

.form-wizard .consent {
  margin-top: 1.25rem;
}

.wizard-foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.wizard-back {
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.wizard-back:hover {
  color: var(--ink);
}

.wizard-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.78rem;
  text-align: center;
}

.form-error {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(219, 94, 77, 0.65);
  border-radius: 10px;
  background: rgba(219, 94, 77, 0.1);
  color: #f2b1a8;
  font-size: 0.88rem;
}

/* ---------- SHORT MOCKUP ENQUIRY ---------- */
.simple-apply {
  display: grid;
  grid-template-columns: minmax(13rem, 0.7fr) minmax(0, 1.3fr);
  padding: 0;
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at top right, rgba(244, 160, 0, 0.08), transparent 34%),
    var(--panel);
}

.simple-apply__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border-right: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(244, 160, 0, 0.11), transparent 58%);
}

.simple-apply__eyebrow,
.simple-apply__time {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.simple-apply__intro h3 {
  max-width: 7ch;
  margin: auto 0 1rem;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.simple-apply__intro p {
  max-width: 27ch;
  margin: 0 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.simple-apply__time {
  margin-top: 2rem;
  color: var(--muted-2);
  line-height: 1.45;
}

.simple-apply__content {
  padding: clamp(1.3rem, 3vw, 2.25rem);
}

.simple-apply__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.simple-apply .field {
  color: #dadddf;
  font-size: 0.84rem;
  font-weight: 600;
}

.simple-apply__email {
  max-width: calc(50% - 0.5rem);
  margin-top: 1rem;
}

.simple-apply .consent {
  margin-top: 1.35rem;
}

.simple-apply__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.simple-apply__foot p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted-2);
  font-size: 0.78rem;
  line-height: 1.5;
}

.founder-points .button {
  justify-self: start;
  margin-top: 1.25rem;
}

/* ---------- NAV PAGE RESKIN ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(8rem, 15vw, 12rem) clamp(4.5rem, 8vw, 7rem);
}

.page-hero::before {
  position: absolute;
  top: 10%;
  right: -8%;
  width: min(38rem, 55vw);
  aspect-ratio: 1;
  border: 1px solid rgba(244, 160, 0, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(244, 160, 0, 0.025), 0 0 0 12rem rgba(244, 160, 0, 0.015);
  content: "";
  pointer-events: none;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  max-width: 16ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.9rem, 6.1vw, 5.2rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.page-hero .lead {
  max-width: 62ch;
}

.page-hero__actions {
  margin-top: 2.2rem;
}

.page-hero--about .ab-grid,
.page-hero--verdict .tv-grid {
  align-items: center;
}

.page-hero--about::before {
  top: auto;
  right: -12%;
  bottom: -32%;
  width: min(44rem, 62vw);
}

.page-hero--verdict::before {
  top: 5%;
  right: 2%;
  width: min(28rem, 40vw);
  border-color: rgba(244, 160, 0, 0.23);
}

.page-mast {
  position: relative;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 700px) {
  .wizard-options,
  .wizard-fields {
    grid-template-columns: 1fr;
  }

  .simple-apply__fields {
    grid-template-columns: 1fr;
  }

  .simple-apply {
    grid-template-columns: 1fr;
  }

  .simple-apply__intro {
    min-height: auto;
    padding-bottom: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .simple-apply__intro h3 {
    max-width: none;
    margin: 1.4rem 0 0.5rem;
  }

  .simple-apply__intro p {
    max-width: 52ch;
  }

  .simple-apply__time {
    margin-top: 1.35rem;
  }

  .simple-apply__email {
    max-width: none;
  }

  .wizard-options label {
    min-height: auto;
  }

  .wizard-foot {
    grid-template-columns: auto 1fr;
  }

  .wizard-note {
    display: none;
  }

  .wizard-next,
  .wizard-submit {
    justify-self: end;
  }

  .page-hero {
    padding-block: 7.5rem 4.5rem;
  }

  .page-hero::before {
    right: -35%;
    width: 23rem;
  }
}

/* ---------- MOBILE STICKY CTA BAR ---------- */
.mob-bar {
  display: none;
}

/* ---------- WORK PAGE ---------- */
.statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}

.stat .n {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.stat .l {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.live-case {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.live-case .copy h3 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.live-case .copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.live-case .copy p + p {
  margin-top: 1rem;
}

.live-case .copy .button {
  margin-top: 1.8rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(244, 160, 0, 0.6);
  animation: live-pulse 2.4s infinite;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 160, 0, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(244, 160, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 160, 0, 0);
  }
}

.browser {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.browser .bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: var(--panel-2);
}

.browser .dots {
  display: flex;
  gap: 0.4rem;
}

.browser .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.browser .url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  overflow: hidden;
  padding: 0.35rem 0.7rem;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.browser .url svg {
  flex: none;
  width: 11px;
  height: 11px;
  color: var(--amber);
}

.browser .screen {
  padding: 2rem 1.9rem 1.9rem;
}

.browser .screen .eyebrow-line {
  margin-bottom: 0.7rem;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.browser .screen .big {
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.browser .screen .sub {
  max-width: 42ch;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.browser .metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.browser .metrics div {
  padding: 0.85rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.browser .metrics .mn {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.browser .metrics .ml {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
}

.trade-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}

.trade-chip {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.trade-chip:hover {
  border-color: var(--amber-line);
  background: var(--panel-2);
  transform: translateY(-3px);
}

.trade-chip .ic {
  width: 24px;
  height: 24px;
  color: var(--amber);
}

.trade-chip .tn {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
}

.trade-chip .tl {
  color: var(--muted);
  font-size: 0.78rem;
}

/* ---------- ABOUT PAGE ---------- */
.ab-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  align-items: center;
  gap: clamp(2.4rem, 6vw, 5.5rem);
}

.portrait {
  position: relative;
  max-width: 440px;
}

.portrait img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait .tagchip {
  position: absolute;
  bottom: 22px;
  left: -14px;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  background: #f2f0ea;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.5);
  color: #1f1b16;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait .tagchip b {
  color: #b57708;
}

.story-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 3.2rem;
  margin-top: 2.4rem;
}

.story-cols p {
  color: #d5d8db;
  font-size: 1.04rem;
  line-height: 1.7;
}

.story-cols p + p {
  margin-top: 1.1rem;
}

.story-cols .muted {
  color: var(--muted);
}

.sign {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.4rem;
}

.sign .name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.sign .role {
  margin-top: 0.2rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 3rem;
}

.vitem {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.vitem .ic {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  margin-top: 0.15rem;
  color: var(--amber);
}

.vitem h3 {
  margin-bottom: 0.3rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.vitem p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* ---------- TRADE VERDICT PAGE ---------- */
.tv-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(2.4rem, 6vw, 5rem);
}

.tv-grid .lede strong {
  color: var(--ink);
  font-weight: 600;
}

/* The clipping keeps The Trade Verdict's own print identity */
.clip-scene {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.clip {
  position: relative;
  padding: 1.9rem 1.9rem 1.5rem;
  border-radius: 4px;
  background: #f5f2ec;
  color: #221e18;
  font-family: "Hanken Grotesk", var(--font);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 30px 70px -18px rgba(0, 0, 0, 0.75), 0 8px 22px -8px rgba(0, 0, 0, 0.5);
  transform: rotate(-1.6deg);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.clip-scene:hover .clip {
  transform: rotate(-0.4deg);
}

.clip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(115deg, transparent 40%, rgba(34, 30, 24, 0.03) 100%);
  pointer-events: none;
}

.clip-mast {
  position: relative;
  padding-bottom: 0.55rem;
  border-bottom: 3px solid #221e18;
  text-align: center;
}

.clip-mast::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: #221e18;
}

.clip-mast .tv-name {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.clip-mast .tv-strap {
  margin-top: 0.35rem;
  color: #4c463e;
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.clip-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 1rem 0 0.9rem;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.clip-meta .cat {
  color: #a22318;
}

.clip-meta .date {
  color: #837b70;
}

.clip-h {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.62rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.12;
  text-wrap: balance;
}

.clip-deck {
  margin-top: 0.6rem;
  color: #4c463e;
  font-size: 0.85rem;
  line-height: 1.55;
}

.scorecard {
  margin-top: 1.15rem;
  border-top: 1px solid #d4cec2;
}

.sc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.68rem 0;
  border-bottom: 1px solid #d4cec2;
}

.sc-row.win {
  margin: 0 -0.6rem;
  padding-right: 0.6rem;
  padding-left: 0.6rem;
  background: linear-gradient(90deg, rgba(162, 35, 24, 0.06), transparent 70%);
}

.grade {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
}

.sc-row.win .grade {
  background: #a22318;
  color: #f5f2ec;
}

.sc-row:not(.win) .grade {
  border: 1.5px solid #d4cec2;
  color: #837b70;
}

.sc-name {
  min-width: 0;
}

.sc-name b {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.sc-name span {
  display: block;
  margin-top: 0.14rem;
  color: #837b70;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sc-name .redact {
  display: inline-block;
  height: 0.62rem;
  border-radius: 2px;
  background: #d4cec2;
  vertical-align: middle;
}

.sc-score {
  text-align: right;
}

.sc-score .num {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1;
}

.sc-row.win .sc-score .num {
  color: #a22318;
}

.sc-row:not(.win) .sc-score .num {
  color: #837b70;
}

.sc-score .pick {
  display: block;
  margin-top: 0.2rem;
  color: #a22318;
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.clip-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.clip-foot .src {
  color: #837b70;
}

.clip-foot .lnk {
  color: #a22318;
  text-decoration: none;
}

.clip-foot .lnk:hover {
  text-decoration: underline;
}

.stamp {
  position: absolute;
  top: -26px;
  right: -20px;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 2.5px solid #a22318;
  border-radius: 50%;
  background: rgba(245, 242, 236, 0.92);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.55);
  color: #a22318;
  text-align: center;
  transform: rotate(9deg);
}

.stamp::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid #a22318;
  border-radius: 50%;
}

.stamp .in {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  line-height: 1.7;
  text-transform: uppercase;
}

.stamp .in b {
  display: block;
  margin: 0.1rem 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.clip-caption {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.clip-caption a {
  color: var(--amber);
  text-decoration: none;
}

.clip-caption a:hover {
  text-decoration: underline;
}

.stat-strip {
  border-top: 1px solid var(--line);
}

.stat-strip .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.stat-strip .stat {
  padding: 2.1rem 1.5rem;
  text-align: center;
}

.stat-strip .stat + .stat {
  border-left: 1px solid var(--line);
}

.stat-strip b {
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stat-strip span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.wcard {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.wcard .ic {
  width: 28px;
  height: 28px;
  margin-bottom: 1.1rem;
  color: var(--amber);
}

.wcard h3 {
  margin-bottom: 0.55rem;
  font-size: 1.3rem;
}

.wcard p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.wcard p strong {
  color: var(--ink);
  font-weight: 600;
}

.badge-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem 2.4rem;
  margin-top: 3.2rem;
  padding: 1.7rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.15rem;
  border-radius: 6px;
  background: #f5f2ec;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.55);
  color: #221e18;
  transform: rotate(-1deg);
}

.badge .bdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a22318;
}

.badge .btxt {
  color: #4c463e;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.badge .btxt b {
  display: block;
  margin-top: 0.15rem;
  color: #221e18;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
}

.badge-band p {
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.badge-band p strong {
  color: var(--ink);
  font-weight: 600;
}

.incl-box {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
  gap: 1.6rem 3rem;
  padding: 2.6rem 2.4rem;
  border: 1px solid var(--amber-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(244, 160, 0, 0.08), var(--panel));
}

.incl-box .tag {
  display: inline-block;
  padding: 0.28rem 0.62rem;
  border-radius: 99px;
  background: var(--amber-soft);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.incl-box h2 {
  margin: 0.95rem 0 0.55rem;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.incl-box .sub {
  max-width: 40ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.incl-box .price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1.3rem;
  color: var(--ink);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.incl-box .price small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.incl-box ul {
  display: grid;
  gap: 0.64rem;
  margin: 0.3rem 0 0;
  padding: 0;
  list-style: none;
}

.incl-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #d5d8db;
  font-size: 0.94rem;
  line-height: 1.5;
}

.incl-box li svg {
  flex: none;
  margin-top: 0.2rem;
}

.incl-box .foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 1.6rem;
  margin-top: 0.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.incl-box .note {
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* ---------- BLOG INDEX PAGE ---------- */
.blog-mast {
  padding-block: clamp(7rem, 12vw, 10rem) 3rem;
}

.blog-mast h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 5.8vw, 4.6rem);
}

.blog-mast > p:last-child {
  max-width: 60ch;
  font-size: 1.06rem;
  line-height: 1.62;
}

.blog-feature {
  margin-bottom: 3rem;
}

.blog-feature a {
  display: block;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 1px solid var(--amber-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, rgba(244, 160, 0, 0.07), transparent 45%), var(--panel);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-feature a:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}

.blog-feature h2 {
  max-width: 24ch;
  margin: 0.9rem 0 0.7rem;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
}

.blog-feature .d {
  display: block;
  max-width: 78ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.blog-index-grid .card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.blog-index-grid .card:hover {
  border-color: var(--amber-line);
  background: var(--panel-2);
  transform: translateY(-4px);
}

.blog-index-grid .card .mono {
  margin-bottom: 0.7rem;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.blog-index-grid .card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.blog-index-grid .card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* ---------- LEGAL PAGES ---------- */
.legal-main {
  max-width: 780px;
  margin-inline: auto;
  padding-top: clamp(6rem, 10vw, 8rem);
}

.crumb {
  color: var(--muted-2);
  font-size: 0.8rem;
}

.crumb a {
  color: var(--muted-2);
  text-decoration: none;
}

.crumb a:hover {
  color: var(--ink);
}

.post-head {
  padding: 1.4rem 0 0.5rem;
}

.post-head h1 {
  margin: 0.9rem 0 0.8rem;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
}

.post-head .upd {
  color: var(--muted-2);
  font-size: 0.84rem;
}

.prose {
  padding: 0.8rem 0 2rem;
}

.prose .lede {
  margin: 0.4rem 0 0.8rem;
  color: #d5d8db;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}

.prose h2 {
  margin: 2.6rem 0 0.6rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.prose h3 {
  margin: 1.5rem 0 0.3rem;
  font-size: 1.1rem;
}

.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.65;
}

.prose p {
  max-width: none;
  margin: 0 0 0.9rem;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose strong {
  color: var(--ink);
}

.prose a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose table {
  width: 100%;
  margin: 0.9rem 0 1.3rem;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.prose th,
.prose td {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--panel-2);
  color: var(--ink);
  font-weight: 600;
}

.prose .note {
  margin: 1.2rem 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--amber);
  border-radius: 0 10px 10px 0;
  background: var(--panel-2);
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- CTA BAND (about / work / trade-verdict closer) ---------- */
.cta-band {
  padding: clamp(3.5rem, 8vw, 7rem) 1rem;
  text-align: center;
}

.cta-band h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.cta-band p {
  max-width: 48ch;
  margin: 1.3rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta-band .actions {
  justify-content: center;
  margin-top: 2.2rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .tax-grid,
  .tv-grid,
  .ab-grid,
  .live-case {
    grid-template-columns: 1fr;
  }

  .clip-scene {
    justify-self: center;
    margin-top: 0.6rem;
  }

  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-grid,
  .blog-grid,
  .blog-index-grid {
    grid-template-columns: 1fr 1fr;
  }

  .statbar {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 1.4rem;
  }

  .trade-row {
    grid-template-columns: 1fr 1fr;
  }

  .portrait {
    max-width: 380px;
  }
}

@media (max-width: 820px) {
  .sec-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .work-grid,
  .steps,
  .blog-grid,
  .blog-index-grid,
  .why-cards {
    grid-template-columns: 1fr;
  }

  .story-cols,
  .vlist {
    grid-template-columns: 1fr;
  }

  .vlist {
    gap: 0;
  }

  .stat-strip .row {
    grid-template-columns: 1fr;
  }

  .stat-strip .stat + .stat {
    border-top: 1px solid var(--line);
    border-left: none;
  }

  .stat-strip .stat {
    padding: 1.5rem 1rem;
  }

  .incl-box {
    grid-template-columns: 1fr;
    padding: 2rem 1.6rem;
  }

  .receipt {
    transform: rotate(-1deg);
  }

  .stamp {
    top: -18px;
    right: -8px;
    width: 92px;
    height: 92px;
  }

  .stamp .in {
    font-size: 0.44rem;
  }

  .stamp .in b {
    font-size: 0.86rem;
  }

  /* sticky bottom CTA bar, as on the live site */
  .mob-bar {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    padding: 0.7rem 5vw calc(0.7rem + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(8, 9, 11, 0.94);
    backdrop-filter: blur(12px);
  }

  .mob-bar .button {
    justify-content: center;
    width: 100%;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }
}

@media (max-width: 620px) {
  .tool-grid,
  .trade-row {
    grid-template-columns: 1fr;
  }

  .ticker {
    padding: 0.8rem 0;
  }

  .ticker-track {
    gap: 1.8rem;
    font-size: 0.92rem;
  }

  .ticker-track span {
    gap: 1.8rem;
  }

  .hero-proof {
    margin-top: 1.8rem;
  }

  .clip {
    padding: 1.5rem 1.3rem 1.2rem;
  }

  .clip-mast {
    padding-right: 78px;
    text-align: left;
  }

  .clip-mast .tv-name {
    font-size: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  .live-dot {
    animation: none;
  }

  .rword {
    transition: none;
  }

  .work-card:hover,
  .blog-card:hover,
  .trade-chip:hover,
  .blog-feature a:hover,
  .blog-index-grid .card:hover {
    transform: none;
  }
}
