@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-dark: #100f0a;
  --bg-card-dark: #1d1b13;
  --bg-surface-dark: #242116;
  --accent: #ce2e22;
  --accent-dark: #a8231b;
  --paper: #f4f0e7;
  --paper-warm: #eee4d1;
  --ink: #15140e;
  --ink-2: #1d1b13;
  --ink-3: #242116;
  --muted: #6f6756;
  --on-dark: rgba(244, 240, 231, 0.94);
  --on-dark-muted: rgba(244, 240, 231, 0.64);
  --on-dark-soft: rgba(244, 240, 231, 0.42);
  --on-dark-border: rgba(244, 240, 231, 0.13);
  --font-body: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --max: 1160px;
  --article-max: 760px;
  --radius-sm: 3px;
  --radius-md: 8px;
  --shadow-print: 8px 8px 0 rgba(206, 46, 34, 0.22);
  --shadow-border:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.24);
  --shadow-border-hover:
    0 0 0 1px rgba(255, 255, 255, 0.13),
    0 24px 56px rgba(0, 0, 0, 0.32);
}

html {
  scroll-behavior: smooth;
  background: #100f0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(100% 70% at 52% -10%, #2a2518 0%, var(--ink) 56%, #100f0a 100%);
  color: var(--on-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.spotlight-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #100f0a;
}

.spotlight-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(16, 15, 10, 0.9) 0%, rgba(16, 15, 10, 0.72) 48%, rgba(16, 15, 10, 0.88) 100%),
    radial-gradient(80% 60% at 46% 10%, transparent 0%, rgba(16, 15, 10, 0.66) 70%);
}

.spotlight-bg-layer {
  position: absolute;
  inset: -7%;
  width: 114%;
  height: 114%;
  object-fit: cover;
  display: block;
  outline: 0;
}

.spotlight-bg-photo {
  z-index: 1;
  filter: saturate(0) contrast(1.08) brightness(0.66);
  opacity: 0.58;
}

.spotlight-bg-dots {
  z-index: 2;
  filter: brightness(1.18) contrast(1.04);
  opacity: 0.76;
  -webkit-mask: radial-gradient(circle 210px at var(--spot-x, 58vw) var(--spot-y, 38vh), transparent 0%, transparent 34%, #000 78%);
          mask: radial-gradient(circle 210px at var(--spot-x, 58vw) var(--spot-y, 38vh), transparent 0%, transparent 34%, #000 78%);
}

.spotlight-bg-torch {
  position: absolute;
  z-index: 3;
  width: 420px;
  height: 420px;
  left: var(--spot-x, 58vw);
  top: var(--spot-y, 38vh);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.74;
  background: radial-gradient(circle, transparent 35%, rgba(206, 46, 34, 0.13) 58%, transparent 73%);
  box-shadow: inset 0 0 0 1px rgba(206, 46, 34, 0.18);
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

main,
.affichr-footer {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid var(--on-dark-border);
  background: rgba(15, 14, 9, 0.82);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 118px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--on-dark-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 2px 20px 0;
  border: 2px solid #0e0d09;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  color: inherit;
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 #0e0d09 !important;
}

.btn:focus-visible {
  outline: 3px solid rgba(206, 46, 34, 0.5);
  outline-offset: 4px;
}

.btn-primary {
  color: #fff6ee;
  background: var(--accent);
  box-shadow: 4px 4px 0 rgba(244, 240, 231, 0.9);
}

.btn-primary:hover {
  background: #d9362a;
  box-shadow: 6px 6px 0 rgba(244, 240, 231, 0.9);
}

.btn-ghost {
  border-color: rgba(244, 240, 231, 0.45);
  background: transparent;
  color: var(--paper);
  box-shadow: 4px 4px 0 rgba(244, 240, 231, 0.16);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(206, 46, 34, 0.16);
  box-shadow: 6px 6px 0 rgba(206, 46, 34, 0.5);
}

.blog-hero,
.article-hero {
  padding: clamp(44px, 6vw, 84px) 0 clamp(44px, 5vw, 72px);
  border-bottom: 1px solid var(--on-dark-border);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 5px 12px 3px;
  border: 2px solid currentColor;
  background: transparent;
  color: #e1493c;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-1.6deg);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--paper);
  font-size: clamp(54px, 7.2vw, 116px);
  line-height: 0.88;
}

h1 span {
  color: var(--accent);
}

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 0.9;
}

h2 {
  font-size: clamp(34px, 4.8vw, 58px);
}

h3 {
  font-size: clamp(23px, 3vw, 34px);
}

p {
  margin: 0;
  text-wrap: pretty;
}

.lede,
.article-answer {
  max-width: 650px;
  margin-top: 24px;
  color: var(--on-dark-muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.62;
}

.article-answer {
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(206, 46, 34, 0.42);
  border-radius: var(--radius-sm);
  background: rgba(206, 46, 34, 0.12);
  color: #fff4ed;
  font-size: clamp(17px, 1.8vw, 20px);
}

.hero-panel,
.article-callout {
  border-radius: var(--radius-md);
  background: rgba(29, 27, 19, 0.86);
  border: 1px solid var(--on-dark-border);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.52);
}

.hero-panel {
  isolation: isolate;
  position: relative;
  display: grid;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin-left: auto;
  overflow: hidden;
  place-items: center;
  padding: clamp(16px, 2.2vw, 24px);
  border-radius: 16px;
  background:
    radial-gradient(90% 80% at 50% 10%, rgba(206, 46, 34, 0.22), transparent 62%),
    var(--ink-2);
  cursor: crosshair;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-panel::before {
  z-index: 0;
  inset: 0;
  background: var(--accent);
  mix-blend-mode: multiply;
  opacity: 0.32;
  transition: opacity 0.35s ease;
}

.hero-panel::after {
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(244, 240, 231, 0.16) 0 1px, transparent 1.5px) 0 0 / 9px 9px,
    radial-gradient(130% 90% at 50% 120%, transparent 45%, rgba(0, 0, 0, 0.44) 100%);
  opacity: 0.44;
  transition: opacity 0.35s ease;
}

.hero-panel img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(300px, 84%);
  height: min(76vh, 86%);
  border-radius: 34px;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(244, 240, 231, 0.14),
    0 28px 70px rgba(0, 0, 0, 0.58);
  object-fit: contain;
  transform: translate3d(0, 0, 0);
}

.hero-panel:hover::before,
.hero-panel:focus-within::before,
.hero-panel.is-live::before {
  opacity: 0;
}

.hero-panel:hover::after,
.hero-panel:focus-within::after,
.hero-panel.is-live::after {
  opacity: 0.12;
}

.hero-panel:hover img,
.hero-panel:focus-within img,
.hero-panel.is-live img {
  animation: blog-glitch-main 0.5s steps(2) 1;
}

.hero-panel p {
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: center;
  margin: 0;
  color: var(--on-dark-soft);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.blog-grid-section,
.article-section {
  padding: clamp(34px, 5vw, 68px) 0 clamp(52px, 7vw, 92px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.article-card {
  --card-accent: var(--accent);
  --card-shadow: rgba(206, 46, 34, 0.2);
  --card-image: url("../images/sticky-requests.jpg");
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  display: flex;
  min-height: 318px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 2px solid #0e0d09;
  border-radius: var(--radius-md);
  background: rgba(244, 240, 231, 0.96);
  color: var(--ink);
  box-shadow:
    12px 12px 0 rgba(0, 0, 0, 0.42),
    0 24px 54px rgba(0, 0, 0, 0.26);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: ease;
}

.article-card:hover {
  transform: translate(-2px, -2px);
  box-shadow:
    14px 14px 0 rgba(0, 0, 0, 0.48),
    0 30px 62px rgba(0, 0, 0, 0.3);
}

.article-card:active {
  transform: translate(2px, 2px);
}

.article-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(54%, 260px);
  height: 44%;
  opacity: 0.2;
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0.05), rgba(248, 246, 241, 0.74)),
    var(--card-image) center / cover no-repeat;
  filter: grayscale(1) contrast(1.18);
  pointer-events: none;
}

.article-card::after {
  content: attr(data-count);
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(26, 24, 19, 0.08);
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.8;
  pointer-events: none;
}

.article-card--software {
  --card-accent: #ce2e22;
  --card-shadow: rgba(206, 46, 34, 0.2);
  --card-image: url("../images/studio-week-calendar-iphone-17-pro-max.png");
  grid-column: span 6;
  min-height: 380px;
}

.article-card--forms {
  --card-accent: #b8531e;
  --card-shadow: rgba(184, 83, 30, 0.21);
  --card-image: url("../images/sticky-slot-options.jpg");
  grid-column: span 3;
}

.article-card--deposits {
  --card-accent: #8a5f18;
  --card-shadow: rgba(138, 95, 24, 0.23);
  --card-image: url("../images/sticky-calendar.jpg");
  grid-column: span 3;
}

.article-card--reminders {
  --card-accent: #5c6d45;
  --card-shadow: rgba(92, 109, 69, 0.24);
  --card-image: url("../images/sticky-broadcast.jpg");
}

.article-card--waitlist {
  --card-accent: #265f61;
  --card-shadow: rgba(38, 95, 97, 0.24);
  --card-image: url("../images/studio-calendar-iphone-17-pro-max.png");
}

.article-card--app {
  --card-accent: #4d5667;
  --card-shadow: rgba(77, 86, 103, 0.24);
  --card-image: url("../images/tattoo-booking-calendar-iphone-17-pro-max.png");
}

.article-card--software::before,
.article-card--waitlist::before,
.article-card--app::before {
  inset: 12% 18px auto auto;
  width: min(36%, 150px);
  height: 74%;
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0.08), rgba(248, 246, 241, 0.62)),
    var(--card-image) center / contain no-repeat;
}

.article-card--software::after { content: "01"; }
.article-card--forms::after { content: "02"; }
.article-card--deposits::after { content: "03"; }
.article-card--reminders::after { content: "04"; }
.article-card--waitlist::after { content: "05"; }
.article-card--app::after { content: "06"; }

.article-card > * {
  position: relative;
  z-index: 1;
}

.article-card span,
.kicker {
  color: var(--article-accent, var(--card-accent, var(--accent-dark)));
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  width: fit-content;
  padding: 5px 12px 3px;
  border: 2px solid currentColor;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
  transform: rotate(-1.6deg);
}

.article-card h2 {
  margin-top: 10px;
  max-width: 92%;
  font-size: clamp(29px, 3.8vw, 42px);
  line-height: 0.96;
}

.article-card--software h2 {
  max-width: 68%;
  font-size: clamp(40px, 5vw, 62px);
}

.article-card--software p {
  max-width: 62%;
}

.article-card p {
  margin-top: 14px;
  max-width: 82%;
  color: var(--muted);
}

.article-card b {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-card b::after {
  content: "";
  width: 28px;
  height: 2px;
  margin-left: 10px;
  background: var(--card-accent);
}

.blog-article {
  --article-accent: var(--accent);
  --article-accent-rgb: 206, 46, 34;
  --article-image: url("../images/sticky-requests.jpg");
}

.article-software {
  --article-accent: #ce2e22;
  --article-accent-rgb: 206, 46, 34;
  --article-image: url("../images/studio-week-calendar-iphone-17-pro-max.png");
}

.article-forms {
  --article-accent: #b8531e;
  --article-accent-rgb: 184, 83, 30;
  --article-image: url("../images/sticky-slot-options.jpg");
}

.article-deposits {
  --article-accent: #8a5f18;
  --article-accent-rgb: 138, 95, 24;
  --article-image: url("../images/sticky-calendar.jpg");
}

.article-reminders {
  --article-accent: #5c6d45;
  --article-accent-rgb: 92, 109, 69;
  --article-image: url("../images/sticky-broadcast.jpg");
}

.article-waitlist {
  --article-accent: #265f61;
  --article-accent-rgb: 38, 95, 97;
  --article-image: url("../images/studio-calendar-iphone-17-pro-max.png");
}

.article-app {
  --article-accent: #4d5667;
  --article-accent-rgb: 77, 86, 103;
  --article-image: url("../images/tattoo-booking-calendar-iphone-17-pro-max.png");
}

.blog-article .eyebrow {
  background: transparent;
  color: var(--article-accent);
}

.blog-article .article-hero .wrap {
  position: relative;
  display: block;
  min-height: clamp(540px, 58vw, 640px);
  padding-right: min(420px, 35vw);
}

.blog-article .article-hero .wrap > * {
  position: relative;
  z-index: 1;
}

.blog-article .article-hero .wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: min(360px, 31vw);
  height: 100%;
  border: 1px solid var(--on-dark-border);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(17, 16, 11, 0.04), rgba(17, 16, 11, 0.74)),
    var(--article-image) center / cover no-repeat;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.52);
}

.article-hero[data-glitch-hero]:hover .wrap::after,
.article-hero[data-glitch-hero].is-live .wrap::after {
  animation: blog-glitch-panel 0.5s steps(2) 1;
}

.article-software .article-hero .wrap::after,
.article-waitlist .article-hero .wrap::after,
.article-app .article-hero .wrap::after {
  background:
    linear-gradient(180deg, rgba(17, 16, 11, 0.04), rgba(17, 16, 11, 0.42)),
    var(--article-image) center / contain no-repeat,
    rgba(17, 16, 11, 0.9);
}

@keyframes blog-glitch-main {
  0% { transform: translate3d(0, 0, 0); filter: none; }
  20% { transform: translate3d(7px, -4px, 0); filter: drop-shadow(-8px 0 rgba(206, 46, 34, 0.48)); clip-path: inset(8% 0 60% 0); }
  45% { transform: translate3d(-6px, 3px, 0); filter: drop-shadow(8px 0 rgba(244, 240, 231, 0.26)); clip-path: inset(55% 0 12% 0); }
  70% { transform: translate3d(4px, 2px, 0); filter: drop-shadow(-5px 0 rgba(206, 46, 34, 0.42)); clip-path: inset(30% 0 40% 0); }
  100% { transform: translate3d(0, 0, 0); filter: none; clip-path: inset(0); }
}

@keyframes blog-glitch-panel {
  0% { transform: translate3d(0, 0, 0); filter: none; }
  20% { transform: translate3d(7px, -4px, 0); filter: hue-rotate(-15deg); clip-path: inset(8% 0 60% 0); }
  45% { transform: translate3d(-6px, 3px, 0); clip-path: inset(55% 0 12% 0); }
  70% { transform: translate3d(4px, 2px, 0); clip-path: inset(30% 0 40% 0); }
  100% { transform: translate3d(0, 0, 0); filter: none; clip-path: inset(0); }
}

.blog-article .article-answer {
  border-color: rgba(var(--article-accent-rgb), 0.48);
  background:
    linear-gradient(135deg, rgba(var(--article-accent-rgb), 0.22), rgba(244, 240, 231, 0.04)),
    rgba(29, 27, 19, 0.86);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.42);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--article-max)) minmax(220px, 320px);
  align-items: start;
  gap: clamp(28px, 5vw, 56px);
}

.article-body {
  color: var(--ink);
}

.article-body > section {
  margin-bottom: 36px;
  padding: clamp(24px, 4vw, 34px);
  border: 2px solid #0e0d09;
  border-radius: var(--radius-md);
  background: rgba(244, 240, 231, 0.96);
  box-shadow:
    12px 12px 0 rgba(0, 0, 0, 0.42),
    0 24px 54px rgba(0, 0, 0, 0.22);
}

.article-body > section:first-child {
  background:
    linear-gradient(135deg, rgba(var(--article-accent-rgb, 206, 46, 34), 0.22), rgba(17, 16, 11, 0.02)),
    #1b1912;
}

.article-body > section:first-child h2,
.article-body > section:first-child p {
  color: var(--on-dark);
}

.article-body > section:nth-child(3) {
  background: rgba(238, 230, 216, 0.98);
}

.article-body h2 {
  color: var(--ink);
  font-size: clamp(32px, 4.8vw, 52px);
}

.article-body h3 {
  color: var(--ink);
  font-size: clamp(24px, 3.4vw, 34px);
}

.article-body p,
.article-body li {
  color: #3a352b;
  font-size: 18px;
}

.article-body p {
  margin-top: 14px;
}

.phrase-list,
.checklist,
.faq-list,
.article-links {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.phrase-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.phrase-list li {
  width: fit-content;
  padding: 8px 10px 6px;
  border: 2px solid rgba(var(--article-accent-rgb, 206, 46, 34), 0.32);
  border-radius: var(--radius-sm);
  background: #fffaf1;
  color: #3d3328;
  font-weight: 800;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 14px;
  height: 14px;
  border: 2px solid var(--article-accent, var(--accent));
  background: #fff;
  box-shadow: 2px 2px 0 rgba(var(--article-accent-rgb, 206, 46, 34), 0.26);
}

.article-callout {
  position: sticky;
  top: 96px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(var(--article-accent-rgb, 206, 46, 34), 0.18), rgba(244, 240, 231, 0.04)),
    rgba(29, 27, 19, 0.9);
}

.article-callout h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.article-callout p {
  margin-top: 12px;
  color: var(--on-dark-muted);
}

.article-callout .btn {
  width: 100%;
  margin-top: 18px;
}

.article-links {
  display: grid;
  gap: 10px;
}

.article-links a {
  display: block;
  padding: 12px;
  border: 1px solid rgba(244, 240, 231, 0.14);
  border-radius: var(--radius-sm);
  color: #fff;
  background: rgba(244, 240, 231, 0.06);
  font-weight: 800;
}

.article-links a:hover {
  border-color: rgba(var(--article-accent-rgb, 206, 46, 34), 0.56);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list h3 {
  margin-bottom: 8px;
}

.final-cta {
  position: relative;
  padding: clamp(64px, 8vw, 104px) 0 clamp(220px, 24vw, 300px);
  border-top: 1px solid var(--on-dark-border);
}

.final-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-bottom: clamp(42px, 8vw, 98px);
}

.final-grid p {
  max-width: 660px;
  margin-top: 14px;
  color: var(--on-dark-muted);
  font-size: 20px;
}

body .affichr-footer__tape {
  width: min(980px, 100vw);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--on-dark-muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(244, 240, 231, 0.42);
}

@media (max-width: 900px) {
  .blog-hero-grid,
  .article-layout,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .article-card,
  .article-card--forms,
  .article-card--deposits,
  .article-card--reminders,
  .article-card--waitlist,
  .article-card--app {
    grid-column: span 3;
  }

  .article-card--software {
    grid-column: span 6;
  }

  .blog-article .article-hero .wrap {
    min-height: 0;
    padding-right: 0;
  }

  .blog-article .article-hero .wrap::after {
    position: relative;
    display: block;
    width: 100%;
    min-height: 280px;
    height: 280px;
    margin-top: 24px;
  }

  .article-callout {
    position: static;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: relative;
  }

  .nav {
    min-height: auto;
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }

  .nav .btn {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

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

  .article-card,
  .article-card--software,
  .article-card--forms,
  .article-card--deposits,
  .article-card--reminders,
  .article-card--waitlist,
  .article-card--app {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .article-card--software h2,
  .article-card h2 {
    max-width: 100%;
    font-size: clamp(30px, 11vw, 44px);
  }

  .article-card p {
    max-width: 100%;
  }

  h1,
  .article-hero h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .blog-article .article-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .blog-article .article-hero .wrap::after {
    min-height: 220px;
  }

  .article-body > section {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.2s !important;
  }

  .spotlight-bg-dots {
    -webkit-mask: none;
            mask: none;
    opacity: 0.34;
  }

  .hero-panel::before {
    opacity: 0.18;
  }

  .hero-panel::after {
    opacity: 0.14;
  }
}
