/* Ledger Pilot public site. One stylesheet for the front page, the guide and the system pages.
   Tokens follow the running app (globals.css brand board v1). */
:root {
  --navy: #0d1b2a;
  --navy-2: #13263b;
  --blue: #1e3a8a;
  --cyan: #06b6d4;
  --cyan-soft: #ecfeff;
  --teal: #0e7490;
  --teal-hover: #155e75;
  --green: #047857;
  --green-soft: #ecfdf5;
  --amber: #92400e;
  --amber-soft: #fffbeb;
  --ground: #f6f8fb;
  --panel: #ffffff;
  --ink: #0d1b2a;
  --ink-2: #334155;
  --muted: #475569;
  --rule: #e2e8f0;
  --rule-2: #cbd5e1;
  --on-navy: #f1f5f9;
  --on-navy-muted: #b6c3d1;
  --shadow-frame: 0 1px 2px rgba(13, 27, 42, 0.06), 0 28px 60px -32px rgba(13, 27, 42, 0.38);
  --shadow-card: 0 1px 2px rgba(13, 27, 42, 0.05), 0 12px 28px -20px rgba(13, 27, 42, 0.3);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 10px;
  --radius-frame: 14px;
  --page: 1180px;
  --gutter: 48px;
  --header-h: 72px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 400 18px/1.7 "Heebo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection {
  background: #a5f3fc;
  color: var(--navy);
}
h1,
h2,
h3,
h4,
p,
ol,
ul,
dl,
dd,
figure,
blockquote {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--ink);
}
p,
li {
  text-wrap: pretty;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
a,
button,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 6px;
}
bdi,
.num {
  font-variant-numeric: tabular-nums;
}
[hidden] {
  display: none !important;
}
.page-width {
  width: min(var(--page), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  inset-inline-start: 16px;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}

/* Buttons and links */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms var(--ease-out);
}
.button:active {
  transform: scale(0.97);
}
.button-small {
  min-height: 40px;
  padding: 8px 16px;
  font-size: 15px;
}
.button-light {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}
.button-quiet {
  background: transparent;
  color: var(--teal);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    background: var(--teal-hover);
    border-color: var(--teal-hover);
  }
  .button-light:hover {
    background: #e0f2fe;
    border-color: #e0f2fe;
  }
  .button-quiet:hover {
    background: var(--cyan-soft);
    border-color: var(--teal);
  }
}
.text-link {
  font-weight: 600;
  color: var(--teal);
  text-decoration: underline;
}
.text-link-light {
  color: var(--on-navy);
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}
.arrow-link::after {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0.7);
  transform-origin: 100% 50%;
  transition: transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .arrow-link:hover::after {
    transform: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 248, 251, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
}
.brand-name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav a,
.login-link {
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink-2);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1.5px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--cyan);
}
.login-link {
  font-weight: 600;
  color: var(--ink);
}
@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover,
  .login-link:hover {
    color: var(--ink);
    border-bottom-color: var(--cyan);
  }
}
.header-actions {
  gap: 20px;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule-2);
  border-radius: 10px;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: relative;
  transition: transform 200ms var(--ease-out), background-color 120ms ease;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
}
.menu-toggle span::before {
  top: -6px;
}
.menu-toggle span::after {
  top: 6px;
}
.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}
.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-nav {
  border-top: 1px solid var(--rule);
  background: var(--panel);
  padding-block: 8px 20px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav a:last-child {
  border-bottom: 0;
}

/* Product window with a spotlight ring */
.frame {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid #d5dee8;
  border-radius: var(--radius-frame);
  box-shadow: var(--shadow-frame);
}
.frame img {
  width: 100%;
}
.ring {
  position: absolute;
  inset-inline-end: var(--x, 0);
  top: var(--y, 0);
  width: var(--w, 0);
  height: var(--h, 0);
  border: 3px solid var(--cyan);
  border-radius: 12px;
  box-shadow: 0 0 0 200vmax rgba(13, 27, 42, 0.3);
  opacity: 0;
  pointer-events: none;
}
.js .shot.is-seen .ring {
  animation: ringIn 520ms var(--ease-out) 380ms both;
}
html:not(.js) .ring {
  display: none;
}
@keyframes ringIn {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.shot figcaption {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}
.shot figcaption strong {
  color: var(--ink-2);
}

/* Scroll reveal: content is visible without JS; with JS it rises in once. */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 600ms var(--ease-reveal),
    transform 700ms var(--ease-reveal);
}
.js .reveal.is-seen {
  opacity: 1;
  transform: none;
}

/* Page hero for inner pages */
.page-hero {
  padding-block: 56px 40px;
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(236, 254, 255, 0.55), rgba(246, 248, 251, 0) 70%),
    var(--ground);
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 14.5px;
  color: var(--muted);
}
.crumbs a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.crumbs span[aria-hidden] {
  color: var(--rule-2);
}
.page-hero h1 {
  margin-top: 14px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  max-width: 20ch;
}
.page-hero .lede {
  margin-top: 18px;
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 38em;
}
.page-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 14.5px;
  color: var(--muted);
}
.page-meta span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-inline-end: 8px;
  border-radius: 50%;
  background: var(--cyan);
  vertical-align: 2px;
}

/* Reading layout: article + sticky table of contents on the inline end */
.doc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 64px;
  align-items: start;
  padding-block: 48px 96px;
}
.toc {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  grid-column: 2;
  grid-row: 1;
  font-size: 15px;
}
.toc-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.toc ol {
  margin-top: 12px;
  padding: 0;
  list-style: none;
  border-inline-start: 2px solid var(--rule);
}
.toc a {
  display: block;
  padding: 6px 14px;
  margin-inline-start: -2px;
  border-inline-start: 2px solid transparent;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.4;
  transition: color 160ms ease, border-color 200ms ease;
}
.toc a.is-current {
  color: var(--ink);
  font-weight: 600;
  border-inline-start-color: var(--cyan);
}
@media (hover: hover) and (pointer: fine) {
  .toc a:hover {
    color: var(--ink);
  }
}
.article {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  max-width: 760px;
}
.article > section + section {
  margin-top: 72px;
}
.article h2 {
  font-size: clamp(27px, 2.6vw, 36px);
  padding-top: 4px;
}
.article h3 {
  margin-top: 36px;
  font-size: 22px;
}
.article p,
.article li {
  color: var(--ink-2);
}
.article h2 + p,
.article h3 + p,
.article p + p {
  margin-top: 16px;
}
.article ul,
.article ol:not(.steps) {
  margin-top: 16px;
  padding-inline-start: 22px;
}
.article li + li {
  margin-top: 8px;
}
.article strong {
  color: var(--ink);
}
.article .shot,
.article .diagram,
.article .split,
.article .callout,
.article .steps,
.article .ledger-table,
.article .term-list,
.article .cards {
  margin-top: 28px;
}
.article .shot {
  margin-inline: -8px;
}

/* In short: the page's promise in three or four lines */
.tldr {
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-card);
}
.tldr h2 {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--teal);
}
.tldr ul {
  margin-top: 12px;
  padding: 0;
  list-style: none;
}
.tldr li {
  position: relative;
  padding-inline-start: 22px;
  color: var(--ink);
  font-weight: 500;
}
.tldr li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.7em;
  width: 10px;
  height: 2px;
  background: var(--cyan);
}

/* Who does what */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
}
.split > div {
  padding: 22px 24px;
}
.split > div + div {
  border-inline-start: 1px solid var(--rule);
  background: #fbfcfe;
}
.split > div:only-child {
  grid-column: 1 / -1;
}
.split h3,
.split h4 {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.split .who-system {
  color: var(--teal);
}
.split ul {
  margin-top: 12px;
  padding-inline-start: 20px;
}
.split li {
  font-size: 16.5px;
}

/* Callouts: a plain note, a limit, a rule */
.callout {
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(30, 58, 138, 0.04), rgba(30, 58, 138, 0) 60%), var(--panel);
}
.callout p {
  margin: 0;
  font-size: 16.5px;
}
.callout p + p {
  margin-top: 8px;
}
.callout-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
  margin-bottom: 6px;
}
.callout-title::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.callout-limit {
  background: var(--amber-soft);
  border-color: #fde68a;
}
.callout-limit .callout-title {
  color: var(--amber);
}
.callout-rule {
  background: var(--green-soft);
  border-color: #a7f3d0;
}
.callout-rule .callout-title {
  color: var(--green);
}

/* Numbered steps with a rail */
.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.steps > li {
  position: relative;
  counter-increment: step;
  padding-inline-start: 56px;
  padding-bottom: 26px;
}
.steps > li::before {
  content: counter(step);
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--teal);
  background: var(--cyan-soft);
  border: 1px solid #a5f3fc;
}
.steps > li::after {
  content: "";
  position: absolute;
  inset-inline-start: 17px;
  top: 40px;
  bottom: 4px;
  width: 2px;
  background: var(--rule);
}
.steps > li:last-child::after {
  display: none;
}
.steps > li:last-child {
  padding-bottom: 0;
}
.steps h3,
.steps h4 {
  margin: 4px 0 0;
  font-size: 19px;
}
.steps p {
  margin-top: 6px !important;
  font-size: 17px;
}

/* Glossary list */
.term-list {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--navy);
}
.term-list > div {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr);
  gap: 6px 28px;
  padding-block: 18px;
  border-bottom: 1px solid var(--rule);
}
.term-list dt {
  font-weight: 700;
  line-height: 1.45;
}
.term-list dd {
  color: var(--ink-2);
  font-size: 17px;
}
.term-list dd .also {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: var(--muted);
}
.term-list div:target {
  background: var(--cyan-soft);
  box-shadow: 0 0 0 12px var(--cyan-soft);
}

/* Inline term link into the glossary */
a.term {
  color: inherit;
  text-decoration: underline dotted var(--teal);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

/* A worked ledger entry */
.ledger-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  font-size: 16px;
}
.ledger-table caption {
  caption-side: top;
  text-align: start;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}
.ledger-table th,
.ledger-table td {
  padding: 12px 16px;
  text-align: start;
  border-bottom: 1px solid var(--rule);
}
.ledger-table thead th {
  font-size: 14px;
  color: var(--muted);
  background: #f8fafc;
}
.ledger-table td.amount,
.ledger-table th.amount {
  text-align: end;
  font-variant-numeric: tabular-nums;
}
.ledger-table tfoot td {
  font-weight: 700;
  border-bottom: 0;
  background: #f8fafc;
}
.table-wrap {
  overflow-x: auto;
}

/* Cards linking to other pages */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 20px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition:
    transform 220ms var(--ease-out),
    border-color 200ms ease;
}
.card-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal);
}
.card h3 {
  margin: 0;
  font-size: 20px;
}
.card p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
}
.card .arrow-link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 15px;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-3px);
    border-color: #a5f3fc;
  }
}

/* End of page: where to go next */
.next-pages {
  padding-block: 72px;
  background: var(--panel);
  border-top: 1px solid var(--rule);
}
.next-pages h2 {
  font-size: clamp(26px, 2.6vw, 34px);
}
.next-pages .cards {
  margin-top: 28px;
}

/* Diagrams drawn in HTML and SVG */
.diagram {
  padding: 24px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-card);
}
.diagram figcaption {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--muted);
}
.flow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  counter-reset: flow;
}
.flow li {
  position: relative;
  padding: 14px 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--rule);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
  counter-increment: flow;
}
.flow li strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}
.flow li::before {
  content: counter(flow);
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 6px;
}
.flow li.is-human {
  background: var(--cyan-soft);
  border-color: #a5f3fc;
}
.flow li.is-human::after {
  content: "אדם";
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--teal);
  background: #fff;
  border: 1px solid #a5f3fc;
  border-radius: 999px;
  padding: 1px 8px;
}
.js .flow.is-seen li {
  animation: flowIn 520ms var(--ease-reveal) both;
  animation-delay: calc(var(--i, 0) * 90ms);
}
@keyframes flowIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Footer with the whole site map */
.site-footer {
  background: var(--navy);
  color: var(--on-navy-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
  padding-block: 56px 32px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
}
.footer-about {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 28em;
}
.footer-col h2 {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
}
.footer-col ul {
  margin-top: 12px;
  padding: 0;
  list-style: none;
}
.footer-col a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  font-size: 15px;
  text-decoration: none;
  color: var(--on-navy-muted);
  transition: color 160ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-col a:hover {
    color: #fff;
  }
}
.site-footer a:focus-visible,
.closing a:focus-visible {
  outline-color: #fff;
}
.copyright {
  border-top: 1px solid rgba(241, 245, 249, 0.14);
  padding-block: 16px 24px;
  font-size: 13px;
}

/* Navy closing band, shared by every page */
.closing {
  background: var(--navy-2);
  color: var(--on-navy);
  padding-block: 88px;
}
.closing h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  color: #fff;
  max-width: 20ch;
}
.closing p {
  margin-top: 16px;
  font-size: 19px;
  color: var(--on-navy-muted);
  max-width: 34em;
}
.closing-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 26px;
}

/* Worked example: a document and the journal entry it becomes */
.entry-demo {
  margin-top: 28px;
  padding: 22px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-card);
}
.entry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px;
  border-radius: 12px;
  background: #f1f5f9;
}
.entry-tabs [role="tab"] {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 8px 14px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.entry-tabs [role="tab"][aria-selected="true"] {
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(13, 27, 42, 0.12);
}
.entry-panel {
  margin-top: 18px;
}
.entry-panel .ledger-table {
  margin-top: 14px;
}
.entry-doc,
.entry-why {
  font-size: 16.5px;
}
.entry-why {
  margin-top: 14px !important;
  color: var(--muted) !important;
}
.js .entry-panel.is-fresh tbody tr {
  animation: rowIn 420ms var(--ease-reveal) both;
}
.js .entry-panel.is-fresh tbody tr:nth-child(2) {
  animation-delay: 70ms;
}
.js .entry-panel.is-fresh tbody tr:nth-child(3) {
  animation-delay: 140ms;
}
.js .entry-panel.is-fresh tfoot tr {
  animation: rowIn 420ms var(--ease-reveal) 240ms both;
}
@keyframes rowIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
