@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;
}

:root {
  --ink: #050505;
  --ink-soft: #11100e;
  --text: #fff8ec;
  --muted: #cfcfcf;
  --soft: #8f8f8f;
  --line: rgba(239, 228, 209, 0.15);
  --line-strong: rgba(239, 228, 209, 0.25);
  --paper: #050505;
  --surface: rgba(239, 228, 209, 0.075);
  --surface-strong: rgba(239, 228, 209, 0.12);
  --wash: rgba(239, 228, 209, 0.045);
  --accent: #d5282f;
  --accent-strong: #f3373f;
  --accent2: #efe4d1;
  --native: #efe4d1;
  --intentional: #e7a79d;
  --varies: #cfcfcf;
  --navy: #050505;
  --shadow: 0 30px 110px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 16px 46px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.97)),
    linear-gradient(135deg, rgba(213, 40, 47, 0.16), rgba(239, 228, 209, 0.08) 36%, transparent 68%),
    url("../images/affichr_parallax_background.webp") center top / cover fixed no-repeat,
    var(--paper);
  color: var(--text);
  font-family: "Satoshi", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(239, 228, 209, 0.42);
  background: linear-gradient(135deg, #fff8ec, #efe4d1, #e7a79d);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(213, 40, 47, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 248, 236, 0.72);
  box-shadow: 0 20px 52px rgba(213, 40, 47, 0.34);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  min-height: 660px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.90) 48%, rgba(5, 5, 5, 0.48) 100%),
    url("../images/identity_print_texture.jpg");
  background-color: var(--navy);
  background-position:
    center,
    center right -40px;
  background-repeat: no-repeat;
  background-size:
    auto,
    min(920px, 62vw) auto;
  color: var(--text);
}

.hero-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-copy {
  width: 100%;
  max-width: 680px;
  padding: 86px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: min(760px, 100%);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 22px;
}

.hero p,
.lead {
  max-width: min(690px, 100%);
  color: rgba(255, 248, 236, 0.82);
  font-size: clamp(16px, 1.55vw, 19px);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.025);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: -38px;
}

.feature-card {
  min-height: 148px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.feature-card b {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.feature-card span {
  color: var(--muted);
  font-size: 14px;
}

.table-wrap {
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(239, 228, 209, 0.10), rgba(239, 228, 209, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
}

th {
  background: rgba(255, 255, 255, 0.085);
  border-bottom: 1px solid var(--line-strong);
  color: rgba(255, 248, 236, 0.76);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr {
  position: relative;
}

tbody tr:hover td {
  border-color: rgba(213, 40, 47, 0.38);
  background: rgba(213, 40, 47, 0.075);
}

td {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  transition: background 160ms ease, border-color 160ms ease;
}

td:first-child {
  font-weight: 900;
  color: var(--text);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.feature-matrix {
  min-width: 0;
}

.matrix-wide {
  min-width: 0;
}

.feature-matrix:not(.matrix-compact) th:first-child,
.feature-matrix:not(.matrix-compact) td:first-child {
  width: 64%;
}

.matrix-compact th:first-child,
.matrix-compact td:first-child {
  width: 38%;
}

.feature-matrix th:not(:first-child),
.feature-matrix td:not(:first-child) {
  min-width: 0;
  text-align: center;
  vertical-align: middle;
}

.matrix-wide th:not(:first-child),
.matrix-wide td:not(:first-child) {
  min-width: 0;
}

.feature-matrix th a {
  color: inherit;
  text-decoration: none;
}

.feature-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mark-cell {
  font-size: 0;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.mark-yes {
  border: 1px solid rgba(255, 248, 236, 0.48);
  background: var(--native);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(239, 228, 209, 0.14);
}

.mark-no {
  border: 1px solid rgba(239, 228, 209, 0.18);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 248, 236, 0.48);
}

.has {
  color: var(--text);
}

.missing {
  color: var(--soft);
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.panel,
.competitor-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  padding: 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.panel p,
.competitor-card p,
.panel li {
  color: var(--muted);
}

.panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.competitor-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.competitor-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.competitor-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 22px 58px rgba(213, 40, 47, 0.20);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.source-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.matrix-key {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 900;
}

.matrix-key .mark {
  width: 22px;
  height: 22px;
  margin: 0 3px;
  font-size: 13px;
  vertical-align: middle;
}

.snapshot {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 24px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 248, 236, 0.84);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: break-word;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(213, 40, 47, 0.18) 0%, rgba(239, 228, 209, 0.08) 42%, rgba(5, 5, 5, 0.84) 100%);
  color: var(--text);
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 248, 236, 0.78);
}

.comparison-landing {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.99)),
    radial-gradient(circle at 86% 14%, rgba(213, 40, 47, 0.14), transparent 32%),
    var(--paper);
}

.landing-compare-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.landing-compare-nav,
.landing-compare-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

.landing-compare-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
}

.landing-compare-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.landing-compare-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 248, 236, 0.68);
  font-size: 14px;
  font-weight: 900;
}

.landing-compare-actions a {
  text-decoration: none;
}

.landing-compare-actions a:hover {
  color: var(--text);
}

.landing-compare-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(239, 228, 209, 0.46);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8ec, #efe4d1, #e7a79d);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(213, 40, 47, 0.22);
}

.landing-compare-hero {
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.96) 52%, rgba(5, 5, 5, 0.72) 100%),
    url("../images/identity_print_texture.jpg");
  background-position:
    center,
    center right -100px;
  background-repeat: no-repeat;
  background-size:
    auto,
    min(720px, 48vw) auto;
}

.landing-compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 64px;
  align-items: end;
  padding: 92px 0 78px;
}

.comparison-landing h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.98;
}

.landing-compare-verdict {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 248, 236, 0.76);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
}

.landing-compare-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.landing-compare-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 248, 236, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.landing-decision {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(17, 16, 14, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.landing-decision > div {
  padding: 22px;
}

.landing-decision > div + div {
  border-top: 1px solid var(--line);
}

.landing-decision h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.1;
}

.landing-decision ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-decision li {
  color: rgba(255, 248, 236, 0.72);
  font-size: 14px;
  line-height: 1.35;
}

.landing-compare-section {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.landing-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.landing-section-head h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.landing-section-head p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 248, 236, 0.66);
  font-size: 15px;
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.flow-panel {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.flow-panel h3 {
  font-size: 20px;
  line-height: 1.15;
}

.flow-panel p {
  margin: 14px 0 0;
  color: rgba(255, 248, 236, 0.66);
  font-size: 15px;
}

.landing-compare-cta {
  padding: 84px 0;
  background:
    linear-gradient(135deg, rgba(213, 40, 47, 0.16), rgba(239, 228, 209, 0.06) 48%, rgba(5, 5, 5, 0.96));
}

.landing-compare-cta .landing-compare-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.landing-compare-cta h2 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 56px);
}

.landing-compare-cta p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 248, 236, 0.72);
  font-size: 18px;
}

.site-footer {
  position: relative;
  z-index: 3;
  height: clamp(66px, 14vw, 122px);
  min-height: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
  pointer-events: none;
}

.site-footer-stage {
  position: relative;
  height: 100%;
  min-height: 0;
}

.site-footer-tape {
  --footer-tape-y: 0px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(980px, 108vw);
  aspect-ratio: 2688 / 572;
  transform: translate3d(-50%, var(--footer-tape-y), 0);
  will-change: transform;
}

.site-footer-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.site-footer-links {
  position: absolute;
  top: 52%;
  left: 12.8%;
  right: 12.8%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(10px, 5vw, 92px);
  transform: translateY(-100%);
  pointer-events: auto;
}

.site-footer-links a {
  justify-self: center;
  color: #171512;
  font-size: clamp(15px, 2vw, 26px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.38),
    0 -1px 0 rgba(255, 255, 255, 0.24);
  transform: rotate(-0.35deg);
}

.site-footer-links a:nth-child(2) {
  transform: rotate(0.2deg);
}

.site-footer-links a:nth-child(3) {
  transform: rotate(0.35deg);
}

@media (prefers-reduced-motion: reduce) {
  .site-footer-tape {
    --footer-tape-y: 0px;
    will-change: auto;
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .landing-compare-nav,
  .landing-compare-inner {
    width: min(1120px, calc(100% - 24px));
  }

  .landing-compare-nav {
    min-height: 66px;
    gap: 14px;
  }

  .landing-compare-brand {
    font-size: 16px;
  }

  .landing-compare-brand img {
    width: 30px;
    height: 30px;
  }

  .landing-compare-actions {
    gap: 10px;
    font-size: 13px;
  }

  .landing-compare-actions a[href="#table"] {
    display: none;
  }

  .landing-compare-primary {
    min-height: 38px;
    padding: 0 12px;
  }

  .landing-compare-hero {
    background-image:
      linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.90)),
      url("../images/identity_print_texture.jpg");
    background-position:
      center,
      top right -150px;
    background-size:
      auto,
      560px auto;
  }

  .landing-compare-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0 48px;
  }

  .comparison-landing h1 {
    font-size: clamp(38px, 10vw, 52px);
    line-height: 1.02;
  }

  .landing-compare-verdict {
    margin-top: 20px;
    font-size: 17px;
  }

  .landing-compare-tags {
    gap: 8px;
    margin-top: 24px;
  }

  .landing-compare-section {
    padding: 54px 0;
  }

  .landing-section-head {
    display: block;
    margin-bottom: 22px;
  }

  .landing-section-head p {
    margin-top: 12px;
  }

  .landing-card-grid {
    grid-template-columns: 1fr;
  }

  .flow-panel {
    min-height: auto;
  }

  .landing-compare-cta {
    padding: 58px 0;
  }

  .landing-compare-cta .landing-compare-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.84)),
      url("../images/identity_print_texture.jpg");
    background-color: var(--navy);
    background-position:
      center,
      top right -130px;
    background-repeat: no-repeat;
    background-size:
      auto,
      560px auto;
  }

  .hero-copy {
    max-width: 100%;
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.07;
  }

  .hero p,
  .lead {
    font-size: 16px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .feature-strip,
  .grid,
  .competitor-list {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-top: 0;
  }

  .section-inner,
  .hero-inner {
    width: min(1160px, calc(100% - 24px));
  }

  .table-wrap {
    margin-inline: -2px;
  }

  th,
  td {
    padding: 10px 8px;
  }

  th {
    font-size: 10px;
    letter-spacing: 0;
  }

  .feature-matrix:not(.matrix-compact) th:first-child,
  .feature-matrix:not(.matrix-compact) td:first-child {
    width: 68%;
  }

  .matrix-compact th:first-child,
  .matrix-compact td:first-child {
    width: 40%;
  }

  .feature-matrix th:not(:first-child),
  .feature-matrix td:not(:first-child) {
    padding-right: 4px;
    padding-left: 4px;
  }

  .feature-name {
    font-size: 13px;
    line-height: 1.25;
  }

  .mark {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .matrix-key {
    line-height: 1.7;
  }

  .matrix-key .mark {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}
