:root {
  --ink: #172126;
  --muted: #5d6b72;
  --line: #dce8e8;
  --surface: #ffffff;
  --soft: #f1faf7;
  --mint: #2fbf9f;
  --mint-dark: #137a68;
  --blue: #2f6fbe;
  --coral: #f17562;
  --yellow: #f5c84c;
  --shadow-action: 0 4px 12px rgba(33, 79, 91, 0.08);
  --shadow-action-hover: 0 8px 20px rgba(33, 79, 91, 0.13);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 232, 232, 0.86);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 32px, 1180px);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-icon,
.footer-brand img {
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(33, 79, 91, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--mint-dark);
}

@media (min-width: 768px) and (max-width: 1100px) {
  .header-inner {
    gap: 14px;
  }

  .brand {
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
  }

  .site-nav {
    gap: 9px;
    font-size: 12px;
    white-space: nowrap;
  }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-action);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(19, 122, 104, 0.4);
  box-shadow: var(--shadow-action-hover);
  transform: translateY(-1px);
}

.menu-line {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.section {
  padding: 72px 0;
}

#about {
  padding-top: 60px;
}

.section-band {
  background: linear-gradient(135deg, #fbfffd 0%, #ecf8f7 58%, #f7fbff 100%);
}

.hero {
  padding: 76px 0 56px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 56px;
}

.page-section-nav {
  padding: 20px 0;
  border-top: 1px solid rgba(220, 232, 232, 0.72);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.page-section-nav ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-section-nav a {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px 8px 8px;
  border: 1px solid rgba(19, 122, 104, 0.22);
  border-radius: 6px;
  background: #fbfefd;
  color: var(--ink);
  font-size: clamp(13px, 1.25vw, 14px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-action);
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.page-section-nav a::after {
  content: "\203A";
  position: absolute;
  right: 12px;
  top: 50%;
  color: rgba(19, 122, 104, 0.58);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
}

.page-section-nav a:hover,
.page-section-nav a:focus-visible {
  border-color: rgba(19, 122, 104, 0.4);
  background: var(--soft);
  color: var(--mint-dark);
  box-shadow: var(--shadow-action-hover);
  transform: translateY(-1px);
}

#eyesight-check,
#record,
#contents,
#use-cases,
#faq {
  scroll-margin-top: 96px;
}

.article-body > section[id] {
  scroll-margin-top: 96px;
}

.app-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--mint-dark);
  font-weight: 800;
}

.app-kicker img {
  border-radius: 8px;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.45;
}

.hero-lead,
.section-heading p:not(.section-label),
.section-text,
.feature-copy p:not(.section-label),
.notice-box p:not(.section-label),
.cta-panel p:not(.section-label) {
  color: var(--muted);
  font-size: 17px;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 19px;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 10px;
}

.store-button {
  width: 172px;
  min-height: 56px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  color: #fff;
  line-height: 1.1;
  box-shadow: var(--shadow-action);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.store-button:hover,
.store-button:focus-visible {
  box-shadow: var(--shadow-action-hover);
  transform: translateY(-1px);
}

.store-apple,
.store-google {
  background: #111;
}

.store-small {
  display: block;
  font-size: 10px;
  letter-spacing: 0;
  opacity: 0.86;
}

.store-button strong {
  font-size: 20px;
  letter-spacing: 0;
}

.hero-copy .store-actions {
  width: min(100%, 356px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 0;
}

.hero-copy .store-button {
  width: auto;
}

.hero-media {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-app-visual {
  position: relative;
  width: min(100%, 500px);
  height: 590px;
  transform: translateY(16px);
}

.hero-app-screen {
  position: absolute;
  display: block;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(33, 79, 91, 0.14));
}

.hero-app-check {
  z-index: 2;
  top: 0;
  right: 24px;
  width: 290px;
}

.hero-app-result {
  z-index: 1;
  top: 72px;
  left: 24px;
  width: 215px;
  height: auto;
  aspect-ratio: 646 / 1289;
  opacity: 0.96;
  transform: rotate(-3deg);
  overflow: visible;
}

.hero-app-result::before {
  content: none;
}

.hero-app-result-screen {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-app-result-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.intro-grid,
.feature-grid,
.usecase-grid,
.faq-grid,
.cta-panel,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}

.intro-grid > :first-child,
.usecase-grid > :first-child,
.faq-grid > :first-child,
.cta-panel > :first-child {
  min-width: 0;
  justify-self: stretch;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

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

#about .intro-grid > .section-text {
  max-width: 640px;
  margin-top: 40px;
  line-height: 1.9;
}

.about-points {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: -22px;
}

.about-points div {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.section-detail-link {
  width: fit-content;
  display: flex;
  margin: 28px auto 0;
  color: var(--mint-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.about-detail-link {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 26px;
}

.section-detail-link:hover,
.section-detail-link:focus-visible {
  color: #0c6456;
  text-decoration-color: currentColor;
}

.point-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
  outline: 5px solid #e1f6ef;
}

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

.section-label {
  margin-bottom: 10px;
  color: var(--mint-dark);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.step-card,
.content-card,
.notice-box,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step-card {
  padding: 22px;
}

.step-number {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #e1f6ef;
  color: var(--mint-dark);
  font-weight: 900;
}

.step-card p,
.content-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 34px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
}

.record-preview {
  width: min(100%, 430px);
  justify-self: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.record-image-preview {
  width: min(100%, 360px);
  justify-self: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.record-image-preview img {
  width: 100%;
}

@media (min-width: 768px) {
  .feature-grid > .record-image-preview {
    width: min(100%, 297px);
  }
}

.article-record-image-preview {
  margin: 24px auto 0;
}

.record-mini-preview {
  width: min(100%, 360px);
  margin: 24px auto 0;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.record-mini-preview::before {
  content: "現在の視力";
  display: block;
  margin-bottom: 16px;
  color: #3d3d3d;
  font-size: 19px;
  font-weight: 900;
}

.record-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.record-icon {
  width: 20px;
  height: 20px;
  border: 7px solid #3d3d3d;
  border-right-color: transparent;
  border-radius: 50%;
}

.record-preview-header strong {
  color: #3d3d3d;
  font-size: 22px;
  font-weight: 900;
}

.record-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.record-score-grid div {
  display: grid;
  gap: 16px;
  min-height: 118px;
  padding: 22px 20px;
  border-radius: 18px;
  background: #f5f7fa;
}

.record-score-grid span {
  color: #4b4b4b;
  font-size: 16px;
  font-weight: 900;
}

.record-score-grid strong {
  color: #3d3d3d;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.record-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 16px;
  padding: 5px;
  border-radius: 18px;
  background: #f1f3f6;
}

.record-tabs span,
.record-tabs strong {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 14px;
  color: #687080;
  font-size: 15px;
  font-weight: 900;
}

.record-tabs strong {
  border: 1px solid var(--line);
  background: #fff;
  color: #3d3d3d;
}

.record-mini-preview .record-score-grid {
  gap: 12px;
  margin-bottom: 16px;
}

.record-mini-preview .record-score-grid div {
  min-height: 108px;
  padding: 18px 16px;
  border-radius: 18px;
}

.record-mini-preview .record-score-grid span {
  font-size: 13px;
  line-height: 1.35;
}

.record-mini-preview .record-score-grid strong {
  font-size: 38px;
}

.record-mini-preview .record-tabs {
  margin-bottom: 18px;
  border-radius: 16px;
}

.record-mini-preview .record-tabs span,
.record-mini-preview .record-tabs strong {
  min-height: 38px;
  border-radius: 12px;
  font-size: 12px;
}

.record-chart {
  height: 150px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: #fff;
}

.record-mini-preview .record-chart {
  height: 168px;
  margin-bottom: 12px;
}

.record-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.record-chart line {
  stroke: #e1e5ea;
  stroke-width: 2;
}

.record-chart polyline {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.record-line-left {
  stroke: #3b82f6;
}

.record-line-right {
  stroke: #ef4444;
}

.record-dot-left {
  fill: #fff;
  stroke: #3b82f6;
  stroke-width: 5;
}

.record-dot-right {
  fill: #fff;
  stroke: #ef4444;
  stroke-width: 5;
}

.record-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 18px;
}

.record-legend span {
  position: relative;
  padding-left: 28px;
  font-weight: 900;
}

.record-legend span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 4px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.legend-left {
  color: #3b82f6;
}

.legend-right {
  color: #ef4444;
}

.record-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.record-card-row span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f8fafc;
  color: #5d6674;
  font-size: 14px;
  font-weight: 900;
}

.content-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.article-content-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

@media (max-width: 767px) {
  .content-cards.article-content-cards {
    grid-template-columns: 1fr;
  }
}

.content-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  box-shadow: var(--shadow-action);
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.content-card:hover,
.content-card:focus-visible {
  border-color: rgba(19, 122, 104, 0.4);
  background: var(--soft);
  box-shadow: var(--shadow-action-hover);
  transform: translateY(-1px);
}

.card-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
}

.card-mark-gabor {
  background: repeating-linear-gradient(90deg, #172126 0 5px, #fff 5px 10px);
}

.card-mark-stereo {
  position: relative;
  width: 54px;
  height: 54px;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(23, 33, 38, 0.78) 0 1.6px, transparent 1.9px) 3px 3px / 17px 17px,
    radial-gradient(circle, rgba(91, 174, 207, 0.82) 0 1.6px, transparent 1.9px) 11px 7px / 17px 17px,
    radial-gradient(circle, rgba(47, 191, 159, 0.8) 0 1.6px, transparent 1.9px) 7px 12px / 17px 17px,
    #f7fbfa;
  border: 1px solid var(--line);
}

.card-mark-stereo::before,
.card-mark-stereo::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(19, 122, 104, 0.68);
  border-radius: 4px;
  background: rgba(225, 246, 239, 0.78);
}

.card-mark-stereo::before {
  inset: 12px;
}

.card-mark-stereo::after {
  width: 16px;
  height: 16px;
  right: 7px;
  bottom: 8px;
}

.card-mark-color {
  background: conic-gradient(from 0deg, #f17562, #f5c84c, #2fbf9f, #2f6fbe, #f17562);
}

.card-mark-dry {
  background: radial-gradient(circle at 50% 50%, #fff 0 18%, #9bd7ec 19% 52%, #2f6fbe 53% 100%);
}

.card-link-text {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: var(--mint-dark);
  font-size: 14px;
  font-weight: 900;
}

.usecase-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  margin-top: 20px;
  font-size: 15px;
}

.usecase-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
  line-height: 1.45;
}

.check-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e1f6ef;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 8px;
  border: solid var(--mint-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.notice-section {
  padding: 24px 0 60px;
}

.notice-box {
  padding: 30px;
  background: #fffdf7;
  border-color: #f1dfb1;
}

.notice-box h2 {
  font-size: 32px;
}

.article-hero {
  padding: 54px 0 66px;
}

.article-container {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--mint-dark);
}

.article-lead {
  margin-bottom: 0;
  color: #435259;
  font-size: 19px;
  line-height: 1.9;
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 0;
}

.article-body {
  max-width: 800px;
}

.article-body section + section {
  margin-top: 60px;
}

.article-body p {
  color: #435259;
  font-size: 17px;
  line-height: 1.95;
}

.article-body .section-label {
  color: var(--mint-dark);
  font-size: 17px;
  line-height: 1.75;
}

.article-body h2 {
  font-size: 32px;
}

.toc-box {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.toc-box p {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 900;
}

.toc-box a {
  display: block;
  padding: 8px 10px;
  border-left: 3px solid transparent;
  border-radius: 8px;
  color: #526168;
  font-size: 14px;
  font-weight: 800;
}

.toc-box a:hover,
.toc-box a:focus-visible {
  background: #f1faf7;
  color: var(--mint-dark);
}

.toc-box a[aria-current="true"] {
  border-left-color: var(--mint);
  background: #e1f6ef;
  color: var(--mint-dark);
}

.note-box,
.inline-cta,
.landolt-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.note-box {
  margin-top: 24px;
  padding: 20px;
  background: #fffdf7;
  border-color: #f1dfb1;
}

.note-box strong {
  display: block;
  margin-bottom: 8px;
}

.note-box p {
  margin-bottom: 0;
}

.landolt-info {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 22px;
}

.landolt-info > .card-mark-gabor {
  align-self: center;
  justify-self: center;
  margin-bottom: 0;
}

#pattern .landolt-info {
  grid-template-columns: 1fr;
}

.article-landolt {
  position: relative;
  width: 126px;
  height: 126px;
  border: 24px solid var(--ink);
  border-radius: 50%;
  background: #fff;
}

.article-landolt::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  width: 44px;
  height: 28px;
  background: #fff;
  transform: translateY(-50%);
}

.landolt-info p {
  margin-bottom: 0;
}

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

.number-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfa;
}

.number-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--mint-dark);
  font-size: 28px;
  font-weight: 900;
}

.number-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

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

.article-check-list li {
  position: relative;
  padding: 15px 16px 15px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.article-check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
}

.inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  padding: 24px;
  background: #f1faf7;
}

.inline-cta h3,
.inline-cta p {
  margin-bottom: 0;
}

.inline-cta .store-actions {
  margin-bottom: 0;
}

.compare-table {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

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

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

.compare-row > div {
  padding: 16px 18px;
  color: #35444a;
}

.compare-row > div + div {
  border-left: 1px solid var(--line);
}

.compare-head {
  background: #eef8f6;
  color: var(--mint-dark);
  font-weight: 900;
}

.compare-card-list {
  display: none;
}

.compare-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfa;
}

.compare-card h3 {
  margin-bottom: 12px;
  color: var(--mint-dark);
}

.compare-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.2em;
}

.compare-card li {
  color: #35444a;
  font-weight: 700;
}

.related-links {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfa;
}

.related-links h2 {
  font-size: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.related-grid-single {
  grid-template-columns: minmax(0, 360px);
}

.related-grid a,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--mint-dark);
  font-weight: 900;
  box-shadow: var(--shadow-action);
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.related-grid a:hover,
.related-grid a:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible {
  border-color: rgba(19, 122, 104, 0.4);
  background: var(--soft);
  color: var(--mint-dark);
  box-shadow: var(--shadow-action-hover);
  transform: translateY(-1px);
}

.secondary-link {
  width: 100%;
  color: var(--ink);
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.article-phone-visual,
.gabor-samples,
.stereo-visual,
.view-methods,
.color-visual {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfa;
}

.article-phone-visual {
  display: grid;
  place-items: center;
  padding: 18px;
}

.article-check-screen {
  width: min(100%, 170px);
}

.gabor-samples {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  padding: 18px;
}

.gabor-sample {
  min-height: 112px;
  border-radius: 8px;
  background-color: #fff;
  filter: blur(0.2px);
}

.gabor-a {
  background: radial-gradient(circle, transparent 0 42%, #fff 62%), repeating-linear-gradient(90deg, #172126 0 5px, #fff 5px 11px);
}

.gabor-b {
  background: radial-gradient(circle, transparent 0 42%, #fff 62%), repeating-linear-gradient(45deg, rgba(23, 33, 38, 0.82) 0 5px, #fff 5px 12px);
}

.gabor-c {
  background: radial-gradient(circle, transparent 0 42%, #fff 62%), repeating-linear-gradient(135deg, rgba(23, 33, 38, 0.62) 0 6px, #fff 6px 14px);
}

.gabor-d {
  background: radial-gradient(circle, transparent 0 42%, #fff 62%), repeating-linear-gradient(0deg, rgba(23, 33, 38, 0.72) 0 4px, #fff 4px 10px);
}

.stereo-visual {
  margin-top: 24px;
  padding: 18px;
}

.stereo-pattern {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 12px 12px, rgba(23, 33, 38, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 34px 24px, rgba(47, 191, 159, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 52px 8px, rgba(47, 111, 190, 0.55) 0 3px, transparent 4px);
  background-size: 64px 44px;
  background-color: #fff;
}

.stereo-pattern span {
  position: absolute;
  width: 86px;
  height: 86px;
  border: 2px solid rgba(19, 122, 104, 0.45);
  border-radius: 8px;
  background: rgba(225, 246, 239, 0.52);
}

.stereo-pattern span:nth-child(1) {
  left: 28%;
  top: 28px;
}

.stereo-pattern span:nth-child(2) {
  left: 43%;
  top: 44px;
}

.stereo-pattern span:nth-child(3) {
  left: 58%;
  top: 28px;
}

.stereo-visual p {
  margin: 14px 0 0;
  font-size: 15px;
}

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

.view-methods div {
  padding: 14px;
  border-radius: 8px;
  background: #fff;
}

.view-methods strong {
  display: block;
  margin-bottom: 8px;
}

.view-methods svg {
  width: 100%;
  height: auto;
}

.view-methods circle {
  fill: var(--ink);
}

.view-methods path,
.view-methods line {
  fill: none;
  stroke: var(--mint-dark);
  stroke-width: 4;
  stroke-linecap: round;
}

.color-visual {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
  padding: 18px;
}

.color-visual span {
  min-height: 92px;
  border-radius: 8px;
}

.color-visual span:nth-child(1) { background: #2fbf9f; }
.color-visual span:nth-child(2) { background: #2f6fbe; }
.color-visual span:nth-child(3) { background: #f5c84c; }
.color-visual span:nth-child(4) { background: #f17562; }
.color-visual span:nth-child(5) { background: #8ed8c4; }
.color-visual span:nth-child(6) { background: #172126; }

.color-check-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  margin-top: 24px;
}

.color-check-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.color-check-shot-frame {
  overflow: hidden;
  background: #f7f9fa;
}

.color-check-shot-frame img {
  width: 100%;
}

.color-check-shot-intro {
  aspect-ratio: 750 / 1416;
}

.color-check-shot-question {
  aspect-ratio: 750 / 1384;
}

.color-check-shot-result {
  aspect-ratio: 750 / 1534;
}

.color-check-shot-intro img,
.color-check-shot-question img,
.color-check-shot-result img {
  transform: translateY(-5.54%);
}

.color-check-gallery figcaption {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border-top: 1px solid var(--line);
  color: #435259;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.color-check-notice {
  margin-top: 20px;
}

.gabor-app-gallery,
.app-screen-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 620px);
  margin: 24px auto 0;
}

.gabor-app-gallery figure,
.app-screen-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.gabor-app-shot-frame,
.app-screen-shot-frame {
  overflow: hidden;
  aspect-ratio: 750 / 1414;
  background: #f7f9fa;
}

.gabor-app-shot-frame img,
.app-screen-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.gabor-app-shot-play img {
  transform: translateY(-5.54%);
}

.app-screen-shot-frame img {
  transform: translateY(-5.54%);
}

.gabor-app-gallery figcaption,
.app-screen-gallery figcaption {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 8px;
  border-top: 1px solid var(--line);
  color: #5c696e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.three-screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  margin-top: 24px;
}

.three-screen-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.dry-eye-shot-frame {
  overflow: hidden;
  aspect-ratio: 750 / 1414;
  background: #f7f9fa;
}

.dry-eye-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.dry-eye-shot-cropped img {
  transform: translateY(-5.54%);
}

.three-screen-gallery figcaption {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border-top: 1px solid var(--line);
  color: #5c696e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.dry-eye-symptom-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 24px;
}

.dry-eye-symptom-grid li {
  min-height: 64px;
  display: flex;
  align-items: center;
}

.dry-eye-symptom-grid li::before {
  top: 50%;
  transform: translateY(-50%);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-grid > .faq-list {
  margin-top: 28px;
}

details {
  padding: 0 18px;
  box-shadow: 0 2px 6px rgba(33, 79, 91, 0.035);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

details:hover,
details:focus-within {
  border-color: rgba(19, 122, 104, 0.34);
  box-shadow: var(--shadow-action-hover);
}

.faq-list details {
  overflow: hidden;
}

.faq-list details.is-animating {
  transition: height 0.42s ease;
}

summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0;
  border-top: 1px solid rgba(35, 160, 122, 0.14);
  border-bottom: 1px solid rgba(35, 160, 122, 0.12);
  background: linear-gradient(118deg, #f7fcfa 0%, #e3f7f0 52%, #edf8fb 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -34%;
  right: -8%;
  width: 48%;
  height: 168%;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 18%, rgba(255, 255, 255, 0.42) 18% 43%, transparent 43%),
    linear-gradient(135deg, transparent 56%, rgba(47, 191, 159, 0.055) 56% 72%, transparent 72%);
  transform: rotate(-5deg);
}

main > .final-cta {
  border-top-color: #cfe7e5;
  background: linear-gradient(135deg, #e8f8f6 0%, #e4f6f5 54%, #e5f4f7 100%);
}

main > .final-cta::before {
  opacity: 0.7;
}

.cta-panel {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  align-items: center;
  padding: 16px 0;
}

.cta-panel .store-actions {
  justify-content: flex-end;
  margin-bottom: 0;
}

.article-layout + .final-cta {
  margin-top: 48px;
}

.article-layout + .final-cta::before {
  opacity: 0.55;
}

@media (min-width: 768px) {
  .article-layout + .final-cta .store-actions {
    align-self: stretch;
    align-items: center;
  }
}

.site-footer {
  padding: 46px 0;
  background: #142025;
  color: #e9f4f2;
}

.site-footer p {
  color: #bbcbc8;
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(220px, 0.7fr);
  gap: 30px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin-top: 42px;
  color: #d9ebe7;
  font-size: 14px;
}

.footer-note {
  margin: 42px 0 0;
  font-size: 14px;
}

.footer-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 768px) and (max-width: 900px) {
  .page-section-nav ul {
    gap: 6px;
  }

  .page-section-nav a {
    padding-right: 20px;
    padding-left: 4px;
    font-size: 12px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-app-visual {
    height: 520px;
  }

  .hero-app-check {
    right: 0;
    width: 250px;
  }

  .hero-app-result {
    top: 64px;
    left: -75px;
    width: 160px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .intro-grid,
  .feature-grid,
  .usecase-grid,
  .faq-grid,
  .cta-panel,
  .footer-grid,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  #about .intro-grid > .section-text {
    margin-top: 0;
  }

  #about .intro-grid {
    gap: 20px;
  }

  .faq-grid > .faq-list {
    margin-top: 0;
  }

  .toc-box {
    position: static;
    gap: 4px;
    margin-top: -8px;
    background: #f7fbfa;
  }

  .inline-cta {
    grid-template-columns: 1fr;
  }

  .visual-split {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 48px;
  }

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

  .cta-panel .store-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .container,
  .header-inner {
    width: min(100% - 24px, var(--container));
  }

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

  .site-nav {
    top: 66px;
  }

  .section {
    padding: 48px 0;
  }

  #about {
    padding-top: 42px;
  }

  .notice-section {
    padding: 18px 0 44px;
  }

  .article-hero {
    padding: 38px 0 48px;
  }

  .article-layout {
    padding-top: 48px;
    padding-bottom: 0;
  }

  .article-body section + section {
    margin-top: 44px;
  }

  .final-cta {
    padding: 44px 0;
  }

  .article-layout + .final-cta {
    margin-top: 38px;
  }

  .article-body h2 {
    font-size: 28px;
  }

  .article-lead {
    font-size: 17px;
    line-height: 1.9;
  }

  .article-body p {
    font-size: 16.5px;
    line-height: 1.9;
  }

  .article-hero h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.18;
  }

  .article-hero .article-title-long {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.2;
  }

  .hero {
    padding: 36px 0 42px;
  }

  .page-section-nav {
    padding: 14px 0;
  }

  .page-section-nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .page-section-nav li:first-child {
    grid-column: 1 / -1;
  }

  .page-section-nav a {
    min-height: 50px;
    padding: 8px 22px 8px 8px;
    font-size: 14px;
    white-space: normal;
  }

  #eyesight-check,
  #record,
  #contents,
  #use-cases,
  #faq {
    scroll-margin-top: 84px;
  }

  .article-body > section[id] {
    scroll-margin-top: 84px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .notice-box h2 {
    font-size: 26px;
  }

  .hero-lead,
  .section-heading p:not(.section-label),
  .section-text,
  .feature-copy p:not(.section-label),
  .notice-box p:not(.section-label),
  .cta-panel p:not(.section-label) {
    font-size: 16px;
  }

  .store-actions {
    grid-template-columns: 1fr;
  }

  .hero-copy .store-actions {
    width: min(100%, 340px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .store-button {
    width: 100%;
    min-height: 52px;
    padding: 8px 10px;
  }

  .store-button strong {
    font-size: 17px;
  }

  .hero-media {
    min-height: auto;
    padding-bottom: 8px;
  }

  .hero-app-visual {
    width: min(100%, 330px);
    height: min(410px, 125vw);
    transform: none;
  }

  .hero-app-check {
    right: 4%;
    width: min(62%, 206px);
  }

  .hero-app-result {
    top: 11%;
    left: -14px;
    width: min(40%, 134px);
    height: auto;
  }

  .record-preview {
    width: min(100%, 360px);
    padding: 18px;
    border-radius: 22px;
  }

  .record-mini-preview {
    width: min(100%, 340px);
    padding: 20px 16px;
  }

  .record-preview-header strong {
    font-size: 19px;
  }

  .record-score-grid {
    gap: 10px;
  }

  .record-score-grid div {
    min-height: 92px;
    padding: 16px 14px;
    border-radius: 16px;
  }

  .record-score-grid span {
    font-size: 12px;
  }

  .record-score-grid strong {
    font-size: 34px;
  }

  .record-tabs span,
  .record-tabs strong {
    min-height: 36px;
    font-size: 12px;
  }

  .record-chart {
    height: 126px;
  }

  .record-mini-preview .record-chart {
    height: 152px;
  }

  .record-card-row {
    grid-template-columns: 1fr;
  }

  .steps,
  .content-cards,
  .footer-nav,
  .number-grid,
  .landolt-info,
  .view-methods,
  .color-visual {
    grid-template-columns: 1fr;
  }

  .gabor-samples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .gabor-sample {
    min-height: 108px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: min(100px, 80%) min(89px, 76%);
  }

  .footer-nav,
  .footer-note {
    margin-top: 0;
  }

  .article-phone-visual {
    min-height: 300px;
  }

  .dry-eye-symptom-grid {
    grid-template-columns: 1fr;
  }

  .color-visual span {
    min-height: 86px;
  }

  .landolt-info {
    justify-items: start;
  }

  .landolt-info .article-landolt {
    justify-self: center;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  #can-cannot .compare-table,
  #difference .compare-table,
  #methods .compare-table,
  #formal .compare-table {
    display: none;
  }

  #can-cannot .compare-card-list,
  #difference .compare-card-list,
  #methods .compare-card-list,
  #formal .compare-card-list {
    display: grid;
    gap: 8px;
    margin-top: 20px;
  }

  #can-cannot .compare-card + .compare-card,
  #difference .compare-card + .compare-card,
  #methods .compare-card + .compare-card,
  #formal .compare-card + .compare-card {
    margin-top: 0;
  }

  .about-points,
  .usecase-list {
    grid-template-columns: 1fr;
  }

  .usecase-list {
    margin-top: 0;
  }

  .usecase-list p {
    min-height: auto;
  }

  .content-card {
    min-height: auto;
  }

  .notice-box {
    padding: 24px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-copy {
    width: 100%;
    max-width: 368px;
    margin: 0 auto;
  }

  .hero-lead {
    max-width: none;
    margin-bottom: 24px;
    font-size: 16.5px;
    line-height: 1.85;
  }

  .hero-copy .store-actions {
    width: min(100%, 344px);
    margin-right: auto;
    margin-left: auto;
    gap: 9px;
  }

  .inline-cta .store-actions {
    width: min(100%, 344px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    justify-content: stretch;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-media {
    padding-bottom: 8px;
  }

  .about-points {
    gap: 6px;
  }

  .about-points div {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .point-dot {
    width: 10px;
    height: 10px;
    outline: none;
  }

  .steps,
  .content-cards,
  .usecase-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .step-card {
    padding: 16px;
  }

  .step-number {
    margin-bottom: 12px;
  }

  .step-card h3,
  .content-card h3 {
    font-size: 17px;
  }

  .step-card p,
  .content-card p {
    font-size: 14px;
  }

  .record-preview {
    width: min(100%, 336px);
    padding: 14px;
    border-radius: 20px;
  }

  .feature-copy + .record-preview {
    margin-top: -6px;
  }

  .record-image-preview {
    width: min(100%, 300px);
    border-radius: 22px;
  }

  .feature-copy + .record-image-preview {
    margin-top: -6px;
  }

  .feature-copy .check-list {
    gap: 8px;
    margin-top: 18px;
  }

  .record-preview-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .record-icon {
    width: 18px;
    height: 18px;
    border-width: 6px;
  }

  .record-preview-header strong {
    font-size: 18px;
  }

  .record-score-grid {
    gap: 8px;
    margin-bottom: 12px;
  }

  .record-score-grid div {
    min-height: 74px;
    gap: 10px;
    padding: 12px 10px;
  }

  .record-score-grid span {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .record-score-grid strong {
    font-size: 30px;
  }

  .record-tabs {
    margin-bottom: 10px;
    padding: 4px;
    border-radius: 14px;
  }

  .record-chart {
    height: 96px;
    margin-bottom: 8px;
  }

  .record-legend {
    gap: 22px;
    margin-bottom: 0;
    font-size: 13px;
  }

  .record-legend span {
    padding-left: 22px;
  }

  .record-legend span::before {
    width: 13px;
    height: 13px;
    border-width: 3px;
  }

  .record-card-row {
    display: none;
  }

  .content-card {
    padding: 16px;
  }

  .view-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .view-methods div {
    padding: 10px;
  }

  .view-methods strong {
    margin-bottom: 6px;
    font-size: 14px;
    text-align: center;
  }

  .color-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
  }

  .color-visual span {
    min-height: 82px;
  }

  .color-check-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .color-check-gallery figure {
    width: min(100%, 320px);
    justify-self: center;
  }

  .gabor-app-gallery,
  .app-screen-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gabor-app-gallery figure,
  .app-screen-gallery figure {
    width: min(100%, 320px);
    justify-self: center;
  }

  .three-screen-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .three-screen-gallery figure {
    width: min(100%, 320px);
    justify-self: center;
  }

  .card-mark {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }

  .usecase-list p {
    min-height: 68px;
    padding: 12px;
    font-size: 14px;
  }

  details {
    padding: 0 14px;
  }

  summary {
    padding: 14px 0;
  }

  details p {
    padding-bottom: 14px;
  }

  .final-cta {
    padding: 44px 0;
  }

  .cta-panel {
    gap: 22px;
    padding: 12px 0;
  }

  .final-cta .store-actions {
    width: min(100%, 344px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    justify-content: stretch;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 374px) {
  .hero-app-result {
    left: 0;
    width: 38%;
  }

  .view-methods {
    grid-template-columns: 1fr;
  }
}
