/* ============================================================
   NASBA — styles.css
   Implements nasba-design-system.md. Mobile-first.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --paper: #F6F4FB;
  --paper-raised: #FFFFFF;
  --ink: #0F051E;
  --ink-60: rgba(15, 5, 30, 0.6);
  --ink-15: rgba(15, 5, 30, 0.15);
  --pink: #F31DAC;
  --cyan: #2DB9FB;
  --green: #27E65F;
  --purple: #613C9E;
  --violet-soft: #7572BB;
  --holo-gradient: linear-gradient(100deg, #F31DAC 0%, #7572BB 30%, #2DB9FB 60%, #27E65F 100%);

  --shadow: 4px 4px 0 var(--ink);
  --shadow-pink: 4px 4px 0 var(--pink);
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 400; /* Archivo Black is single-weight */
}
h1 { font-size: 40px; line-height: 0.95; }
h2 { font-size: 30px; line-height: 1.0; }
h3 { font-family: var(--font-body); font-weight: 700; font-size: 20px; line-height: 1.2; }
h4 { font-family: var(--font-body); font-weight: 700; font-size: 17px; line-height: 1.2; }

p + p { margin-top: 16px; }
h1, h2 { margin-bottom: 24px; }
h3 { margin-bottom: 8px; }

a { color: inherit; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--cyan);
}

/* ---------- 3. Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section { padding: 64px 0; }

.section__head { margin-bottom: 32px; max-width: 720px; }
.section__head p:not(.eyebrow) { color: var(--ink-60); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple);
  margin-bottom: 16px;
}

.footnote, .caption {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-60);
}

.text-link {
  color: var(--pink);
  font-weight: 700;
  text-decoration-thickness: 2px;
}

/* Highlight word effects */
.hl { display: inline-block; padding: 0 0.15em; }
.hl--pink { background: var(--pink); color: var(--ink); transform: rotate(-1.5deg); }
.hl--green { background: var(--green); color: var(--ink); transform: rotate(-1.5deg); }
.hl--outline {
  padding: 0;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 14px 28px;
  min-height: 48px;
  box-shadow: var(--shadow);
  background: var(--paper-raised);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.btn:hover, .btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn--primary { background: var(--pink); }
.btn--secondary { background: var(--paper-raised); }
.btn--compact { padding: 10px 18px; min-height: 40px; }
.btn--block { width: 100%; }

/* ---------- 5. Badges, chips, marks ---------- */
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--green);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 4px 8px;
  transform: rotate(-2deg);
}

.chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-raised);
}

.mark {
  font-family: var(--font-mono);
  font-weight: 700;
  flex: 0 0 auto;
}
.mark--x { color: var(--pink); }
.mark--check { color: var(--purple); }
.mark--green { color: var(--green); }

/* ---------- 6. Cards & lists ---------- */
.card {
  background: var(--paper-raised);
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: 20px;
}
.card--featured { box-shadow: var(--shadow-pink); }
.card--flush { padding: 0; overflow: hidden; }

.check-list { list-style: none; }
.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-15);
}
.check-list li:last-child { border-bottom: none; }
.check-list li p { margin: 0; }

/* ---------- 7. Grids / columns ---------- */
.grid { display: grid; gap: 16px; }
.two-col { display: grid; gap: 32px; }

/* ---------- 8. Pattern treatments ---------- */
.tape {
  background-image: url('assets/pattern-1.jpg');
  background-size: 400px auto;
  background-repeat: repeat-x;
}
.tape--divider {
  height: 12px;
  margin-top: 64px;
  transform: rotate(-1deg) scaleX(1.05);
}

.sticker {
  background-image: url('assets/pattern-2.jpg');
  background-size: cover;
  clip-path: polygon(2% 8%, 98% 0%, 100% 90%, 94% 100%, 4% 96%, 0% 30%);
}
.sticker-anchor { position: relative; }
.sticker--tr {
  position: absolute;
  top: -24px;
  right: -8px;
  width: 140px;
  height: 90px;
  transform: rotate(2deg);
  z-index: 0;
}
.sticker-anchor .card { position: relative; z-index: 1; }
.sticker--inline {
  width: 200px;
  height: 110px;
  margin-top: 32px;
  transform: rotate(-3deg);
  display: none;
}

/* ---------- 9. Navbar ---------- */
.navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 24px);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.navbar__logo {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1;
}
.navbar__links { display: none; z-index: 1; }
.navbar__links a {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 8px 4px;
}
.navbar__links a:hover { color: var(--pink); }
.navbar__actions { display: flex; align-items: center; gap: 12px; z-index: 1; }
.navbar__pattern {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 8px;
  background-image: url('assets/pattern-1.jpg');
  background-size: 300px auto;
  background-repeat: repeat-x;
  opacity: 0.35;
  pointer-events: none;
}
.navbar__burger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
}
.navbar__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--paper);
  padding: 96px 20px 32px;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
.mobile-menu:not([hidden]) {
  display: flex;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 30px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-15);
}

/* ---------- 10. Hero ---------- */
.hero {
  position: relative;
  padding: 128px 0 64px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-stand.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url('assets/pattern-1.jpg');
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.22;
}
.hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(246, 244, 251, 0.92) 0%,
    rgba(246, 244, 251, 0.78) 45%,
    rgba(246, 244, 251, 0.6) 100%);
}
.hero__tape {
  position: absolute;
  top: 46%;
  left: -2%;
  width: 104%;
  height: 14px;
  transform: rotate(-1.5deg);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__subline { max-width: 520px; margin-bottom: 24px; }
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.hero__stats { display: flex; }
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
  border-left: 1px solid var(--ink-15);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat__value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
}
.stat__caption { font-size: 13px; line-height: 1.5; color: var(--ink-60); }

/* Hero carousel */
.carousel__label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.carousel {
  position: relative;
  max-width: 340px;
}
.carousel__slide {
  display: none;
  transform: rotate(1.5deg);
}
.carousel__slide.is-active {
  display: block;
  animation: slide-in 400ms ease;
}
@keyframes slide-in {
  from { opacity: 0; transform: rotate(1.5deg) translateX(16px); }
  to   { opacity: 1; transform: rotate(1.5deg) translateX(0); }
}

.listing-card {
  background: var(--paper-raised);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}
.listing-card__media {
  position: relative;
  border-bottom: 2px solid var(--ink);
}
.listing-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(100%);
}
.listing-card__badge {
  position: absolute;
  top: -10px;
  left: 12px;
  z-index: 1;
}
.listing-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.listing-card__body h3 { font-size: 18px; margin: 0; }
.listing-card__seller {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-60);
  margin: 0;
}
.listing-card__price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--pink);
  margin: 0 0 4px;
}
.carousel__dots {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--paper-raised);
  padding: 0;
}
.carousel__dot.is-active { background: var(--pink); }

/* ---------- 11. Ticker ---------- */
.ticker {
  height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}
.ticker__group {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}
.ticker__chip {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--ink);
  color: #FFFFFF;
  padding: 4px 10px;
}
.ticker__x {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--ink);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 12. Solution features ---------- */
.feature__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

/* ---------- 13. Steps ---------- */
.steps { display: flex; flex-direction: column; }
.step {
  padding: 24px 0;
  border-bottom: 1px solid var(--ink-15);
}
.step:last-child { border-bottom: none; }
.step__num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 28px;
  color: var(--purple);
  margin-bottom: 8px;
}

/* ---------- 14. Economics ---------- */
.econ-cta { margin-top: 32px; }
.econ-cta .btn { margin-top: 16px; }
.econ-tables { display: flex; flex-direction: column; gap: 24px; }

.table-head {
  padding: 16px 20px;
  border-bottom: 2px solid var(--ink);
}
.table-head h3 { margin: 0; }
.sale-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink-15);
}
.sale-row:last-child { border-bottom: none; }
.sale-row__label { font-weight: 700; }
.sale-row__caption { font-size: 13px; color: var(--ink-60); margin-top: 0 !important; }
.sale-row__value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}
.value-chip {
  background: var(--green);
  color: var(--ink);
  padding: 2px 10px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-size: 16px;
}

.table-scroll { overflow-x: auto; }
.compare {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}
.compare th {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: left;
  padding: 12px 20px;
  border-bottom: 2px solid var(--ink);
}
.compare td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--ink-15);
  font-size: 15px;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare__nasba { background: rgba(45, 185, 251, 0.15); }
.compare__nasba td:first-child { font-weight: 700; }

/* ---------- 15. Benefits ---------- */
.benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid var(--ink-15);
}
.benefit:last-child { border-bottom: none; }
.benefit__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  color: var(--purple);
}
.benefit p { color: var(--ink-60); }

/* ---------- 16. FAQ ---------- */
.faq details { border-bottom: 1px solid var(--ink-15); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__icon {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  flex: 0 0 auto;
  transition: transform 200ms ease;
}
.faq details[open] .faq__icon { transform: rotate(45deg); }
.faq details > p {
  padding: 0 32px 20px 0;
  color: var(--ink-60);
}

/* ---------- 17. Apply section ---------- */
.apply {
  position: relative;
  background: var(--purple);
  color: #FFFFFF;
  padding: 96px 0;
  overflow: hidden;
}
.apply__pattern {
  position: absolute;
  inset: 0;
  background-image: url('assets/pattern-2.jpg');
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.12;
  pointer-events: none;
}
.apply__inner { position: relative; z-index: 1; }
.apply__pitch h2 { color: #FFFFFF; }
.apply__pitch > p { margin-bottom: 24px; }
.check-list--onDark li { border-bottom-color: rgba(255, 255, 255, 0.15); }

.apply__card {
  color: var(--ink);
}
.apply__title {
  font-size: 24px;
  margin-bottom: 8px;
}
.apply__sub {
  font-size: 13px;
  color: var(--ink-60);
  margin-bottom: 24px;
}
.apply__note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-60);
  margin-top: 12px;
}
.apply__confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 0;
}
.apply__confirm[hidden] { display: none; }

/* Form fields */
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 12px 16px;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  width: 100%;
}
.field textarea { resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-60); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--cyan);
}
.field.has-error input { border-color: var(--pink); }
.field__error {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pink);
  margin-top: 8px;
}
.form-row { display: grid; gap: 0; }

/* ---------- 18. Footer ---------- */
.footer {
  background: var(--ink);
  color: #FFFFFF;
}
.footer__bar {
  height: 8px;
  background: var(--holo-gradient);
}
.footer__grid {
  display: grid;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer__tag { font-weight: 700; }
.footer__caption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px !important;
}
.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer__social a {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
}
.footer__social a:hover { color: var(--green); }
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__head {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 8px;
}
.footer__col a {
  text-decoration: none;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.footer__col a:hover { color: var(--green); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer__legal a { color: inherit; text-decoration: none; }
.footer__legal a:hover { color: var(--green); }

/* ---------- 19. Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 20. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  .carousel__slide.is-active { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
  .faq__icon { transition: none; }
}

/* ============================================================
   BREAKPOINT: md (≥768px)
   ============================================================ */
@media (min-width: 768px) {
  .container { padding-left: 32px; padding-right: 32px; }

  .grid--2 { grid-template-columns: 1fr 1fr; gap: 24px; }
  .grid--3 { grid-template-columns: 1fr 1fr; gap: 24px; }
  .two-col { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

  .form-row { grid-template-columns: 1fr 1fr; gap: 16px; }

  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }

  .steps { flex-direction: row; }
  .step {
    flex: 1;
    padding: 24px;
    border-bottom: none;
    border-right: 2px solid var(--ink);
  }
  .step:first-child { padding-left: 0; }
  .step:last-child { border-right: none; padding-right: 0; }
}

/* ============================================================
   BREAKPOINT: lg (≥1024px)
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --shadow: 6px 6px 0 var(--ink);
    --shadow-pink: 6px 6px 0 var(--pink);
  }

  html { scroll-padding-top: 110px; }

  .container { padding-left: 48px; padding-right: 48px; }
  .section { padding: 96px 0; }

  body { font-size: 17px; }
  h1 { font-size: 72px; }
  h2 { font-size: 48px; }
  h3 { font-size: 24px; }
  .eyebrow { font-size: 13px; }
  .btn { font-size: 15px; }

  .card { padding: 24px; }
  .card--flush { padding: 0; }
  .grid--3 { grid-template-columns: 1fr 1fr 1fr; }

  .two-col--40-60 { grid-template-columns: 4fr 6fr; }
  .two-col--33-67 { grid-template-columns: 1fr 2fr; }
  .two-col--45-55 { grid-template-columns: 45fr 55fr; }

  /* Navbar */
  .navbar { width: min(70%, 900px); }
  .navbar__links { display: flex; gap: 32px; }
  .navbar__burger { display: none; }

  /* Hero */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 96px;
  }
  .hero__inner {
    grid-template-columns: 58fr 42fr;
    align-items: center;
    gap: 64px;
    width: 100%;
  }
  .hero__tape { top: 37%; }
  .hero__carousel { justify-self: end; }
  .carousel { max-width: 360px; width: 360px; }
  .stat { padding: 0 24px; }
  .stat__value { font-size: 28px; }

  .sticker--inline { display: block; }
  .sticker--tr { width: 200px; height: 120px; top: -32px; right: -16px; }
}
