:root {
  --ink: #2a1b5c;
  --ink-2: #362670;
  --ink-3: #221356;
  --panel: #3a2874;
  --lime: #c6f432;
  --lime-ink: #1d143d;
  --white: #ffffff;
  --mist: #f5f3fa;
  --line: #e3e0ec;
  --muted: #6d6588;
  --muted-on-ink: #c9c3dc;
  --shadow: 0 18px 50px rgba(34, 19, 86, 0.16);
  --radius: 28px;
  --wrap: 1120px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
}

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

.mark {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  border-radius: 12px;
  padding: 0.04em 0.22em 0.08em;
  line-height: 1.05;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.btn-lime {
  background: var(--lime);
  color: var(--lime-ink);
}

.btn-lime:hover {
  filter: brightness(1.04);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ddd6f3;
  font-size: 13px;
  font-weight: 600;
}

.eyebrow {
  background: #f3f0fa;
  border: 0;
  color: #7a7198;
}

.section-lead {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  text-align: center;
}

.section-lead.left {
  margin-left: 0;
  text-align: left;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  flex: 0 0 auto;
  position: relative;
}

.check::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.step-dot.lime {
  background: var(--lime);
  color: var(--ink);
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

/* Header */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 20px;
}

.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  position: relative;
  box-shadow: inset 0 0 0 2px var(--lime);
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--ink);
}

.logo-mark::before {
  inset: 8px 4px;
  border-radius: 1px;
}

.logo-mark::after {
  inset: 4px 8px;
  border-radius: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: #efeafc;
  font-size: 14px;
  font-weight: 600;
}

.nav .btn {
  color: var(--lime-ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 28px 0 80px;
  overflow: hidden;
}

.hero-visual,
.phone,
.candidate {
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
  max-width: 12ch;
}

.hero .lead {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--muted-on-ink);
  font-size: 16px;
}

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

.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 8px 0 48px 96px;
}

.phone {
  width: 276px;
  background: var(--white);
  color: var(--ink);
  border-radius: 36px;
  padding: 18px 18px 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.phone-meta {
  display: flex;
  justify-content: space-between;
  color: #9a93b1;
  font-size: 11px;
  font-weight: 600;
}

.phone-progress {
  height: 5px;
  background: #ece8f5;
  border-radius: 999px;
  margin: 12px 0 22px;
  overflow: hidden;
}

.phone-progress i {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--ink);
}

.phone h2 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.choice {
  border: 1.5px solid #e4dff0;
  border-radius: 999px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.choice-on {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.toast {
  position: absolute;
  left: 8px;
  bottom: 64px;
  width: 248px;
  background: var(--white);
  color: var(--ink);
  border-radius: 22px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.toast p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.toast strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

/* Logos */
.logos {
  background: var(--mist);
  padding: 42px 0 48px;
}

.logos-caption {
  text-align: center;
  color: #8a83a3;
  font-size: 14px;
  font-weight: 600;
}

.logo-row {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.logo-row span {
  min-width: 150px;
  min-height: 52px;
  border: 1.5px dashed #c7c0d8;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9a93b0;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
}

/* Feed */
.feed {
  padding: 96px 0 108px;
  text-align: center;
}

.feed h2,
.gears h2,
.journey h2,
.effort h2,
.jobs h2,
.faq h2,
.cta h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.flow {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.flow-card {
  margin: 0;
}

.flow-feed,
.team,
.ad {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(42, 27, 92, 0.06);
}

.flow-feed {
  background: #f7f5fb;
  padding: 22px 18px 8px;
  text-align: left;
}

.skeleton {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
}

.skeleton i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ece8f5;
}

.skeleton b {
  height: 8px;
  flex: 1;
  border-radius: 999px;
  background: #ece8f5;
}

.flow-card figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
}

.flow-arrow {
  width: 56px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    #c9c3d8 0 6px,
    transparent 6px 12px
  );
  position: relative;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: #c9c3d8;
}

.ad {
  border: 3px solid var(--lime);
  padding: 16px;
  text-align: left;
}

.ad header {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.ad header i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
}

.ad header strong,
.team header strong,
.candidate-card header strong {
  display: block;
  font-size: 13px;
}

.ad header em,
.candidate-card em {
  font-style: normal;
  color: #8b84a3;
  font-size: 11px;
}

.ad-art {
  background: var(--ink);
  border-radius: 16px;
  min-height: 148px;
  padding: 16px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ad-chip {
  align-self: flex-start;
  background: rgba(198, 244, 50, 0.18);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 8px;
}

.ad-art p {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ad footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  color: #8b84a3;
  font-size: 11px;
}

.ad-btn {
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: 11px;
}

.team {
  padding: 18px;
  text-align: left;
}

.team header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

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

.avatars i {
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.avatars i::after {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5Z'/></svg>")
    center / contain no-repeat;
}

.a-ink {
  background: var(--ink);
  color: var(--white);
}

.a-lime {
  background: var(--lime);
  color: var(--ink);
}

.a-mist {
  background: #ece8f5;
  color: #9a93b0;
}

/* Gears */
.gears,
.effort,
.quote,
.site-footer {
  background: var(--ink);
  color: var(--white);
}

.gears {
  padding: 92px 0 100px;
}

.gears .section-lead,
.effort .section-lead,
.jobs .section-lead {
  color: var(--muted-on-ink);
}

.gears .section-lead {
  max-width: 560px;
  margin-left: 0;
  text-align: left;
}

.gear-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.panel {
  background: var(--panel);
  border-radius: 28px;
  padding: 28px 24px 32px;
}

.panel h3 {
  margin: 16px 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.panel p {
  color: var(--muted-on-ink);
  font-size: 15px;
}

.num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}

/* Journey */
.journey {
  padding: 96px 0 88px;
}

.journey-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.candidate {
  position: relative;
  min-height: 340px;
}

.candidate-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 22px 24px 18px;
}

.candidate-card header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.avatar-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
}

.avatar-badge::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: var(--white);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5Z'/></svg>")
    center / contain no-repeat;
}

.candidate-card ul {
  list-style: none;
  padding: 0;
}

.candidate-card li {
  display: grid;
  grid-template-columns: 22px 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  font-size: 14px;
}

.candidate-card li span:nth-child(2) {
  color: #7d7696;
}

.candidate-card li b {
  font-weight: 700;
  text-align: right;
}

.meeting {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  box-shadow: var(--shadow);
}

.meeting p {
  font-size: 12px;
  line-height: 1.3;
  color: #d7d1ea;
}

.meeting strong {
  display: block;
  color: var(--white);
  font-size: 13px;
}

.cal {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--lime);
  position: relative;
}

.cal::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid var(--ink);
  border-radius: 3px;
}

.path {
  list-style: none;
  padding: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.path li {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.path strong {
  font-size: 15px;
}

.path small {
  color: var(--muted);
  font-size: 13px;
}

/* Effort */
.effort {
  padding: 96px 0 100px;
}

.effort-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.effort h2 {
  max-width: 10ch;
}

.feature-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}

.icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--lime);
  display: grid;
  place-items: center;
  position: relative;
}

.icon.funnel::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 62% 55%, 62% 100%, 38% 100%, 38% 55%);
}

.icon.tick::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.icon.play::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--ink);
  margin-left: 2px;
}

.icon.chart::after {
  content: "";
  width: 12px;
  height: 10px;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 6px / 3px 4px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 4.5px 3px / 3px 7px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 9px 0 / 3px 10px no-repeat;
}

/* Jobs */
.jobs {
  background: var(--mist);
  padding: 96px 0 88px;
  text-align: center;
}

.tags {
  list-style: none;
  padding: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 640px;
  margin-inline: auto;
}

.tags li {
  background: var(--white);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 1px 0 rgba(42, 27, 92, 0.04);
}

/* Quote */
.quote {
  padding: 88px 0;
  text-align: center;
}

.marks {
  color: var(--lime);
  font-size: 56px;
  line-height: 0.6;
  font-weight: 800;
}

.quote blockquote {
  max-width: 18ch;
  margin: 18px auto 0;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.quote-by {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.quote-by i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
}

.quote-by strong,
.quote-by span {
  display: block;
  font-size: 13px;
}

.quote-by span {
  color: var(--muted-on-ink);
  font-weight: 500;
}

/* FAQ */
.faq {
  background: var(--mist);
  padding: 88px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.faq-list details {
  background: var(--white);
  border-radius: 18px;
  margin-bottom: 12px;
}

.faq-list summary {
  list-style: none;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 16px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "▸";
  color: #b0a9c6;
  font-size: 14px;
}

/* CTA */
.cta {
  background: var(--lime);
  padding: 56px 0;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta h2 {
  max-width: 14ch;
}

/* Footer */
.site-footer {
  padding: 64px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand p {
  margin-top: 12px;
  color: var(--muted-on-ink);
  font-size: 14px;
}

.footer-cols {
  display: flex;
  gap: 72px;
}

.footer-cols h3 {
  color: var(--lime);
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-cols a {
  display: block;
  color: #ddd7ef;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  color: #9c95b5;
  font-size: 13px;
}

/* Mobile */
@media (max-width: 900px) {
  .wrap {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .menu-toggle {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .feed,
  .gears,
  .journey,
  .effort,
  .jobs,
  .quote,
  .faq {
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    padding: 18px 0 88px;
  }

  .hero-grid,
  .journey-top,
  .effort-grid,
  .faq-grid,
  .cta-row,
  .footer-top,
  .gear-grid,
  .feature-grid,
  .flow {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .hero h1,
  .effort h2 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 28px;
    justify-content: center;
    padding: 0 0 48px;
  }

  .phone {
    width: min(320px, 100%);
  }

  .phone h2 {
    font-size: 24px;
  }

  .toast {
    left: 16px;
    right: auto;
    transform: none;
    bottom: -6px;
    width: min(260px, 86%);
  }

  .logos {
    padding: 36px 0 40px;
  }

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

  .logo-row span {
    min-width: 0;
  }

  .feed {
    padding: 64px 0 72px;
  }

  .flow {
    gap: 8px;
  }

  .flow-arrow {
    width: 1px;
    height: 36px;
    margin: 4px auto;
    background: repeating-linear-gradient(
      180deg,
      #c9c3d8 0 6px,
      transparent 6px 12px
    );
  }

  .flow-arrow::after {
    top: auto;
    bottom: -4px;
    right: -4px;
    border-left-color: transparent;
    border-top-color: #c9c3d8;
  }

  .gears,
  .effort {
    padding: 64px 0 72px;
  }

  .gears .section-lead,
  .section-lead.left,
  .section-lead {
    text-align: left;
    margin-left: 0;
  }

  .jobs .section-lead,
  .feed .section-lead {
    text-align: center;
    margin-inline: auto;
  }

  .path {
    grid-template-columns: 1fr;
    padding-top: 36px;
    gap: 18px;
  }

  .cta {
    padding: 48px 0 40px;
    text-align: left;
  }

  .cta h2 {
    max-width: none;
  }

  .footer-top,
  .footer-cols {
    flex-direction: column;
    gap: 28px;
  }

  .site-footer {
    padding-top: 48px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 40px;
  }

  .candidate-card li {
    grid-template-columns: 22px 1fr;
  }

  .candidate-card li b {
    grid-column: 2;
    text-align: left;
  }

  .meeting {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -18px 12px 0 auto;
    width: fit-content;
  }
}
