/* LiftBuddy marketing site
 *
 * Every token here is lifted from the shipped iOS app rather than invented:
 * colours from liftbuddy-mobile/assets/colors/colors.xml and
 * lib/res/customized_theme.dart, typefaces from the app's own font assets,
 * radii and control sizes from lib/widgets/primary_app_button.dart and the
 * measured usage across lib/ (circular(16) for cards, circular(32) for
 * buttons, circular(8) for chips are the three dominant values by a wide
 * margin). If you change something here, change it there first.
 */

/* The app ships these two faces and uses them with a strict division of
 * labour: ClashDisplay for titles and any large number, Jakarta for
 * everything a person reads as a sentence, a label or a button. Both files
 * are converted straight from liftbuddy-mobile/fonts/. */
@font-face {
  font-family: "ClashDisplay";
  src: url("/fonts/ClashDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "ClashDisplay";
  src: url("/fonts/ClashDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* Variable, 200..800 -- one file covers every weight the app uses. */
@font-face {
  font-family: "Jakarta";
  src: url("/fonts/PlusJakartaSans.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  /* Surfaces. `black` is the app's scaffoldBackgroundColor; the two card
   * values are colors.xml's card_background and card_stroke, which are white
   * at 6% and 14% -- the app tints cards by lightening, never by hue. */
  --black: #121212;
  --card: rgba(255, 255, 255, 0.06);
  --card-solid: #1a1c22;
  --stroke: rgba(255, 255, 255, 0.14);

  --white: #ffffff;
  --off-white: #f8f8f8;
  --grey: #797b7c;

  /* Coral is the app's primary_color. In the product it marks a muscle
   * group, a completed set, a streak -- accent, never a whole surface. */
  --coral: #fb6a55;
  --orange: #ff8761;

  /* The macro system. These four gradients are load-bearing meaning in the
   * app, not decoration: calories are blue, protein purple, carbs red, fat
   * pink, on every ring, chip and progress bar. Reusing them for anything
   * else would break the association. */
  --cal-a: #00c9ff;
  --cal-b: #2274f0;
  --pro-a: #667eea;
  --pro-b: #764ba2;
  --carb-a: #d70000;
  --carb-b: #d41872;
  --fat-a: #ff63b1;
  --fat-b: #ff1d8e;

  /* iOS system blue -- the app uses it for inline actions like "Add Food". */
  --link: #007aff;

  --r-card: 16px;
  --r-chip: 8px;
  --r-pill: 32px;

  --gutter: clamp(1.25rem, 5vw, 4.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Jakarta", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.display {
  font-family: "ClashDisplay", "Jakarta", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
}

a {
  color: inherit;
}

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

.wrap {
  width: min(100%, 76rem);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* The app's section header: a small grey uppercase eyebrow sitting directly
 * on top of a large title ("BULKING" over "Check In", over "Dashboard").
 * It appears on nearly every screen, so the site leads with it too. */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 0.6rem;
}

/* ------------------------------------------------------------------ chrome */

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--gutter);
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
}

.masthead__logo {
  display: block;
  width: 8.5rem;
  flex: none;
}

.masthead__logo img {
  display: block;
  width: 100%;
}

.masthead nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  font-size: 0.9rem;
  font-weight: 500;
}

.masthead nav a:not(.btn) {
  text-decoration: none;
  color: var(--grey);
  transition: color 0.18s ease;
}

.masthead nav a:not(.btn):hover,
.masthead nav a:not(.btn):focus-visible {
  color: var(--white);
}

@media (max-width: 34rem) {
  .masthead nav a:not(.btn) {
    display: none;
  }

  .masthead__logo {
    width: 7rem;
  }
}

/* ----------------------------------------------------------------- buttons
 * PrimaryAppButton: 52px tall, 32px radius, Jakarta 700 at 16px. The app's
 * filled button is white with black text -- coral is an accent there, not a
 * button colour, so it isn't one here either. */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: 52px;
  padding-inline: 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

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

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  background: var(--off-white);
}

.btn--ghost {
  border-color: var(--stroke);
  color: var(--white);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--white);
}

.btn--sm {
  height: 40px;
  padding-inline: 1.15rem;
  font-size: 0.875rem;
}

:where(a, button):focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------- hero */

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  padding-block: clamp(3rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem);
}

@media (min-width: 62rem) {
  .hero {
    grid-template-columns: 1.02fr 1fr;
    align-items: center;
  }
}

.hero h1 {
  font-size: clamp(2.75rem, 7.5vw, 5rem);
}

.hero__lede {
  margin: 1.5rem 0 2rem;
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: var(--grey);
  max-width: 36ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.25rem;
}

.hero__price {
  margin: 0;
  font-size: 0.85rem;
  color: var(--grey);
}

/* ------------------------------------------------------------- check-in card
 * The signature. This is the app's weekly Check In screen rebuilt in CSS:
 * four macro rows, seven day rings each, the running total on the right.
 * It is the most recognisable thing LiftBuddy draws, and it carries the
 * macro colour system on its own without needing a caption. */

.panel {
  border: 1px solid var(--stroke);
  border-radius: var(--r-card);
  background: var(--card-solid);
  padding: 1.35rem 1.5rem 1.5rem;
}

.panel__title {
  font-family: "ClashDisplay", sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.1;
  margin: 0 0 1.35rem;
}

.rings {
  display: grid;
  gap: 0.7rem;
}

.rings__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr) auto;
  align-items: center;
  gap: clamp(0.3rem, 1.4vw, 0.6rem);
}

/* One ring. --p is the filled fraction (0..1); --ca and --cb are the macro's
 * gradient stops, run along the arc the way the app's rings do rather than
 * flattened to a single colour -- that gradient is what keeps protein
 * (periwinkle into violet) from reading as another calorie ring. The mask
 * punches the middle out so the conic gradient becomes a stroke. */
.ring {
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    var(--ca),
    var(--cb) calc(var(--p) * 360deg),
    rgba(255, 255, 255, 0.09) 0
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 4px),
    #000 calc(100% - 3px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 4px),
    #000 calc(100% - 3px)
  );
}

.rings__readout {
  padding-left: 0.6rem;
  text-align: right;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.rings__readout span {
  display: block;
  color: var(--grey);
  font-weight: 500;
}

.rings__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr) auto;
  gap: clamp(0.3rem, 1.4vw, 0.6rem);
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--grey);
  text-align: center;
}

.rings__days span,
.rings__days b {
  font-weight: 700;
  color: var(--white);
}

/* Reserves the readout column so the day letters line up under their rings. */
.rings__days i {
  font-style: normal;
  padding-left: 0.6rem;
  visibility: hidden;
}

/* ------------------------------------------------------------------- stats
 * LiftBuddy's own published figures, taken from the live App Store
 * screenshots. Do not inflate these without checking the listing. */

.stats {
  border-block: 1px solid var(--stroke);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
}

.stat {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--stroke);
}

.stat dt {
  font-family: "ClashDisplay", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1;
}

.stat dd {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--grey);
}

/* ---------------------------------------------------------------- features */

.features {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

.feature {
  display: grid;
  gap: 1.75rem 3rem;
  align-items: center;
}

@media (min-width: 56rem) {
  .feature {
    grid-template-columns: 1fr 1fr;
  }

  /* Alternate which side the artifact sits on, the way the App Store
   * screenshots alternate their phone angle. */
  .feature:nth-child(even) .feature__art {
    order: -1;
  }
}

.feature h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 0.9rem;
}

.feature p {
  margin: 0;
  color: var(--grey);
  max-width: 46ch;
}

/* ------------------------------------------------------------- set log art
 * The workout tracker mid-session, from the app's "Train smarter" screen:
 * exercise name, muscle group in coral, then set rows of boxed value chips. */

.set-log__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.set-log__index {
  font-size: 0.78rem;
  color: var(--grey);
  margin: 0 0 0.15rem;
}

.set-log__name {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.set-log__muscle {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
  color: var(--coral);
}

.set-log__timer {
  font-family: "ClashDisplay", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  white-space: nowrap;
}

.set-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--r-chip);
  background: var(--card);
}

.set-row + .set-row {
  margin-top: 0.5rem;
}

.set-row__label {
  font-size: 0.8rem;
  color: var(--grey);
  min-width: 2.9rem;
}

.set-row__label b {
  color: var(--white);
  font-size: 0.95rem;
}

/* The boxed number chips the app uses for editable weight/rep values. */
.chip {
  min-width: 3.4rem;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  background: #333333;
  font-family: "ClashDisplay", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  transition: background 0.35s ease, color 0.35s ease;
}

.set-row__unit {
  font-size: 0.72rem;
  color: var(--grey);
  line-height: 1.15;
}

.set-row__tick {
  margin-left: auto;
  color: var(--coral);
  font-size: 1.05rem;
}

.set-row[data-state="up-next"] {
  background: rgba(251, 106, 85, 0.1);
}

/* Only the value that actually changed lights up. Highlighting the rep chip
 * too would say the coach moved something it didn't. */
.set-row.is-adjusted .chip.is-changed {
  background: var(--coral);
  color: var(--black);
}

.set-log__note {
  display: flex;
  gap: 0.5rem;
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  color: var(--grey);
  min-height: 2.4rem;
}

.set-log__note b {
  color: var(--coral);
  font-weight: 700;
  white-space: nowrap;
}

.set-log__note[hidden] {
  display: none;
}

/* ------------------------------------------------------------- macro chips
 * The weekly check-in's "how your program changed" pills. Each one carries
 * its macro's gradient, same as in the app. */

.deltas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.delta {
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-chip);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.delta--cal {
  background: linear-gradient(100deg, var(--cal-a), var(--cal-b));
}

.delta--pro {
  background: linear-gradient(100deg, var(--pro-a), var(--pro-b));
}

.delta--carb {
  background: linear-gradient(100deg, var(--carb-a), var(--carb-b));
}

.delta--fat {
  background: linear-gradient(100deg, var(--fat-a), var(--fat-b));
}

/* ----------------------------------------------------------------- closing */

.close {
  padding-block: clamp(4rem, 9vw, 7rem);
  text-align: center;
  border-top: 1px solid var(--stroke);
}

.close h2 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
}

.close p {
  color: var(--grey);
  max-width: 44ch;
  margin: 0 auto 2.25rem;
}

/* ------------------------------------------------------------------ footer */

.footer {
  border-top: 1px solid var(--stroke);
  padding-block: 2.25rem 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--grey);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer a {
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--white);
}

/* ------------------------------------------------------------- prose pages */

.prose {
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(4rem, 9vw, 6rem);
  max-width: 44rem;
}

.prose h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  margin-bottom: 1.75rem;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 2.5rem 0 0.65rem;
}

.prose p,
.prose li {
  color: var(--grey);
}

.prose a {
  color: var(--link);
}

.prose ul {
  padding-left: 1.1rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

/* Marks text that is known to be incomplete, so nobody mistakes a holding
 * page for the restored policy. */
.notice {
  border: 1px solid rgba(251, 106, 85, 0.42);
  background: rgba(251, 106, 85, 0.08);
  border-radius: var(--r-card);
  padding: 1.2rem 1.35rem;
  margin-bottom: 2.25rem;
}

.notice p {
  margin: 0;
  color: var(--white);
  font-size: 0.92rem;
}

.notice p + p {
  margin-top: 0.55rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Sections added in the second build-out: how-it-works, capability grid,
   FAQ, expanded footer, and the legal document layout.
   ========================================================================== */

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--stroke);
}

.section__head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__head h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.section__head p {
  margin: 0.9rem 0 0;
  color: var(--grey);
}

/* --- how it works -------------------------------------------------------
 * Numbered because setting up LiftBuddy genuinely is a sequence: you answer
 * the onboarding questions, it builds a program, then it keeps adjusting.
 * The numbers carry the order, they are not ornament. */

.steps {
  display: grid;
  gap: 1px;
  background: var(--stroke);
  border: 1px solid var(--stroke);
  border-radius: var(--r-card);
  overflow: hidden;
}

@media (min-width: 52rem) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: var(--black);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.step__num {
  font-family: "ClashDisplay", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--coral);
  margin: 0 0 0.9rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step p {
  margin: 0;
  color: var(--grey);
  font-size: 0.92rem;
}

/* --- capability grid ---------------------------------------------------- */

/* Explicit column counts rather than auto-fit: there are six tiles, and
 * auto-fit lands on four across at desktop widths, leaving a ragged row of
 * two. Three-up divides evenly. */
.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 42rem) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile {
  border: 1px solid var(--stroke);
  border-radius: var(--r-card);
  background: var(--card);
  padding: 1.35rem 1.4rem;
}

.tile h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.tile p {
  margin: 0;
  color: var(--grey);
  font-size: 0.9rem;
}

/* --- FAQ ----------------------------------------------------------------
 * Native <details> so it works with no JavaScript and is keyboard- and
 * screen-reader-operable for free. */

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--stroke);
}

.faq details {
  border-bottom: 1px solid var(--stroke);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  font-family: "ClashDisplay", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--coral);
  flex: none;
  transition: transform 0.2s ease;
}

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

.faq p {
  margin: 0 0 1.15rem;
  color: var(--grey);
  max-width: 62ch;
}

/* --- expanded footer ---------------------------------------------------- */

.footer-grid {
  display: grid;
  gap: 2.25rem 3rem;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--stroke);
}

.footer-grid h2 {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.9rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.footer-grid a {
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--coral);
}

.footer-grid__brand p {
  margin: 0.75rem 0 0;
  color: var(--grey);
  font-size: 0.9rem;
  max-width: 26ch;
}

/* --- contact cards ------------------------------------------------------ */

.contact-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  margin: 2rem 0 0;
}

.contact-card {
  border: 1px solid var(--stroke);
  border-radius: var(--r-card);
  background: var(--card);
  padding: 1.4rem;
}

.contact-card h2 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.contact-card p {
  margin: 0 0 0.9rem;
  color: var(--grey);
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--link);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  word-break: break-word;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

/* --- legal documents ---------------------------------------------------- */

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 0 0 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--stroke);
  font-size: 0.85rem;
  color: var(--grey);
}

.toc {
  border: 1px solid var(--stroke);
  border-radius: var(--r-card);
  background: var(--card);
  padding: 1.25rem 1.4rem;
  margin-bottom: 2.5rem;
}

.toc h2 {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 0.85rem;
}

.toc ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.toc a {
  color: var(--white);
  text-decoration: none;
}

.toc a:hover,
.toc a:focus-visible {
  color: var(--coral);
}

/* Section headings inside a policy get the number treatment so the document
 * is citable -- "see 7.2" -- the way a real policy needs to be. */
.prose h2[id] {
  scroll-margin-top: 6rem;
  padding-top: 0.5rem;
}

.prose h3 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  margin: 1.6rem 0 0.4rem;
  color: var(--white);
}

/* A definition-style table for the data map. Reads as rows on a phone. */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.75rem 1rem 0.75rem 0;
  border-bottom: 1px solid var(--stroke);
}

.data-table th {
  color: var(--white);
  font-weight: 700;
  width: 34%;
}

.data-table td {
  color: var(--grey);
}

@media (max-width: 40rem) {
  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: auto;
  }

  .data-table tr {
    padding-block: 0.75rem;
    border-bottom: 1px solid var(--stroke);
  }

  .data-table th,
  .data-table td {
    border: 0;
    padding: 0;
  }

  .data-table td {
    margin-top: 0.25rem;
  }
}
