﻿:root {
  color-scheme: light;
  --font-sans: "Inter", "LINE Seed JP", "Yu Gothic UI", "Meiryo", system-ui, sans-serif;
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --ink: #172033;
  --muted: #607084;
  --line: #d9e4f2;
  --accent: #0c8c7d;
  --accent-strong: #09685d;
  --blue: #2f6fed;
  --dark: #102033;
  --shadow: 0 30px 80px rgba(24, 42, 70, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fbfdff 0%, var(--bg) 54%, #edf5ff 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.65;
}

body.is-lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(61, 88, 120, 0.1);
  background: rgba(247, 251, 255, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(15, 32, 51, 0.12);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
}

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

.nav-download {
  color: var(--accent-strong);
  font-weight: 700;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.language-switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.lang-button {
  min-height: 34px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 6px 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
}

.lang-button:last-child {
  border-right: 0;
}

.lang-button.is-active {
  background: var(--ink);
  color: white;
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) 0;
  text-align: center;
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 700;
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.lead {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  background: var(--surface);
}

.small-note {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-mascot {
  position: absolute;
  top: clamp(116px, 12vw, 168px);
  right: clamp(18px, 7vw, 76px);
  z-index: 1;
  width: clamp(72px, 9vw, 118px);
  height: auto;
  filter: drop-shadow(0 14px 26px rgba(24, 42, 70, 0.16));
  pointer-events: none;
}

.hero-shot {
  width: min(1180px, 100%);
  margin: clamp(42px, 6vw, 72px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 150 / 82;
  object-fit: contain;
  object-position: center top;
}

.hero-shot img,
.panel-media img,
.tab-ops-media img,
.layout-demo-card img,
.layout-gallery img,
.screenshot-card img {
  cursor: zoom-in;
}

.hero-shot img:focus-visible,
.panel-media img:focus-visible,
.tab-ops-media img:focus-visible,
.layout-demo-card img:focus-visible,
.layout-gallery img:focus-visible,
.screenshot-card img:focus-visible {
  outline: 3px solid rgba(12, 140, 125, 0.38);
  outline-offset: 4px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1040px, calc(100% - 40px));
  margin: clamp(34px, 5vw, 58px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.trust-strip div {
  display: grid;
  gap: 5px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.trust-strip strong {
  font-size: 17px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.feature-intro {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.feature-intro p:last-child,
.section-heading p,
.panel-copy p,
.feature-grid p,
.privacy-list span,
.step-list p,
.final-cta p {
  color: var(--muted);
}

.feature-intro p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 18px;
}

.centered {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.feature-panel,
.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.panel-copy p {
  margin: 18px 0 0;
  font-size: 18px;
}

.panel-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 150 / 82;
  object-fit: contain;
  object-position: center top;
}

.feature-grid-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #eef6ff 100%);
}

.tab-ops-section {
  background: #ffffff;
}

.tab-ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto 22px;
}

.tab-ops-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(24, 42, 70, 0.07);
}

.tab-ops-grid p {
  color: var(--muted);
}

.tab-ops-media {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(24, 42, 70, 0.08);
}

.tab-ops-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 150 / 82;
  object-fit: contain;
  object-position: center top;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-grid article {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(24, 42, 70, 0.07);
}

.feature-card-search {
  padding-right: 108px;
}

.card-mascot {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 88px;
  height: auto;
  opacity: 0.96;
  pointer-events: none;
}

.comparison-section {
  background: #ffffff;
}

.layout-section {
  background: #ffffff;
}

.layout-mascot-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 760px;
  margin: -10px auto 30px;
  color: var(--muted);
  text-align: left;
}

.layout-mascot-strip img {
  width: clamp(92px, 13vw, 132px);
  height: auto;
  flex: 0 0 auto;
}

.layout-mascot-strip p {
  max-width: 460px;
  margin: 0;
  font-size: 15px;
}

.layout-demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 22px;
}

.layout-demo-card,
.layout-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(24, 42, 70, 0.08);
}

.layout-demo-card img,
.layout-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 150 / 82;
  object-fit: contain;
  object-position: center top;
}

.layout-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.comparison-table {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(24, 42, 70, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.86fr) minmax(160px, 0.72fr) minmax(220px, 1.1fr);
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 18px;
  border-left: 1px solid var(--line);
  line-height: 1.35;
}

.comparison-row > div:first-child {
  border-left: 0;
  font-weight: 700;
}

.comparison-head {
  background: #eef6ff;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 700;
}

.comparison-head > div {
  min-height: 48px;
}

.comparison-row:not(.comparison-head) > div:nth-child(2) {
  color: var(--muted);
  background: #fbfdff;
}

.comparison-row:not(.comparison-head) > div:nth-child(2)::before,
.comparison-row:not(.comparison-head) > div:nth-child(3)::before {
  display: inline-grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.comparison-row:not(.comparison-head) > div:nth-child(2)::before {
  content: "-";
  background: #e9eef5;
  color: #6b7788;
}

.comparison-row:not(.comparison-head) > div:nth-child(3) {
  background: #f4fffc;
  color: var(--ink);
  font-weight: 800;
  box-shadow: inset 3px 0 0 rgba(0, 139, 116, 0.2);
}

.comparison-row:not(.comparison-head) > div:nth-child(3)::before {
  content: "✓";
  background: var(--accent);
  color: #ffffff;
}

.feature-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #e3f4f1;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.media-section {
  background: var(--dark);
  color: white;
}

.media-section .eyebrow,
.media-section .section-heading p {
  color: #91dcd3;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #172a42;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 150 / 82;
  object-fit: contain;
  object-position: center top;
}

figcaption {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #c9d8e8;
  font-size: 13px;
}

.layout-section figcaption {
  border-top-color: var(--line);
  color: var(--muted);
}

.privacy-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
}

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

.privacy-list div {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: var(--surface);
}

.mascot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(180px, 0.42fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding-top: clamp(60px, 7vw, 92px);
  padding-bottom: clamp(60px, 7vw, 92px);
}

.mascot-copy p:last-child {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.mascot-main {
  width: min(220px, 100%);
  height: auto;
  justify-self: center;
  filter: drop-shadow(0 22px 34px rgba(24, 42, 70, 0.14));
}

.workflow-section {
  background: #ffffff;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: flex;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  background: #f8fbff;
}

.step-list span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 900;
}

.step-list strong {
  display: block;
  margin-bottom: 6px;
}

.pricing-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.pricing-card {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: var(--surface);
  text-align: center;
  box-shadow: 0 18px 44px rgba(24, 42, 70, 0.08);
}

.pricing-card span {
  color: var(--accent-strong);
  font-weight: 900;
}

.pricing-card strong {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.12;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(64px, 8vw, 100px);
  border-radius: 20px;
  padding: clamp(30px, 5vw, 52px);
  background: var(--dark);
  color: white;
}

.final-cta .eyebrow {
  color: #91dcd3;
}

.final-cta p {
  max-width: 780px;
  margin: 14px 0 0;
}

.final-cta a:not(.button) {
  color: white;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(11, 22, 36, 0.78);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-frame {
  display: grid;
  gap: 12px;
  width: min(1280px, 100%);
  max-height: min(860px, calc(100vh - 72px));
  margin: 0;
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 132px);
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
}

@media (min-width: 1081px) {
  .hero {
    padding-top: clamp(48px, 5vw, 78px);
  }

  .lead {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-shot {
    margin-top: clamp(30px, 4vw, 48px);
  }

  .trust-strip {
    margin-top: clamp(24px, 3.5vw, 40px);
  }

  .section {
    padding-top: clamp(58px, 6vw, 92px);
    padding-bottom: clamp(58px, 6vw, 92px);
  }

  .feature-intro p:last-child {
    margin-top: 14px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 12px clamp(16px, 4vw, 40px);
  }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    order: 3;
  }

  .hero-mascot {
    position: static;
    width: 92px;
    margin: 18px auto -6px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 6px);
    right: clamp(16px, 4vw, 40px);
    grid-column: 1 / -1;
    display: none;
    width: min(260px, calc(100vw - 32px));
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(24, 42, 70, 0.14);
    color: var(--ink);
    font-size: 14px;
    justify-content: stretch;
    line-height: 1.25;
  }

  .is-menu-open .nav {
    display: grid;
    gap: 2px;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    text-align: left;
  }

  .nav a:hover {
    background: #eef6ff;
  }

  .nav-download {
    margin-top: 6px;
    padding: 9px 10px;
    background: var(--accent);
    color: #ffffff;
    text-align: center;
    font-weight: 800;
  }

  .is-menu-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .is-menu-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .language-switch {
    order: 2;
  }

  .feature-panel,
  .privacy-panel,
  .mascot-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .tab-ops-grid,
  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 44px;
  }

  .hero-mascot {
    width: 82px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .hero-shot {
    margin-top: 30px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-switch {
    grid-column: 1 / -1;
    order: 4;
    width: 100%;
  }

  .lang-button {
    flex: 1;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip,
  .feature-grid,
  .tab-ops-grid,
  .layout-demo-grid,
  .layout-gallery,
  .screenshot-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .feature-card-search {
    padding-right: 22px;
    padding-bottom: 94px;
  }

  .card-mascot {
    width: 94px;
    right: 16px;
    bottom: 12px;
  }

  .layout-mascot-strip {
    display: grid;
    justify-items: center;
    margin-top: -2px;
    text-align: center;
  }

  .mascot-section {
    text-align: center;
  }

  .mascot-copy p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .comparison-table {
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-head {
    display: grid;
  }

  .comparison-row {
    display: grid;
    grid-template-columns: 34% 30% 36%;
    min-width: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
  }

  .comparison-row > div {
    border-left: 1px solid var(--line);
    border-top: 0;
    min-height: 0;
    padding: 10px 8px;
    font-size: 12px;
  }

  .comparison-row > div:first-child {
    border-left: 0;
  }

  .comparison-head > div {
    min-height: 44px;
  }

  .comparison-row:not(.comparison-head) > div:nth-child(2),
  .comparison-row:not(.comparison-head) > div:nth-child(3) {
    align-items: center;
  }

  .comparison-row:not(.comparison-head) > div:nth-child(2)::before,
  .comparison-row:not(.comparison-head) > div:nth-child(3)::before {
    content: "";
    width: 18px;
    height: 18px;
    font-size: 10px;
    padding: 0;
  }

  .comparison-row:not(.comparison-head) > div:nth-child(2)::before {
    content: "-";
  }

  .comparison-row:not(.comparison-head) > div:nth-child(3)::before {
    content: "✓";
  }

  .comparison-row:not(.comparison-head) > div:nth-child(3) {
    box-shadow: inset 3px 0 0 rgba(0, 139, 116, 0.2);
  }

  .hero-shot img,
  .panel-media img,
  .screenshot-card img {
    aspect-ratio: 150 / 82;
  }
}
