:root {
  --navy: #061b49;
  --ink: #132b5d;
  --blue: #075fe8;
  --blue-deep: #0045b8;
  --green: #13a56b;
  --orange: #f39800;
  --yellow: #ffc928;
  --line: #dbe7f6;
  --soft: #f6faff;
  --muted: #526784;
  --shadow: 0 18px 48px rgb(6 27 73 / 9%);
  --page-max: 1120px;
  --page-gutter: clamp(40px, 8vw, 168px);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  color: var(--navy);
  font-size: clamp(34px, 3.45vw, 48px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 22px;
}
h2 {
  color: var(--navy);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 30px;
}
h3 { color: var(--navy); font-size: 18px; font-weight: 700; line-height: 1.45; margin-bottom: 8px; }
p { color: var(--muted); line-height: 1.85; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.site-header-inner,
.container,
.hero,
.tag-strip {
  width: min(var(--page-max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}
.site-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 700;
  white-space: nowrap;
}
.brand-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-pill {
  min-width: 108px;
  padding: 12px 22px;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  background: var(--navy);
}

.hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  padding: 56px 0 48px;
}
.hero-copy p {
  max-width: 560px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}
.btn {
  min-width: 230px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 30px;
  border-radius: 14px;
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}
.btn.outline {
  color: var(--blue);
  background: #fff;
  border-color: var(--blue);
}
.btn.yellow {
  color: var(--navy);
  background: linear-gradient(135deg, #ffd84a, #f5a900);
}
.btn.ghost {
  color: #fff;
  background: transparent;
  border-color: rgb(255 255 255 / 72%);
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 560px;
  margin: 22px 0 0;
}
.hero-proof article {
  position: relative;
  isolation: isolate;
  min-height: 82px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) minmax(132px, 176px);
  grid-template-rows: auto auto;
  column-gap: 13px;
  row-gap: 3px;
  align-items: center;
  align-content: center;
  padding: 13px 18px;
  overflow: hidden;
  border: 1px solid #f2d279;
  border-radius: 16px;
  background:
    linear-gradient(105deg, rgb(255 246 205 / 94%) 0%, rgb(255 252 238 / 94%) 28%, #fff 58%, #f8fbff 100%);
  box-shadow:
    0 18px 38px rgb(153 99 12 / 10%),
    0 8px 22px rgb(6 27 73 / 5%);
}
.hero-proof article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 7px;
  background: linear-gradient(180deg, #ffe58a, #f4aa16 48%, #d98500);
}
.hero-proof article::after {
  content: "";
  position: absolute;
  top: -58%;
  right: 16%;
  z-index: -1;
  width: 124px;
  height: 210%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 68%), transparent);
  opacity: .55;
}
.award-mark {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, #ffe078, #f4aa16);
  box-shadow:
    inset 0 0 0 5px rgb(255 255 255 / 30%),
    0 9px 18px rgb(198 139 15 / 24%);
  font-size: 17px;
  line-height: 1;
}
.hero-proof b {
  grid-column: 3;
  grid-row: 1 / 3;
  min-width: 0;
  color: var(--navy);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  justify-self: end;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hero-proof small {
  grid-column: 2;
  grid-row: 1;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}
.hero-proof em {
  grid-column: 2;
  grid-row: 2;
  color: var(--muted);
  font-size: 11.5px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}
.hero-proof + .cta-row {
  margin-top: 24px;
}

.hero-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 0;
}
.hero-media > img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(255 255 255 / 24%), rgb(255 255 255 / 0) 45%);
  pointer-events: none;
}
.floating-panel {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 26px;
  left: 26px;
  width: min(300px, calc(100% - 48px));
  display: grid;
  gap: 12px;
}
.floating-panel article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 14px 36px rgb(6 27 73 / 10%);
}
.floating-panel article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 5px 12px;
  align-items: center;
}
.floating-panel img {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
}
.floating-panel b,
.points-hero-card h3 {
  color: var(--navy);
  font-weight: 700;
}
.floating-panel span,
.points-hero-card span,
.points-hero-card p {
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}
.points-visual {
  position: relative;
  min-height: 470px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 20px;
  align-items: stretch;
  overflow: hidden;
  background: radial-gradient(circle at 35% 18%, #e9f5ff, #fff 46%, #f6faff);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.points-visual-general {
  grid-template-columns: 1fr;
  padding: 34px;
}
.points-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.points-phone-panel,
.points-photo-panel {
  min-height: 444px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fbff, #eaf4ff);
}
.points-phone-panel img {
  width: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgb(6 27 73 / 16%));
}
.points-photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 444px;
  object-fit: cover;
}
.points-visual-biz .points-photo-panel img { object-position: 58% center; }
.points-visual-gym .points-photo-panel img { object-position: 58% center; }
.points-visual-biz,
.points-visual-gym {
  min-height: 520px;
  padding: 0;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.points-visual-biz::after,
.points-visual-gym::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(255 255 255 / 72%), rgb(255 255 255 / 8%) 48%, rgb(255 255 255 / 0) 78%);
  pointer-events: none;
}
.points-visual-biz .points-photo-panel,
.points-visual-gym .points-photo-panel {
  position: absolute;
  inset: 0;
  min-height: 0;
  border-radius: 22px;
}
.points-visual-biz .points-photo-panel img,
.points-visual-gym .points-photo-panel img {
  min-height: 0;
}
.points-visual-biz .points-photo-panel img { object-position: center center; }
.points-visual-gym .points-photo-panel img { object-position: center center; }
.points-visual-biz .points-side-stack,
.points-visual-gym .points-side-stack {
  position: relative;
  z-index: 2;
  width: min(278px, 42%);
  margin-left: auto;
  padding: 18px;
  align-content: center;
}
.points-side-stack {
  display: grid;
  align-content: center;
  gap: 12px;
}
.points-hero-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 14px 36px rgb(6 27 73 / 9%);
}
.task-card p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
}
.task-card p span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  line-height: 1;
}
.task-card p:nth-of-type(n+4) span {
  color: #7a8da8;
  background: #fff;
  border: 2px solid #9fb1ca;
}
.points-hero-card b {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
  margin: 18px 0 8px;
}
.points-hero-card small {
  font-size: 14px;
}
.rate-card b {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 55%, transparent 56%),
    conic-gradient(var(--blue) 78%, #e8eef7 0);
}
.progress-card-body {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 12px;
}
.progress-card i {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  background:
    radial-gradient(circle, #fff 0 54%, transparent 55%),
    conic-gradient(var(--blue) 78%, #e8eef7 0);
}
.progress-card p {
  margin: 0;
  line-height: 1.35;
}
.progress-card b {
  margin: 2px 0 4px;
  font-size: 22px;
}
.progress-card small {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
}
.metric-card i,
.point-card-hero i {
  display: block;
  height: 10px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 72%, #dde6f2 0);
}
.point-card-hero.yellow i {
  background: linear-gradient(90deg, var(--orange) 35%, #dde6f2 0);
}
.small-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
}
.small-card img {
  width: 44px;
  height: 44px;
}

.tag-strip {
  transform: translateY(-24px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.tag-strip span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}
.tag-strip span + span { border-left: 1px solid var(--line); }
.tag-strip img {
  width: 28px;
  height: 28px;
}

.section {
  padding: 58px 0;
  background: #fff;
}
.section.soft {
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.compact-section { padding-top: 32px; }
.simple-grid,
.function-grid,
.audience-grid,
.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
  gap: 22px;
}
.function-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 180px));
  max-width: 820px;
}
.audience-grid,
.note-grid {
  max-width: 960px;
}
.audience-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 280px)); }
.note-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 280px)); }
.audience-grid a { display: block; }
.icon-card,
.note-card {
  min-height: 150px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgb(6 27 73 / 5%);
}
.icon-card img {
  width: 54px;
  height: 54px;
  padding: 10px;
  border-radius: 50%;
  background: #eef5ff;
  margin-bottom: 16px;
}
.icon-card h3 { margin-bottom: 8px; }
.icon-card p,
.note-card {
  color: var(--ink);
  font-weight: 400;
  line-height: 1.78;
}
.function-grid .icon-card {
  min-height: 188px;
  text-align: center;
}
.function-grid .icon-card img { margin: 0 auto 16px; }

.outcome-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
  gap: 22px;
}
.outcome-card {
  min-height: 174px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f9fcff);
  box-shadow: 0 12px 32px rgb(6 27 73 / 6%);
}
.outcome-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--blue);
  background: #eef5ff;
  font-size: 13px;
  font-weight: 700;
}
.outcome-card b {
  display: block;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  font-weight: 700;
  margin: 16px 0 10px;
}
.outcome-card p {
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 0;
}

.testimonial-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgb(6 27 73 / 6%);
}
.testimonial-card img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef5ff;
}
.testimonial-card b {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}
.testimonial-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}
.testimonial-card p {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin: 8px 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
  gap: 26px;
}
.feature-card {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgb(6 27 73 / 6%);
}
.feature-card > span {
  display: block;
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  padding: 22px 26px 0;
}
.feature-card img {
  width: calc(100% - 44px);
  height: 240px;
  margin: 14px 22px 0;
  border-radius: 14px;
  object-fit: cover;
}
.feature-card h3,
.feature-card p {
  padding: 0 26px;
}
.feature-card h3 { margin-top: 22px; }
.feature-card p { margin-bottom: 28px; }
.feature-card p {
  font-size: 14px;
  line-height: 1.78;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  gap: 20px;
}
.scene-grid article {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgb(6 27 73 / 6%);
}
.scene-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.scene-grid h3 {
  padding: 20px 22px 8px;
  margin: 0;
}
.scene-grid p {
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  padding: 0 22px 24px;
  margin: 0;
}

.section-lead {
  max-width: 780px;
  margin: -16px auto 28px;
  color: var(--ink);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
.detail-link-row {
  margin-top: -18px;
}
.detail-link-row a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.point-table-container {
  max-width: 1040px;
  margin-inline: auto;
}

.point-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.point-head,
.point-row {
  display: grid;
  grid-template-columns: 1.05fr 1.55fr .95fr .65fr;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
}
.point-head > *,
.point-row > * {
  min-width: 0;
}
.point-head {
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 700;
}
.point-row {
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}
.point-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.point-row img {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 50%;
  background: #eef5ff;
}
.point-row b {
  color: var(--orange);
  font-size: 17px;
  justify-self: end;
  white-space: nowrap;
}

.flow-grid {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  gap: 24px;
  justify-content: center;
}
.flow-grid.flow-count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1060px;
}
.flow-grid.flow-count-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1080px;
}
.flow-grid article {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgb(6 27 73 / 5%);
}
.flow-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -22px;
  color: #7f94b5;
  font-size: 34px;
  font-weight: 700;
}
.flow-grid span {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}
.flow-grid h3 { margin: 8px 0 0; }

.dashboard-panel {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) .85fr;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  gap: 42px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.dashboard-panel img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}
.dashboard-panel h2 { text-align: left; }
.dashboard-panel p {
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
}

.bottom-cta {
  margin-top: 36px;
  padding: 56px 0 76px;
  color: #fff;
  background: linear-gradient(180deg, #fff, #f7fbff);
}
.bottom-cta .container {
  padding: 34px clamp(24px, 4vw, 44px);
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0, #123f85, #031b46 62%);
  box-shadow: 0 18px 42px rgb(6 27 73 / 10%);
}
.bottom-cta h2,
.bottom-cta p {
  color: #fff;
  text-align: center;
}
.bottom-cta h2 {
  font-size: clamp(28px, 3vw, 38px);
}
.bottom-cta h2::first-letter { color: #fff; }
.bottom-cta .cta-row {
  justify-content: center;
}
.store-badge {
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.store-badge img {
  width: auto;
  height: 100%;
  max-width: none;
}
.store-badge.google-store-link {
  width: calc(60px * 646 / 192);
  overflow: visible;
}
.store-badge.google-store-link img {
  height: 100%;
  transform: none;
}
.google-store-link[hidden] { display: none !important; }

.site-footer {
  padding: 28px 20px 36px;
  color: #fff;
  text-align: center;
  background: var(--navy);
}
.site-footer p {
  margin: 0;
  color: #fff;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .site-header nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }
  .hero-media,
  .points-visual { min-height: 460px; }
  .hero-media > img { min-height: 460px; }
  .points-visual {
    grid-template-columns: minmax(0, 1fr) minmax(240px, .78fr);
  }
  .points-phone-panel,
  .points-photo-panel,
  .points-photo-panel img { min-height: 410px; }
  .function-grid,
  .note-grid { grid-template-columns: repeat(3, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid,
  .flow-grid.flow-count-4,
  .flow-grid.flow-count-5 { grid-template-columns: repeat(4, 1fr); }
  .flow-grid article:not(:last-child)::after { display: none; }
}

@media (max-width: 760px) {
  .site-header-inner,
  .container,
  .hero,
  .tag-strip {
    width: min(100% - 24px, var(--page-max));
  }
  .site-header-inner { min-height: 62px; }
  .brand { font-size: 26px; }
  .brand-icon { width: 28px; height: 28px; border-radius: 7px; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .hero { min-height: auto; gap: 24px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; min-width: 0; }
  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
  .hero-proof article {
    min-height: 92px;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    padding: 12px 14px;
  }
  .hero-proof .award-mark {
    grid-row: 1 / 4;
    width: 34px;
    height: 34px;
  }
  .hero-proof b {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    text-align: left;
    font-size: 28px;
  }
  .hero-proof small,
  .hero-proof em {
    grid-column: 2;
    text-align: left;
  }
  .floating-panel {
    position: static;
    width: 100%;
    padding: 12px;
  }
  .hero-media { background: #f5faff; border-radius: 18px; }
  .hero-media > img {
    min-height: 320px;
    object-position: center;
  }
  .points-visual {
    padding: 16px;
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .points-visual-biz,
  .points-visual-gym {
    padding: 16px;
  }
  .points-visual-biz::after,
  .points-visual-gym::after {
    display: none;
  }
  .points-visual-biz .points-photo-panel,
  .points-visual-gym .points-photo-panel {
    position: relative;
    min-height: 300px;
    border-radius: 16px;
  }
  .points-visual-biz .points-side-stack,
  .points-visual-gym .points-side-stack {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }
  .points-card-grid {
    grid-template-columns: 1fr;
  }
  .points-phone-panel,
  .points-photo-panel,
  .points-photo-panel img {
    min-height: 300px;
  }
  .points-phone-panel img {
    max-height: 390px;
  }
  .points-side-stack,
  .tag-strip,
  .simple-grid,
  .feature-grid,
  .scene-grid,
  .function-grid,
  .outcome-grid,
  .testimonial-grid,
  .audience-grid,
  .note-grid,
  .flow-grid,
  .dashboard-panel {
    grid-template-columns: 1fr;
  }
  .flow-grid.flow-count-4,
  .flow-grid.flow-count-5 {
    grid-template-columns: 1fr;
  }
  .tag-strip { transform: none; margin-bottom: 24px; }
  .tag-strip span + span { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 42px 0; }
  .feature-card img,
  .scene-grid img { height: 220px; }
  .point-head { display: none; }
  .point-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 14px 16px;
    font-size: 14px;
  }
  .point-row > span:first-child {
    font-size: 16px;
  }
  .point-row b { justify-self: start; }
  .section-lead {
    margin: -10px auto 20px;
    font-size: 14px;
  }
  .store-badge {
    height: 54px;
    align-self: center;
  }
  .store-badge.google-store-link {
    width: calc(54px * 646 / 192);
  }
  .store-badge.google-store-link img {
    height: 100%;
    transform: none;
  }
}
