:root {
  color-scheme: light;

  --bg: #f4f6f5;
  --surface: #ffffff;
  --surface-sunk: #f7f9f8;
  --ink: #1b2321;
  --ink-2: #4a5451;
  --ink-3: #75807c;
  --line: #d8dfdc;
  --line-strong: #c1cac6;
  --green: #0f6660;
  --green-deep: #0b4f4a;
  --green-tint: #e2efec;
  --green-mark: #c3e2da;
  --high: #b83b16;
  --high-tint: #fbece5;
  --busy: #c9d2ce;
  --past: #e3e8e6;
  --closed: repeating-linear-gradient(-45deg, #e9edeb 0 5px, #f5f7f6 5px 10px);

  --font: "IBM Plex Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --step-gap: clamp(56px, 7vw, 96px);
  --header-h: 64px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
dt {
  font-feature-settings: "palt";
  font-weight: 700;
  text-wrap: balance;
  word-break: auto-phrase;
}

p,
li,
dd {
  text-wrap: pretty;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-deep);
}

:focus-visible {
  outline: 3px solid rgba(15, 102, 96, 0.45);
  outline-offset: 2px;
  border-radius: 6px;
}

code {
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0;
  color: var(--ink-2);
  background: var(--surface-sunk);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 5px;
  white-space: nowrap;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--surface);
  color: var(--ink);
}

.keep {
  display: inline-block;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.btn--lg {
  min-height: 52px;
  padding: 0 24px;
  font-size: 1rem;
}

.btn--primary {
  background: var(--green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-deep);
  color: #fff;
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink-3);
  background: var(--surface);
  color: var(--ink);
}

.btn--quiet {
  padding-inline: 10px;
  color: var(--ink-2);
}

.btn--quiet:hover {
  color: var(--ink);
  text-decoration: underline;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 246, 245, 0.88);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  backdrop-filter: saturate(1.4) blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand__mark {
  width: 28px;
  height: 28px;
  flex: none;
}

.brand__name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand__sub {
  font-size: 0.75rem;
  color: var(--ink-3);
}

.site-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 0.9375rem;
}

.site-nav a {
  color: var(--ink-2);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.hero {
  padding-block: clamp(40px, 7vw, 96px) clamp(64px, 9vw, 128px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.hero__copy {
  padding-top: clamp(8px, 3.5vw, 48px);
}

.hero__title {
  font-size: clamp(2.25rem, 4.4vw, 3.375rem);
  line-height: 1.3;
  letter-spacing: 0;
}

.hero__title span {
  display: inline-block;
}

.hero__lead {
  margin-top: 28px;
  max-width: 31em;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.25vw, 1.0625rem);
}

.hero__human {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--green-deep);
  font-weight: 500;
}

.hero__human::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__fine {
  margin-top: 20px;
  color: var(--ink-3);
  font-size: 0.8125rem;
}

.hero__demo {
  display: grid;
  min-width: 0;
}

.mail {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 1px 1px rgba(27, 35, 33, 0.04), 0 20px 44px -28px rgba(11, 79, 74, 0.4);
}

.mail--in {
  width: 88%;
}

.mail--draft {
  width: 88%;
  margin-left: auto;
}

.mail__head {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 12px 76px 10px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--ink-3);
}

.mail--draft .mail__head {
  padding-right: 16px;
}

.mail__row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mail__row > span:last-child {
  min-width: 0;
  overflow: hidden;
  color: var(--ink-2);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mail__key {
  flex: none;
  width: 3.4em;
}

.mail__body {
  display: grid;
  gap: 10px;
  padding: 14px 18px 18px;
  font-size: 0.875rem;
  line-height: 1.8;
}

.label-chip {
  position: absolute;
  top: 12px;
  right: 14px;
  padding: 0 8px;
  border-radius: 4px;
  background: var(--green-tint);
  color: var(--green-deep);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.8;
}

.draft-chip,
.temp-chip {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.8;
}

.draft-chip {
  padding: 0 8px;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
}

.mail__row > .temp-chip:last-child,
.extract .temp-chip {
  padding: 0 10px;
  border-radius: 999px;
  background: var(--high-tint);
  color: var(--high);
}

mark {
  padding-inline: 1px;
  background: linear-gradient(transparent 56%, var(--green-mark) 56%);
  color: inherit;
}

.slots {
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--green-tint);
  color: var(--green-deep);
  font-size: 0.8125rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  list-style: none;
}

.slots li::before {
  content: "・";
}

.ripple {
  width: 88%;
  height: 76px;
  padding-left: 18%;
}

.ripple svg {
  width: 76px;
  height: 76px;
  overflow: visible;
}

.ripple circle {
  fill: var(--green);
}

.ripple path {
  fill: none;
  stroke: var(--green);
  stroke-width: 7;
  stroke-linecap: round;
}

.ripple path + path {
  opacity: 0.5;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .ripple circle {
    transform-box: fill-box;
    transform-origin: center;
    animation: ripple-dot 0.45s ease-out 0.2s both;
  }

  .ripple path {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: ripple-draw 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.45s forwards;
  }

  .ripple path + path {
    animation-delay: 0.7s;
  }

  .mail--draft {
    animation: draft-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 1.05s both;
  }
}

@keyframes ripple-dot {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
}

@keyframes ripple-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draft-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* ---------- sections ---------- */

.section {
  padding-block: clamp(64px, 9vw, 128px);
  border-top: 1px solid var(--line);
}

.section__title {
  max-width: 22em;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  line-height: 1.4;
}

.section__lead {
  max-width: 38em;
  margin-top: 16px;
  color: var(--ink-2);
}

/* video */

.video__frame {
  margin-top: 36px;
  overflow: hidden;
  background: var(--green-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 28px 64px -40px rgba(11, 79, 74, 0.6);
}

.video__frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* handover */

.handover {
  margin-top: 44px;
  border-top: 2px solid var(--ink);
}

.handover__row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 32px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.handover__row > span:first-child {
  color: var(--ink-3);
}

.handover__row > span:last-child {
  font-weight: 500;
}

.handover__row--head {
  padding-block: 12px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.handover__row--head > span:first-child,
.handover__row--head > span:last-child {
  color: var(--ink-2);
  font-weight: 700;
}

.handover__row--human {
  margin-top: 12px;
  padding-inline: 20px;
  border-bottom: 0;
  border-radius: 10px;
  background: var(--green-tint);
}

.handover__row--human > span:first-child {
  color: var(--green-deep);
}

.handover__row--human > span:last-child {
  color: var(--green-deep);
  font-weight: 700;
}

/* steps */

.steps {
  display: grid;
  gap: var(--step-gap);
  margin-top: 56px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  counter-increment: step;
}

.step--wide {
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.step--wide .step__text {
  max-width: calc(40em + 68px);
}

.step--wide .step__visual {
  padding-left: 68px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 54px;
  bottom: calc(-1 * var(--step-gap) + 10px);
  left: 21px;
  width: 2px;
  border-radius: 2px;
  background: var(--green-mark);
}

.step__text {
  position: relative;
  padding-left: 68px;
}

.step__text::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--bg);
  color: var(--green);
  font-size: 1.125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.step__title {
  padding-top: 4px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.5;
}

.step__text p {
  margin-top: 14px;
  color: var(--ink-2);
}

.step__text .step__note {
  color: var(--ink-3);
  font-size: 0.875rem;
  line-height: 1.8;
}

.step__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.providers {
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  list-style: none;
}

.providers li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "name button"
    "desc button";
  column-gap: 16px;
  padding: 18px 20px;
}

.providers li + li {
  border-top: 1px solid var(--line);
}

.providers__name {
  grid-area: name;
  font-weight: 700;
}

.providers__desc {
  grid-area: desc;
  color: var(--ink-3);
  font-size: 0.8125rem;
}

.providers__button {
  grid-area: button;
  align-self: center;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

.inbox {
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  list-style: none;
}

.inbox__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "from verdict"
    "subject verdict";
  column-gap: 16px;
  padding: 14px 18px;
}

.inbox__item + .inbox__item {
  border-top: 1px solid var(--line);
}

.inbox__from,
.inbox__subject {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inbox__from {
  grid-area: from;
  color: var(--ink-3);
  font-size: 0.75rem;
}

.inbox__subject {
  grid-area: subject;
  font-size: 0.9375rem;
}

.inbox__verdict {
  grid-area: verdict;
  align-self: center;
  padding: 1px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.inbox__item.is-in .inbox__verdict {
  background: var(--green-tint);
  color: var(--green-deep);
}

.inbox__item.is-out {
  background: var(--surface-sunk);
}

.inbox__item.is-out .inbox__subject {
  color: var(--ink-3);
}

.inbox__item.is-out .inbox__verdict {
  border: 1px solid var(--line);
  color: var(--ink-3);
}

.extract {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.extract__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.extract__name {
  font-size: 1.125rem;
  font-weight: 700;
}

.extract__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  padding: 18px 20px;
}

.extract__grid > div {
  min-width: 0;
}

.extract__grid .is-wide {
  grid-column: 1 / -1;
}

.extract__grid dt {
  color: var(--ink-3);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
}

.extract__grid dd {
  font-size: 0.875rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.extract__grid dd.is-empty {
  color: var(--ink-3);
}

.extract__quote {
  margin: 0 20px 20px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--green-tint);
}

.extract__quote p {
  font-size: 0.9375rem;
  font-weight: 500;
}

.extract__quote footer {
  margin-top: 4px;
  color: var(--green-deep);
  font-size: 0.75rem;
}

/* days: 空き時間帯と選んだ日時の図 */

.days {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.days__wish {
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  background: var(--surface-sunk);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.days__wish-label {
  color: var(--ink-3);
  font-size: 0.75rem;
  font-weight: 500;
}

.days__wish-text {
  font-size: 0.9375rem;
  font-weight: 500;
}

.days__chart {
  display: grid;
  gap: 6px;
}

.days__scale,
.days__row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
}

.days__ticks {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  color: var(--ink-3);
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.days__label {
  color: var(--ink-2);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.days__label--closed {
  color: var(--ink-3);
  font-weight: 500;
}

.days__bar {
  position: relative;
  height: 18px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--green-tint);
}

.days__bar--closed {
  background: var(--closed);
}

.days__seg {
  position: absolute;
  top: 0;
  bottom: 0;
}

.days__seg--past {
  background: var(--past);
}

.days__seg--busy {
  background: var(--busy);
}

.days__seg--pick {
  background: var(--green);
}

.days__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding: 0;
  color: var(--ink-3);
  font-size: 0.75rem;
  line-height: 1.6;
  list-style: none;
}

.days__legend li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.days__legend li::before {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--swatch);
}

.days__out {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--green-tint);
  color: var(--green-deep);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
  list-style: none;
}

.days__note {
  margin-top: 12px;
  color: var(--ink-3);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.shot {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 44px -30px rgba(11, 79, 74, 0.45);
}

.shot img {
  width: 100%;
}

/* principles */

.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  column-gap: 48px;
  margin-top: 40px;
}

.principles__item {
  padding-block: 24px;
  border-top: 1px solid var(--line);
}

.principles dt {
  font-size: 1.0625rem;
}

.principles dd {
  margin-top: 8px;
  color: var(--ink-2);
  font-size: 0.9375rem;
}

/* data */

.table-scroll {
  margin-top: 36px;
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.scopes {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.75;
}

.scopes th,
.scopes td {
  padding: 14px 20px;
  text-align: left;
  vertical-align: top;
}

.scopes thead th {
  color: var(--ink-3);
  font-size: 0.8125rem;
  font-weight: 700;
}

.scopes tbody tr {
  border-top: 1px solid var(--line);
}

.scopes tbody th {
  font-weight: 700;
  white-space: nowrap;
}

.scopes td:nth-child(2) {
  white-space: nowrap;
}

.data-notes {
  display: grid;
  gap: 8px;
  max-width: 46em;
  margin-top: 32px;
  padding-left: 1.25em;
  color: var(--ink-2);
}

.data-policy {
  margin-top: 24px;
  font-weight: 500;
}

/* company */

.company {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.company .btn {
  margin-top: 32px;
}

.company__facts {
  border-top: 2px solid var(--ink);
}

.company__facts > div {
  display: grid;
  grid-template-columns: 7.5em minmax(0, 1fr);
  gap: 16px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}

.company__facts dt {
  color: var(--ink-3);
  font-size: 0.875rem;
}

.company__facts dd {
  overflow-wrap: anywhere;
}

/* footer */

.site-footer {
  padding-block: 32px 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 0.8125rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 32px;
}

.site-footer__brand {
  color: var(--ink-2);
  font-weight: 500;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.site-footer__links a {
  color: var(--ink-2);
}

.site-footer__copy {
  margin-left: auto;
}

/* ---------- responsive ---------- */

@media (max-width: 1040px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__demo {
    max-width: 640px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .site-header__actions {
    margin-left: auto;
  }

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

  .step__visual {
    padding-left: 68px;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand__sub {
    display: none;
  }

  .mail--in,
  .mail--draft,
  .ripple {
    width: 100%;
  }

  .ripple {
    height: 64px;
    padding-left: 12%;
  }

  .ripple svg {
    width: 64px;
    height: 64px;
  }

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

  .handover__row--head {
    display: none;
  }

  .handover__row > span:first-child {
    font-size: 0.8125rem;
  }

  .step__text {
    padding-left: 56px;
  }

  .step__text::before {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .step:not(:last-child)::after {
    left: 18px;
    top: 48px;
  }

  .step__visual,
  .step--wide .step__visual {
    padding-left: 0;
  }

  .days {
    padding: 18px;
  }

  .days__scale,
  .days__row {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 8px;
  }

  .providers li {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "name"
      "desc"
      "button";
  }

  .providers__button {
    justify-self: start;
    margin-top: 10px;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
  }

  .company__facts > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }

  .site-footer__copy {
    margin-left: 0;
  }
}
