/* ==========================================================================
   ヘルプル コーポレートサイト共通スタイル
   ========================================================================== */

:root {
  /* Brand green */
  --green-900: #064e3b;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --green-100: #d1fae5;
  --green-50: #ecfdf5;

  /* Neutrals */
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-300: #cbd5e1;
  --ink-100: #f1f5f9;
  --ink-50: #f8fafc;
  --white: #ffffff;

  /* Section accents */
  --store-color: #334155;
  --store-bg: #f1f5f9;
  --worker-color: #059669;
  --worker-bg: #ecfdf5;

  /* Layout */
  --max-width: 1120px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(6, 78, 59, 0.14);

  --font-body: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium",
    "Yu Gothic", "Segoe UI", Meiryo, system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------- */
/* Layout helpers */
/* --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--alt {
  background: var(--ink-50);
}

.section--brand {
  background: linear-gradient(160deg, var(--green-900), var(--green-700) 60%, var(--green-600));
  color: var(--white);
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-700);
  background: var(--green-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-600);
}

.section-title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink-900);
}

.section-lead {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.9;
}

/* --------------------------------------------------------------------- */
/* Buttons */
/* --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease,
    color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(5, 150, 105, 0.32);
}

.btn-primary:hover {
  background: var(--green-700);
}

.btn-light {
  background: var(--white);
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: var(--green-50);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--ink-300);
}

.btn-outline-dark:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* --------------------------------------------------------------------- */
/* Header / Nav */
/* --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--ink-100);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink-900);
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.brand__text {
  letter-spacing: -0.01em;
}

.brand__logo {
  height: 40px;
  width: auto;
}

.brand__sub {
  display: none;
}

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

.main-nav a {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover {
  color: var(--green-700);
  background: var(--green-50);
}

.main-nav a.is-active {
  color: var(--green-700);
  background: var(--green-50);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink-900);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    gap: 2px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 16px;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* --------------------------------------------------------------------- */
/* Hero */
/* --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--green-100), transparent);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

.hero h1 em {
  font-style: normal;
  color: var(--green-700);
}

.hero p.lead {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-700);
  max-width: 52ch;
  line-height: 1.9;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1px solid var(--ink-100);
}

.hero__panel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--ink-100);
}

.hero__panel-row:last-child {
  border-bottom: none;
}

.hero__panel-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__panel-row strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink-900);
}

.hero__panel-row span {
  font-size: 13.5px;
  color: var(--ink-500);
}

/* Inner page hero variants */
.page-hero {
  padding: 64px 0 72px;
}

.page-hero .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.page-hero .eyebrow::before {
  background: var(--white);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.45;
  color: var(--white);
}

.page-hero p.lead {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
  font-size: 16.5px;
}

.page-hero--stores {
  background: linear-gradient(160deg, var(--store-color), #1e293b 70%);
}

.page-hero--workers {
  background: linear-gradient(160deg, var(--green-900), var(--green-700) 70%);
}

.page-hero--about {
  background: linear-gradient(160deg, #052e2b, var(--green-800, #065f46) 70%);
}

.page-hero--contact {
  background: linear-gradient(160deg, var(--green-900), var(--green-600) 80%);
}

.page-hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------- */
/* Feature / card grids */
/* --------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

@media (max-width: 900px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 10px;
}

.card p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.8;
}

/* Problem / solution split cards */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 760px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--ink-100);
}

.audience-card--store {
  background: var(--store-bg);
}

.audience-card--worker {
  background: var(--worker-bg);
}

.audience-card__tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  color: var(--white);
}

.audience-card--store .audience-card__tag {
  background: var(--store-color);
}

.audience-card--worker .audience-card__tag {
  background: var(--worker-color);
}

.audience-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--ink-900);
}

.audience-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.audience-card li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.8;
}

.audience-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.audience-card--store li::before {
  color: var(--store-color);
}

.audience-card--worker li::before {
  color: var(--worker-color);
}

/* --------------------------------------------------------------------- */
/* Steps */
/* --------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  counter-reset: step;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}

.step__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.step p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.75;
}

/* --------------------------------------------------------------------- */
/* Tag chips (skill-tag motif) */
/* --------------------------------------------------------------------- */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 13.5px;
  font-weight: 700;
}

/* --------------------------------------------------------------------- */
/* Two-column split section */
/* --------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.split-reverse .split__media {
  order: 2;
}

.split__media {
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--green-100);
}

/* --------------------------------------------------------------------- */
/* CTA banner */
/* --------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  max-width: 48ch;
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------- */
/* Pricing / highlight box */
/* --------------------------------------------------------------------- */
.highlight-box {
  border: 1.5px solid var(--green-200, var(--green-100));
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.highlight-box h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 12px;
}

.highlight-box p {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.85;
}

/* --------------------------------------------------------------------- */
/* Table (info table for about page) */
/* --------------------------------------------------------------------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--ink-100);
}

.info-table tr {
  border-bottom: 1px solid var(--ink-100);
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 18px 24px;
  font-size: 14.5px;
  vertical-align: top;
}

.info-table th {
  width: 34%;
  color: var(--ink-500);
  font-weight: 700;
  background: var(--ink-50);
}

.info-table td {
  color: var(--ink-900);
}

@media (max-width: 640px) {
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    padding-bottom: 4px;
    border-bottom: none;
  }

  .info-table td {
    padding-top: 0;
    padding-bottom: 20px;
  }
}

/* --------------------------------------------------------------------- */
/* FAQ (details/summary) */
/* --------------------------------------------------------------------- */
.faq-item {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 6px 24px;
  margin-bottom: 14px;
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 32px 18px 0;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink-900);
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 22px;
  font-weight: 400;
  color: var(--green-600);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: 20px;
  color: var(--ink-500);
  font-size: 14.5px;
  line-height: 1.85;
}

/* --------------------------------------------------------------------- */
/* Contact page specifics */
/* --------------------------------------------------------------------- */
.contact-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}

.contact-method__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--white);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method__label {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 600;
}

.contact-method__value {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink-900);
  word-break: break-all;
}

.contact-method__value a:hover {
  color: var(--green-700);
}

.copy-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--green-600);
  color: var(--green-700);
  font-size: 13.5px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.copy-btn:hover {
  background: var(--green-600);
  color: var(--white);
}

.copy-btn.is-copied {
  background: var(--green-600);
  color: var(--white);
}

.notice-box {
  border-left: 4px solid var(--green-500);
  background: var(--green-50);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.8;
}

/* --------------------------------------------------------------------- */
/* Footer */
/* --------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--ink-300);
  line-height: 1.8;
  max-width: 32ch;
}

.footer-col h5 {
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--ink-300);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--ink-500);
}

/* --------------------------------------------------------------------- */
/* Misc utilities */
/* --------------------------------------------------------------------- */
.text-center {
  text-align: center;
}

@media (max-width: 600px) {
  br.hide-sm {
    display: none;
  }
}

.mt-0 {
  margin-top: 0;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roadmap-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-100);
}

.roadmap-row:last-child {
  border-bottom: none;
}

.roadmap-row__badge {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink-300);
  white-space: nowrap;
}

.roadmap-row__badge--now {
  background: var(--green-600);
}

.roadmap-row__text strong {
  display: block;
  font-size: 15px;
  color: var(--ink-900);
  margin-bottom: 2px;
}

.roadmap-row__text span {
  font-size: 13.5px;
  color: var(--ink-500);
}
