:root {
  color-scheme: light;
  --green-900: #145a3a;
  --green-800: #1f6f49;
  --green-700: #27865a;
  --green-600: #35a76d;
  --green-500: #52c589;
  --green-200: #c8f0d9;
  --green-100: #e7f8ee;
  --green-50: #f4fbf7;
  --purple-700: #7046bb;
  --purple-100: #f1eafb;
  --ink: #163127;
  --text: #354d43;
  --muted: #6e8179;
  --line: #dbe9e1;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(30, 93, 61, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow-container {
  width: min(920px, calc(100% - 40px));
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--green-50);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 233, 225, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

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

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

.brand-name {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 7px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--green-500), var(--green-700));
  box-shadow: 0 7px 18px rgba(39, 134, 90, 0.24);
}

.brand-mark span {
  display: block;
  border-radius: 3px;
  background: var(--white);
}

.brand-mark span:nth-child(1) { height: 45%; }
.brand-mark span:nth-child(2) { height: 82%; }
.brand-mark span:nth-child(3) { height: 62%; }

.header-nav {
  display: flex;
  gap: 28px;
}

.header-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--green-700);
}

.header-staff-link {
  display: none;
  padding: 8px 13px;
  border: 1px solid var(--green-200);
  border-radius: 999px;
  color: var(--green-800);
  background: var(--green-50);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  padding-top: 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(113, 219, 161, 0.23), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fdf9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto 6% -110px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: var(--green-100);
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--green-700);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-purple {
  color: var(--purple-700);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.35;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(2.35rem, 4.15vw, 3.45rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.12rem;
}

.hero-description,
.body-copy,
.section-description {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-description {
  margin-bottom: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 30px;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 5px 11px;
  border: 1px solid var(--green-200);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.play-cta {
  max-width: 100%;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border-radius: 16px;
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 12px 26px rgba(20, 90, 58, 0.22);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.play-cta small {
  display: block;
  margin-bottom: 3px;
  color: #cbe9d8;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.play-cta-icon {
  font-size: 1.35rem;
}

.play-cta--pending {
  cursor: default;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
}

.play-cta em {
  align-self: flex-start;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #d9f2e4;
  font-size: 0.59rem;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.play-cta--center {
  margin-top: 26px;
}

.text-link {
  color: var(--green-800);
  font-weight: 800;
  text-underline-offset: 5px;
}

.secondary-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 21px;
  border: 1px solid var(--green-200);
  border-radius: 14px;
  color: var(--green-800);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.secondary-cta:hover,
.secondary-cta:focus-visible {
  border-color: var(--green-600);
  box-shadow: 0 8px 22px rgba(20, 90, 58, 0.1);
  transform: translateY(-1px);
}

.hero-overview {
  position: relative;
  min-width: 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(200, 240, 217, 0.9);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(82, 197, 137, 0.2), transparent 35%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(20, 90, 58, 0.15);
}

.hero-overview::before,
.hero-overview::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.hero-overview::before {
  top: -30px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--green-100);
}

.hero-overview::after {
  bottom: -28px;
  left: -20px;
  width: 82px;
  height: 82px;
  background: var(--purple-100);
}

.overview-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.overview-heading div,
.overview-flow div {
  min-width: 0;
}

.overview-heading small,
.overview-heading strong,
.overview-flow small,
.overview-flow strong {
  display: block;
}

.overview-heading small {
  color: var(--green-700);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.overview-heading strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.overview-logo {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-500), var(--green-700));
  box-shadow: 0 8px 20px rgba(39, 134, 90, 0.24);
  font-weight: 900;
}

.overview-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin: 28px 0;
}

.overview-flow article {
  min-width: 0;
  text-align: center;
}

.overview-flow article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 11px;
  color: var(--green-800);
  background: var(--green-100);
  font-size: 0.78rem;
  font-weight: 900;
}

.overview-flow small {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.overview-flow strong {
  color: var(--ink);
  font-size: clamp(0.72rem, 1.5vw, 0.88rem);
}

.overview-flow i {
  color: var(--green-600);
  font-style: normal;
  font-weight: 900;
}

.overview-results {
  display: grid;
  gap: 9px;
  padding: 18px;
  border-radius: 18px;
  background: var(--green-50);
}

.overview-results span {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.overview-results b {
  color: var(--green-700);
  margin-right: 6px;
}

.mobile-break {
  display: none;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(340px, 82vw);
  padding: 15px;
  border: 6px solid #1c332a;
  border-radius: 45px;
  background: #1c332a;
  box-shadow: 0 34px 75px rgba(16, 57, 39, 0.23);
  transform: rotate(2deg);
}

.phone-speaker {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 8px;
  border-radius: 10px;
  background: #1c332a;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 526px;
  padding: 38px 18px 20px;
  border-radius: 30px;
  background: #f7fbf8;
}

.mock-appbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.mock-logo {
  color: var(--green-800);
  font-weight: 900;
}

.mock-week {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.mock-calendar {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(44, 100, 70, 0.08);
}

.mock-days,
.mock-person {
  display: grid;
  grid-template-columns: 34px repeat(4, 1fr);
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid #edf3ef;
}

.mock-days {
  grid-template-columns: repeat(5, 1fr);
  min-height: 38px;
  color: var(--muted);
  background: var(--green-50);
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
}

.mock-person:last-child {
  border-bottom: 0;
}

.mock-person i {
  width: 20px;
  height: 20px;
  margin-left: 9px;
  border-radius: 50%;
  background: #d8e9df;
}

.shift {
  height: 15px;
  margin-inline: 4px;
  border-radius: 5px;
}

.shift-a { grid-column: 2 / 4; background: #75d39f; }
.shift-b { grid-column: 4 / 6; background: #ffd475; }
.shift-c { grid-column: 3 / 5; background: #86bdf5; }
.shift-d { grid-column: 5 / 6; background: #ef9caa; }
.shift-e { grid-column: 2 / 3; background: #bd9ced; }
.shift-f { grid-column: 3 / 6; background: #78cdb9; }
.shift-g { grid-column: 2 / 5; background: #f3b06f; }

.mock-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px;
  border-radius: 14px;
  background: var(--green-100);
}

.mock-notice > span {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-600);
  font-weight: 900;
}

.mock-notice p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  font-size: 0.86rem;
  font-weight: 800;
}

.floating-card span {
  color: var(--green-700);
  font-size: 1.2rem;
}

.floating-card--top {
  top: 90px;
  right: -5px;
}

.floating-card--bottom {
  bottom: 92px;
  left: -16px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.pain-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.soft-card,
.feature-card,
.screen-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(31, 111, 73, 0.06);
}

.pain-card {
  padding: 25px;
}

.pain-card h3 {
  margin: 16px 0 8px;
}

.pain-card p,
.feature-card p,
.screen-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-number {
  color: var(--green-600);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.shift-change-section {
  background: linear-gradient(145deg, #fbf9ff, var(--purple-100));
}

.change-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
}

.change-flow article {
  padding: 28px 22px;
  border: 1px solid #ded1f4;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.flow-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 17px;
  background: var(--purple-100);
  font-size: 1.45rem;
}

.change-flow small,
.change-flow strong {
  display: block;
}

.change-flow small {
  color: var(--purple-700);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.change-flow strong {
  margin: 3px 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.change-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.flow-arrow {
  align-self: center;
  color: var(--purple-700);
  font-size: 1.45rem;
  font-weight: 900;
}

.section-lead {
  margin: 34px 0 0;
  color: var(--purple-700);
  font-size: 1.12rem;
  font-weight: 800;
  text-align: center;
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 80px;
}

.guide-steps {
  position: relative;
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-steps::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 25px;
  width: 2px;
  background: var(--green-200);
}

.guide-steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(31, 111, 73, 0.06);
}

.guide-steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  z-index: 1;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-600);
  font-weight: 900;
}

.guide-steps strong,
.guide-steps small {
  display: block;
}

.guide-steps strong {
  color: var(--ink);
}

.guide-steps small {
  color: var(--muted);
}

.feature-card {
  position: relative;
  padding: 28px 24px;
  overflow: hidden;
}

.feature-card > span,
.feature-icon {
  min-width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  padding-inline: 10px;
  border-radius: 15px;
  color: var(--green-800);
  background: var(--green-100);
  font-size: 0.88rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 18px 0 7px;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-50);
}

.feature-icon--text {
  font-size: 0.68rem !important;
  letter-spacing: 0.04em;
}

.feature-grid--eight {
  row-gap: 22px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: how-step;
}

.how-grid li {
  position: relative;
  min-width: 0;
  padding: 31px 27px 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(31, 111, 73, 0.07);
}

.how-grid li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -17px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green-200);
  border-radius: 50%;
  color: var(--green-700);
  background: var(--white);
  font-weight: 900;
  transform: translateY(-50%);
}

.how-grid span,
.how-grid strong {
  display: block;
}

.how-grid span {
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.how-grid strong {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 1.08rem;
}

.how-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.guide-note {
  max-width: 820px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin: 30px auto 0;
  padding: 22px 25px;
  border: 1px solid var(--green-200);
  border-radius: 20px;
  background: var(--green-50);
}

.guide-note > span {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-600);
  font-weight: 900;
}

.guide-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.guide-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.staff-web-section {
  color: #d9f2e4;
  background:
    radial-gradient(circle at 85% 10%, rgba(82, 197, 137, 0.26), transparent 28%),
    linear-gradient(140deg, #123f2c, #1d704d);
}

.staff-web-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(44px, 8vw, 96px);
}

.staff-web-section h2,
.staff-web-section .eyebrow {
  color: var(--white);
}

.staff-web-section .body-copy {
  color: #d9f2e4;
}

.staff-web-note {
  margin-bottom: 24px;
  color: #bad9c8;
  font-size: 0.8rem;
}

.secondary-cta--light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--green-900);
  background: var(--white);
}

.staff-web-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.staff-web-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.09);
}

.staff-web-list li > span {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--green-900);
  background: #bceccb;
  font-weight: 900;
}

.staff-web-list strong,
.staff-web-list small {
  display: block;
}

.staff-web-list strong {
  color: var(--white);
}

.staff-web-list small {
  color: #c9e3d4;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.screen-card {
  padding: 14px 14px 23px;
}

.screen-card h3,
.screen-card p {
  margin-inline: 8px;
}

.screen-card h3 {
  margin-top: 20px;
  margin-bottom: 6px;
}

.screen-placeholder {
  aspect-ratio: 4 / 5;
  display: grid;
  place-content: center;
  gap: 10px;
  border-radius: 16px;
  color: var(--green-800);
  background:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    repeating-linear-gradient(0deg, transparent 0 45px, rgba(39, 134, 90, 0.12) 45px 46px),
    var(--green-100);
  text-align: center;
}

.screen-placeholder--mint {
  color: #287e71;
  background-color: #e2f7f2;
}

.screen-placeholder--purple {
  color: var(--purple-700);
  background-color: var(--purple-100);
}

.screen-placeholder span {
  font-size: 2.2rem;
  font-weight: 900;
}

.screen-placeholder small {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.brand-message {
  padding-top: 38px;
}

.brand-message-card {
  padding: clamp(42px, 7vw, 74px);
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(114, 224, 165, 0.44), transparent 30%),
    linear-gradient(140deg, #144f35, #1f7450);
  box-shadow: 0 26px 70px rgba(20, 79, 53, 0.22);
  text-align: center;
}

.brand-message-card h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.4;
}

.brand-message-card p {
  color: #d9f2e4;
  font-size: 1.05rem;
}

.brand-message-card strong {
  display: block;
  margin-top: 25px;
  color: #ffffff;
  font-size: 1.08rem;
}

.brand-message-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 15px;
  color: var(--green-900);
  background: var(--white);
  font-weight: 900;
}

.final-cta {
  text-align: center;
}

.final-cta p:not(.eyebrow) {
  color: var(--muted);
}

.site-footer {
  padding: 54px 0 28px;
  color: #bdd5c8;
  background: #102f22;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-inner strong {
  color: var(--white);
  font-size: 1.14rem;
}

.footer-inner p {
  margin: 6px 0 0;
  font-size: 0.82rem;
}

.footer-brand small {
  display: block;
  margin-top: 10px;
  color: #93b9a4;
  font-size: 0.75rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-inner a {
  font-size: 0.84rem;
  text-underline-offset: 4px;
}

.footer-inner nav span {
  color: #8cac9b;
  font-size: 0.84rem;
}

.copyright {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.74rem;
}

@media (max-width: 900px) {
  .section {
    padding: 78px 0;
  }

  .hero-grid,
  .guide-grid,
  .staff-web-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

  .cta-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 555px;
  }

  .hero-overview {
    max-width: 680px;
    margin-inline: auto;
  }

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

  .guide-grid {
    gap: 42px;
  }

  .staff-web-grid {
    gap: 38px;
  }

  .guide-grid > div:first-child {
    max-width: 650px;
    text-align: center;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow-container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 66px 0;
  }

  .header-inner {
    min-height: 62px;
  }

  .header-nav {
    display: none;
  }

  .header-staff-link {
    display: inline-flex;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2rem, 9.2vw, 2.65rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .hero-description br {
    display: none;
  }

  .hero-tags {
    justify-content: center;
  }

  .mobile-break {
    display: initial;
  }

  .hero-overview {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .overview-flow {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .overview-flow article {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: var(--green-50);
    text-align: left;
  }

  .overview-flow article > span {
    margin: 0;
  }

  .overview-flow i {
    justify-self: center;
    line-height: 1;
    transform: rotate(90deg);
  }

  .overview-flow strong {
    font-size: 0.88rem;
  }

  .hero-visual {
    min-height: 500px;
  }

  .phone-shell {
    width: min(300px, 82vw);
  }

  .phone-screen {
    min-height: 464px;
  }

  .floating-card {
    padding: 10px 13px;
    font-size: 0.74rem;
  }

  .floating-card--top {
    right: 0;
  }

  .floating-card--bottom {
    left: 0;
  }

  .pain-grid,
  .feature-grid,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-grid li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -17px;
    transform: translateX(50%) rotate(90deg);
  }

  .change-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
    justify-self: center;
    line-height: 1;
  }

  .desktop-break {
    display: none;
  }

  .guide-steps li {
    padding-right: 13px;
  }

  .screen-grid {
    max-width: 390px;
    margin-inline: auto;
  }

  .screen-placeholder {
    aspect-ratio: 5 / 4;
  }

  .brand-message-card {
    border-radius: 24px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-inner nav {
    display: grid;
    gap: 13px;
  }
}

@media (max-width: 390px) {
  .play-cta {
    width: 100%;
    justify-content: center;
  }

  .play-cta em {
    display: none;
  }

  .secondary-cta {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .phone-shell {
    width: 276px;
  }

  .phone-screen {
    min-height: 430px;
    padding-inline: 13px;
  }

  .floating-card--top {
    top: 72px;
  }

  .floating-card--bottom {
    bottom: 64px;
  }
}

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