@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  color-scheme: light;
  --ink: #191919;
  --muted: #191919;
  --line: #ded8d2;
  --paper: #fffaf4;
  --warm-band: #fff1e8;
  --panel: #f2eee8;
  --orange: #ff6633;
  --orange-dark: #c6421e;
  --coffee: #ffd51f;
  --coffee-hover: #ffe05c;
  --teal: #007f73;
  --leaf: #7db343;
  --soft-line: rgba(25, 25, 25, 0.08);
  --section-heading-gap: 34px;
  --section-inner-gap: 65px;
  --section-lead-gap: 24px;
  --section-lead-content-gap: 40px;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  padding-top: 70px;
}

a {
  color: inherit;
}

a,
button,
.button,
.page-nav a,
.language-switch a {
  cursor: url("/assets/cat-face-cursor.svg?v=4") 16 16, pointer;
}

.paw-trail {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  pointer-events: none;
  background: url("/assets/paw-cursor.svg") center / contain no-repeat;
  opacity: 0.28;
  transform: translate(-50%, -50%) rotate(var(--paw-rotation)) scale(0.72);
  animation: paw-fade 900ms ease-out forwards;
}

@keyframes paw-fade {
  0% {
    opacity: 0.28;
    transform: translate(-50%, -50%) rotate(var(--paw-rotation)) scale(0.72);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--paw-rotation)) scale(1);
  }
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
  padding: 14px clamp(20px, 7vw, 88px);
  background: rgba(255, 250, 244, 0.94);
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
  backdrop-filter: blur(14px);
}

.product-home-page {
  padding-top: 0;
}

.product-home-page .site-header {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 23px;
  font-weight: 900;
  text-decoration: none;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

nav a {
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--ink);
}

.product-menu {
  position: relative;
}

.product-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
}

.product-menu summary::-webkit-details-marker {
  display: none;
}

.product-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.product-menu[open] summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.product-menu div {
  position: absolute;
  z-index: 20;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(25, 25, 25, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.98);
  box-shadow: 0 16px 36px rgba(25, 25, 25, 0.12);
}

.product-menu div a,
.product-menu div span {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink);
  white-space: nowrap;
}

.product-menu div span {
  color: rgba(23, 23, 23, 0.5);
  cursor: default;
}

.product-menu div a:hover,
.product-menu div a:focus-visible {
  background: rgba(25, 25, 25, 0.06);
}

.product-menu div a[aria-current="page"] {
  color: var(--orange-dark);
  background: rgba(255, 102, 51, 0.1);
  font-weight: 820;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 30px;
  padding: 2px;
  color: var(--muted);
  background: rgba(255, 102, 51, 0.12);
  border: 2px solid rgba(255, 102, 51, 0.42);
  border-radius: 8px;
  white-space: nowrap;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 24px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
}

.language-switch a[aria-current="page"] {
  color: #fff;
  background: var(--orange);
  font-weight: 820;
  box-shadow: 0 1px 3px rgba(25, 25, 25, 0.16);
}

.language-switch span {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(92svh - 70px);
  padding: 42px clamp(20px, 7vw, 88px) 64px;
  overflow: hidden;
  background: var(--paper);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.hero-image {
  display: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  max-width: 780px;
  color: var(--ink);
}

.eyebrow,
.section-kicker {
  margin: clamp(10px, 1.4vw, 18px) 0 clamp(8px, 1vw, 14px);
  color: var(--orange);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(62px, 10.4vw, 140px);
  line-height: 0.82;
  letter-spacing: 0.006em;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  font-size: 1.12em;
}

.hero h1 span:last-child {
  margin-top: 0.08em;
  font-size: 0.92em;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: clamp(14px, 1.8vw, 22px) 0 0;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 760;
}

:lang(ja) .hero-copy {
  max-width: 720px;
  font-size: clamp(22px, 2.65vw, 32px);
  margin-top: clamp(10px, 1.4vw, 16px);
  line-height: 1.22;
}

:lang(ja) .eyebrow {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: clamp(17px, 1.65vw, 23px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 2.4vw, 30px);
}

.store-badges {
  align-items: center;
}

.store-badge {
  display: inline-flex;
}

.store-badge img {
  display: block;
  height: 48px;
  width: auto;
}

.desktop-hero .store-badge img {
  height: 64px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.product-home-hero .platform-button {
  align-items: center;
  gap: 8px;
  min-width: 158px;
  min-height: 64px;
  padding: 10px 22px 11px;
  line-height: 1.08;
  text-align: left;
}

:lang(ja) .product-home-hero .platform-button {
  min-height: 54px;
  padding-block: 8px;
}

.product-home-hero .platform-button.is-new {
  position: relative;
  overflow: visible;
  padding-right: 34px;
}

.product-home-hero .button-badge {
  position: absolute;
  top: -8px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 1px 7px 0;
  border-radius: 999px;
  color: #fffaf4;
  background: #171717;
  box-shadow: 0 4px 10px rgba(23, 23, 23, 0.18);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  animation: desktop-badge-pop 2.8s ease-in-out infinite;
}

@keyframes desktop-badge-pop {
  0%,
  72%,
  100% {
    transform: scale(1);
  }

  80% {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-home-hero .button-badge {
    animation: none;
  }
}

.product-home-hero .platform-icon {
  flex: 0 0 1.25em;
  text-align: center;
  line-height: 1;
}

.product-home-hero .platform-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

:lang(ja) .product-home-hero .platform-copy {
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.product-home-hero .platform-button small {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.72;
}

.button.primary {
  color: #171717;
  background: var(--orange);
}

.button.secondary {
  color: #171717;
  background: var(--coffee);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button.disabled {
  color: rgba(23, 23, 23, 0.58);
  background: #f2eee8;
  cursor: not-allowed;
}

.official-warning {
  width: fit-content;
  max-width: min(100%, 560px);
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.5;
  text-align: left;
}

.official-warning p {
  margin: 0;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--coffee-hover);
}

.x-buzz {
  display: block;
  width: fit-content;
  margin-top: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #171717;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.85;
}

.official-warning + .install-milestone {
  margin-top: 10px;
}

.install-milestone {
  width: fit-content;
  margin: 16px 0 0;
  color: #171717;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.85;
}

.desktop-coming {
  display: block;
  width: fit-content;
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 750;
  color: rgba(23, 23, 23, 0.72);
  text-decoration: none;
}

.bmc-note {
  display: block;
  width: fit-content;
  margin: 8px 0 0;
  color: rgba(23, 23, 23, 0.58);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.support-links {
  display: block;
  width: fit-content;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.3;
}

.support-links a {
  color: inherit;
  text-decoration: none;
}

.support-links a:hover,
.support-links a:focus-visible {
  color: rgba(23, 23, 23, 0.78);
}

.bmc-note:hover,
.bmc-note:focus-visible {
  color: rgba(23, 23, 23, 0.78);
}

.product-home-hero .x-buzz {
  margin-top: 16px;
}

.product-home-hero .support-links {
  margin-top: 16px;
}

.product-home-hero .install-milestone + .x-buzz {
  margin-top: 4px;
}

.product-home-hero .install-milestone + .x-buzz + .support-links {
  margin-top: 10px;
}

.desktop-hero .bmc-note {
  margin-right: auto;
  margin-left: auto;
}

.x-buzz:hover,
.x-buzz:focus-visible {
  opacity: 1;
}

.desktop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 40px);
  min-height: auto;
  padding: clamp(54px, 7vw, 92px) clamp(20px, 7vw, 88px);
  background: var(--paper);
  overflow: hidden;
}

.desktop-hero-copy {
  width: min(100%, 1080px);
  margin: 0 auto;
  text-align: center;
}

.desktop-hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.desktop-hero-copy > p:last-of-type:not(.desktop-download-milestone),
.desktop-hero-lead {
  max-width: 760px;
  margin: clamp(12px, 1.5vw, 18px) auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 650;
  line-height: 1.5;
}

.desktop-hero .actions {
  gap: 14px;
  justify-content: center;
  margin-top: clamp(28px, 3vw, 36px);
}

.desktop-hero .actions > .button {
  min-height: 64px;
  padding: 0 28px;
  font-size: 19px;
}

.desktop-hero .actions > .button.primary {
  width: 208px;
}

.desktop-page .desktop-hero .actions > .button.secondary {
  width: 208px;
}

.desktop-download-milestone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 18px auto 0;
  padding: 10px 18px;
  border: 2px solid #191919;
  border-radius: 8px;
  color: #000;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--coffee);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-weight: 900;
  line-height: 1.15;
}

.extension-hero .actions > .button {
  width: 208px;
}

.extension-hero .actions > .button.primary {
  width: 208px;
}

.desktop-hero .desktop-platform-button {
  align-items: center;
  gap: 8px;
  min-width: 184px;
  min-height: 64px;
  padding: 10px 22px 11px;
  line-height: 1.08;
  text-align: left;
}

.desktop-hero .platform-icon {
  flex: 0 0 1.25em;
  text-align: center;
  line-height: 1;
}

.desktop-hero .platform-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.desktop-hero .platform-copy small {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.72;
}

.desktop-app-preview {
  position: relative;
  width: min(100%, 820px);
  margin: 0 auto;
}

.desktop-preview-section {
  padding: clamp(24px, 3vw, 40px) 0 clamp(58px, 7vw, 92px);
  background: var(--paper);
  overflow: hidden;
}

.desktop-preview-section .section-heading {
  margin: 0 auto;
  padding: 0 clamp(20px, 7vw, 88px);
  text-align: center;
}

.screenshot-carousel {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
}

.screenshot-carousel > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.screenshot-slides {
  display: grid;
  cursor: pointer;
}

.screenshot-card {
  display: none;
  grid-area: 1 / 1;
  margin: 0;
}

.screenshot-carousel > input:nth-of-type(1):checked ~ .screenshot-slides .screenshot-card:nth-child(1),
.screenshot-carousel > input:nth-of-type(2):checked ~ .screenshot-slides .screenshot-card:nth-child(2),
.screenshot-carousel > input:nth-of-type(3):checked ~ .screenshot-slides .screenshot-card:nth-child(3),
.screenshot-carousel > input:nth-of-type(4):checked ~ .screenshot-slides .screenshot-card:nth-child(4) {
  display: block;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(66, 49, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(25, 25, 25, 0.1);
}

.screenshot-card-clean img {
  border: 0;
  box-shadow: none;
}

.screenshot-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.screenshot-dots label {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(102, 97, 93, 0.28);
  cursor: pointer;
}

.store-preview-section {
  padding: clamp(28px, 4vw, 56px) 0 clamp(58px, 7vw, 92px);
  background: var(--warm-band);
  overflow: hidden;
}

:is(.extension-page, .desktop-page) .desktop-hero {
  padding-bottom: clamp(34px, 4vw, 56px);
  background: var(--paper);
}

.extension-page .store-preview-section {
  padding-top: clamp(18px, 2.4vw, 32px);
  padding-bottom: clamp(2px, 0.6vw, 10px);
  background: var(--paper);
}

.desktop-page .desktop-preview-section {
  padding-top: clamp(18px, 2.4vw, 32px);
  padding-bottom: 24px;
}

.store-preview-gallery {
  width: calc(100% - 120px);
  max-width: 1280px;
  margin: 0 auto;
}

.store-preview-gallery > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.store-preview-stage {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(210px, 45vw, 560px);
}

.store-preview-slide {
  display: none;
  grid-area: 1 / 1;
  margin: 0 auto;
  width: 100%;
  max-width: 940px;
  cursor: pointer;
}

.store-preview-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(66, 49, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(25, 25, 25, 0.1);
}

.store-preview-single img {
  display: block;
  width: 100%;
  max-width: 940px;
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(66, 49, 35, 0.12);
  border-radius: 8px;
}

/* The monitor's screen is as wide as the extension page's hero image; the
   stand hangs below it. */
.hero-cat-screen {
  max-width: 940px;
}

.hero-monitor {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-monitor-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: clamp(6px, 1.7vw, 16px) solid #2a2724;
  border-radius: 14px;
  background: #2a2724;
  box-shadow: 0 18px 40px rgba(25, 25, 25, 0.14);
}

.hero-monitor-wallpaper {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.hero-monitor-neck {
  width: 14%;
  aspect-ratio: 3.4;
  background: linear-gradient(90deg, #211e1c, #3a3632, #211e1c);
}

.hero-monitor-base {
  width: 26%;
  aspect-ratio: 14;
  border-radius: 999px 999px 6px 6px;
  background: #2a2724;
}

/* The featured cat walks across the monitor like the app on a real screen:
   the clip spans the screen's width, sits centred, and stays inside it. */
.hero-cat {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  pointer-events: none;
}

.hero-cat-video,
.hero-cat .hero-cat-still {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
}

.hero-cat .hero-cat-still {
  display: none;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.hero-cat-video.is-sliding-in {
  animation: hero-cat-slide-in var(--hero-cat-entrance-slide-ms, 2600ms) linear both;
}

.hero-cat-video.is-sliding-out {
  animation: hero-cat-slide-out var(--hero-cat-exit-slide-ms, 3000ms) linear both;
}

.hero-cat.is-paused .hero-cat-video {
  animation-play-state: paused;
}

.hero-cat.is-still .hero-cat-still {
  display: block;
}

.hero-cat.is-still .hero-cat-video {
  display: none;
}

@keyframes hero-cat-slide-in {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes hero-cat-slide-out {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-110%);
  }
}

.store-preview-gallery > input:nth-of-type(1):checked ~ .store-preview-stage .store-preview-slide:nth-of-type(1),
.store-preview-gallery > input:nth-of-type(2):checked ~ .store-preview-stage .store-preview-slide:nth-of-type(2),
.store-preview-gallery > input:nth-of-type(3):checked ~ .store-preview-stage .store-preview-slide:nth-of-type(3),
.store-preview-gallery > input:nth-of-type(4):checked ~ .store-preview-stage .store-preview-slide:nth-of-type(4) {
  display: block;
}

.store-preview-arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.store-preview-arrow {
  position: absolute;
  top: 50%;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: rgba(66, 49, 35, 0.9);
  font-size: 44px;
  line-height: 36px;
  text-align: center;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
}

.store-preview-arrow.prev {
  left: -54px;
}

.store-preview-arrow.next {
  right: -54px;
}

.store-preview-gallery > input:nth-of-type(1):checked ~ .store-preview-stage .prev-1,
.store-preview-gallery > input:nth-of-type(1):checked ~ .store-preview-stage .next-1,
.store-preview-gallery > input:nth-of-type(2):checked ~ .store-preview-stage .prev-2,
.store-preview-gallery > input:nth-of-type(2):checked ~ .store-preview-stage .next-2,
.store-preview-gallery > input:nth-of-type(3):checked ~ .store-preview-stage .prev-3,
.store-preview-gallery > input:nth-of-type(3):checked ~ .store-preview-stage .next-3,
.store-preview-gallery > input:nth-of-type(4):checked ~ .store-preview-stage .prev-4,
.store-preview-gallery > input:nth-of-type(4):checked ~ .store-preview-stage .next-4 {
  display: block;
}

.store-preview-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}

.store-preview-thumbs::-webkit-scrollbar {
  display: none;
}

.store-preview-thumbs label {
  flex: 0 0 auto;
  width: clamp(72px, 9vw, 110px);
  padding: 3px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.store-preview-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 5px;
}

.store-preview-gallery > input:nth-of-type(1):checked ~ .store-preview-thumbs label:nth-child(1),
.store-preview-gallery > input:nth-of-type(2):checked ~ .store-preview-thumbs label:nth-child(2),
.store-preview-gallery > input:nth-of-type(3):checked ~ .store-preview-thumbs label:nth-child(3),
.store-preview-gallery > input:nth-of-type(4):checked ~ .store-preview-thumbs label:nth-child(4) {
  border-color: #1a73e8;
}

.screenshot-carousel > input:nth-of-type(1):checked ~ .screenshot-dots label:nth-child(1),
.screenshot-carousel > input:nth-of-type(2):checked ~ .screenshot-dots label:nth-child(2),
.screenshot-carousel > input:nth-of-type(3):checked ~ .screenshot-dots label:nth-child(3),
.screenshot-carousel > input:nth-of-type(4):checked ~ .screenshot-dots label:nth-child(4) {
  background: var(--orange);
}

.desktop-app-preview::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: min(82vw, 780px);
  height: min(38vw, 300px);
  border-radius: 50%;
  background: rgba(255, 102, 51, 0.1);
  transform: translateX(-50%);
}

.desktop-window {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: #171717;
  box-shadow: 0 28px 70px rgba(25, 25, 25, 0.18);
}

.desktop-window-bar {
  display: grid;
  grid-template-columns: 16px 16px 16px 1fr;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.34);
  background: #303030;
  font-size: 14px;
  font-weight: 800;
}

.desktop-window-bar span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.desktop-window-body {
  padding: clamp(28px, 4vw, 40px) 30px 34px;
  color: #f7f7f7;
}

.desktop-timer {
  font-size: clamp(70px, 11vw, 118px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.desktop-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.desktop-controls span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  background: #252525;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 850;
}

.desktop-controls span:first-child {
  background: var(--orange);
  color: #fff;
}

.desktop-window label {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 800;
}

.desktop-window label span {
  display: block;
  margin-top: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #242424;
  color: #f7f7f7;
  font-size: 19px;
}

.desktop-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 800;
}

.desktop-options span {
  color: #ff8a61;
}

.desktop-options a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.version-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.desktop-difference {
  background: var(--paper);
}

.desktop-page #notice {
  background: var(--paper);
}

.desktop-page .cat-gallery {
  background: var(--warm-band);
}

.version-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 156px;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid rgba(255, 102, 51, 0.42);
  background: var(--warm-band);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.version-choice[href]:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 102, 51, 0.48);
  box-shadow: 0 14px 30px rgba(255, 102, 51, 0.12);
}

.version-choice-title {
  font-size: clamp(20px, 1.75vw, 26px);
  font-weight: 800;
  line-height: 1.2;
}

/* A phrase that should wrap as a unit: Japanese otherwise breaks mid-word
   (「忘れがち／なときに」). Short lines still fit on one line. */
.phrase {
  display: inline-block;
}

.version-choice-text {
  max-width: 320px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

:is(.extension-page, .desktop-page) .version-choice-title {
  color: var(--ink);
}

:is(.extension-page, .desktop-page) .version-choice-text {
  color: var(--muted);
  font-weight: 500;
}

.version-choice-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.version-choice.is-disabled {
  color: var(--ink);
  border-color: transparent;
  background: #f2eee8;
  cursor: default;
}

:is(.extension-page, .desktop-page) .version-choice.is-disabled {
  border-color: rgba(25, 25, 25, 0.16);
  background: #f2eee8;
}

.version-choice.is-disabled .version-choice-note {
  color: rgba(102, 97, 93, 0.72);
}

.notice,
.section,
.split {
  padding: clamp(80px, 12vw, 140px) clamp(20px, 7vw, 88px);
  border-top: 0;
}

.notice-inline {
  margin: clamp(24px, 3vw, 40px) auto 0;
  max-width: 760px;
  padding: 20px 24px;
  background: var(--warm-band);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
}

#notice {
  display: block;
  background: var(--warm-band);
  border-top: 0;
  border-bottom: 0;
  color: var(--ink);
  text-align: center;
}

#how-it-works {
  border-top: 0;
  padding-top: 110px;
  padding-bottom: 150px;
}

.coming-soon {
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(80px, 12vw, 140px);
  border-top: 0;
  border-bottom: 0;
  background: var(--paper);
  text-align: center;
}

.cat-gallery {
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(80px, 12vw, 140px);
  border-top: 0;
  border-bottom: 0;
  background: var(--paper);
  text-align: center;
}

#how-it-works {
  background: var(--warm-band);
}

.coming-soon .section-kicker,
.cat-gallery .section-kicker {
  font-size: clamp(24px, 3.4vw, 48px);
  letter-spacing: 0.06em;
  margin-bottom: var(--section-heading-gap);
}

.coming-soon h2 {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coming-soon h2 {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.22;
  font-weight: 600;
}

.cat-scroll {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100% - 40px, 778px);
  margin: clamp(26px, 4vw, 48px) auto 0;
}

.cat-card {
  position: relative;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid rgba(255, 102, 51, 0.42);
  background: var(--warm-band);
}

.cat-card.is-new::after {
  position: absolute;
  clip-path: polygon(50% 0%, 58% 15%, 74% 7%, 76% 25%, 94% 24%, 85% 40%, 100% 50%, 85% 60%, 94% 76%, 76% 75%, 74% 93%, 58% 85%, 50% 100%, 42% 85%, 26% 93%, 24% 75%, 6% 76%, 15% 60%, 0% 50%, 15% 40%, 6% 24%, 24% 25%, 26% 7%, 42% 15%);
  transform: rotate(8deg);
}

.cat-card.is-new::after {
  content: "NEW";
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: var(--orange);
  filter: drop-shadow(0 8px 14px rgba(255, 102, 51, 0.24));
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.cat-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.new-cats-number {
  margin: 0 0.08em;
  font-size: 1.5em;
  font-weight: 850;
  line-height: 1;
  vertical-align: -0.08em;
}

.new-cats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(100% - 40px, 1164px);
  margin: 0 auto;
}

.new-cats-row img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 640px) {
  .new-cats-row {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 0 20px 14px;
    overflow-x: auto;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .new-cats-row img {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px) scale(0.88);
}

.section-kicker.is-visible {
  animation: notice-pop 1100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.notice-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 0.52em;
  letter-spacing: 0.08em;
}

@keyframes notice-pop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.88);
  }

  55% {
    opacity: 1;
    transform: translateY(-3px) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section h2,
.split h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

#notice .section-kicker,
#custom-cat-feature .section-kicker,
#community-cats .section-kicker,
#difference .section-kicker,
#how-it-works .section-kicker,
#privacy .section-kicker,
#faq .section-kicker,
#support .section-kicker,
#follow .section-kicker {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: clamp(24px, 3.4vw, 48px);
  letter-spacing: 0.06em;
}

#notice .section-kicker {
  margin-bottom: var(--section-inner-gap);
}

#notice h2,
#how-it-works h2,
#privacy h2,
#faq h2,
#support h2,
#cats-title {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.22;
}

#notice p {
  margin: 0;
}

#notice p + p {
  margin-top: 4px;
}

#notice h2 {
  margin: 28px auto 0;
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: left;
}

#notice h2 ~ p {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.58;
  text-align: left;
}

#notice h2 ~ p + p {
  margin-top: 4px;
}

#notice .notice-main {
  max-width: 680px;
  margin: clamp(12px, 1.4vw, 18px) auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.58;
  text-align: left;
}

#notice .notice-main p + p {
  margin-top: 4px;
}

#notice .notice-main strong {
  color: var(--ink);
}

#notice .notice-followup {
  max-width: 680px;
  margin: clamp(14px, 1.6vw, 22px) auto 0;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.58;
  text-align: left;
}

#notice .notice-followup p {
  margin: 0;
}

#notice .notice-followup p + p {
  margin-top: 4px;
}

#notice .notice-followup strong {
  color: var(--ink);
}

#notice .notice-alert {
  max-width: 680px;
  margin: clamp(16px, 1.8vw, 24px) auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 102, 51, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.58;
  text-align: left;
}

#notice .notice-alert p {
  margin: 0;
}

#notice .notice-alert p + p {
  margin-top: 4px;
}

#notice .notice-alert-label {
  color: var(--orange);
  font-size: clamp(12px, 0.9vw, 13px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#notice .notice-notes {
  max-width: 680px;
  margin: clamp(20px, 2.2vw, 32px) auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
  text-align: left;
}

#notice .notice-notes p + p {
  margin-top: 4px;
}

#notice .notice-item {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
  text-align: left;
}

#notice .notice-item h2,
#notice .notice-item h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

#notice .notice-item h2 {
  font-size: clamp(18px, 1.65vw, 23px);
}

#notice .notice-item h3 {
  font-size: clamp(15px, 1.2vw, 18px);
}

#notice .notice-item .notice-notes {
  max-width: none;
  margin: 10px 0 0;
}

#notice .notice-history {
  max-width: 680px;
  margin: clamp(20px, 2.2vw, 30px) auto 0;
  color: var(--muted);
  text-align: left;
}

#notice .notice-history summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(66, 49, 35, 0.16);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  list-style: none;
}

#notice .notice-history summary::-webkit-details-marker {
  display: none;
}

#notice .notice-history summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

#notice .notice-history[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

#notice .notice-history .notice-item {
  margin: 0;
  max-width: none;
  padding: 16px 2px 0;
}

#notice .notice-history .notice-item + .notice-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(66, 49, 35, 0.12);
}

/* A panel as wide as the HOW TO cards: a short heading on the left, level
   with the first point, and the heading and list centred together. */
.info-panel {
  display: grid;
  grid-template-columns: max-content minmax(0, max-content);
  justify-content: center;
  gap: 56px;
  align-items: start;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 32px 40px;
  border: 2px solid rgba(255, 102, 51, 0.42);
  border-radius: 8px;
  background: var(--warm-band);
  text-align: left;
}

#privacy .info-panel {
  width: fit-content;
  max-width: 100%;
  padding-right: 72px;
  padding-left: 72px;
  background: var(--paper);
}

.info-panel-list a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Stacked panel: heading (if any) above the list. The panel keeps the full
   width; the text block sits centred inside it, left-aligned. */
.info-panel.info-panel-stacked {
  grid-template-columns: minmax(0, max-content);
  justify-content: center;
  gap: 18px;
}

/* Grouped panel: heading on top, then two columns, each one topic read
   top to bottom. */
.info-panel.info-panel-groups {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
  gap: 20px;
  border-color: transparent;
}

.info-panel-groups .info-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-panel-icon {
  flex: none;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.info-panel-lead {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.info-panel-note {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.info-panel-title {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.info-panel-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.info-panel-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.info-panel-list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1080px);
  margin: 34px auto 0;
}

.privacy-points div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 32px 24px 48px;
  border-radius: 8px;
  color: #fff;
  background: #9f3f28;
  text-align: center;
}

.privacy-points strong {
  display: block;
  margin: 0 0 16px;
  font-size: clamp(24px, 2.15vw, 30px);
  font-weight: 850;
  line-height: 1.2;
}

.privacy-points span {
  display: block;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #fffdf8;
}

#notice,
#reactions,
#custom-cat-feature,
#community-cats,
#new-cats,
#difference,
#preview,
#how-it-works,
#privacy,
#faq,
#follow,
#support {
  scroll-margin-top: 88px;
}


/* The store's opening story, as a plain left-aligned block under the hero. */
.story-section {
  padding: clamp(56px, 7vw, 88px) 20px;
  background: var(--paper);
}

.story {
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: left;
}

.story p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.9;
  /* Keep a lone word (“way.”) or 「ます。」 from dropping onto its own line. */
  text-wrap: pretty;
}

.story .story-title {
  margin-bottom: 32px;
  font-size: clamp(24px, 2.7vw, 33px);
  font-weight: 850;
  line-height: 1.3;
}

.reactions-section {
  padding: 24px 0;
  overflow: hidden;
  background: var(--paper);
}

.extension-page .reactions-section {
  padding-bottom: 24px;
}

.reactions-section + #notice {
  padding-top: clamp(44px, 6vw, 72px);
}

.reaction-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reaction-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: reaction-slide 48s linear infinite;
}

.reaction-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(320px, 36vw, 560px);
  min-height: 142px;
  padding: 34px 42px;
  border-radius: 8px;
  background: #b94a2b;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.reaction-card::before {
  content: "STORE REVIEW";
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.reaction-card p {
  margin: 0;
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 750;
  line-height: 1.45;
}

@keyframes reaction-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .reaction-track {
    animation: none;
  }
}

#privacy {
  padding-top: 110px;
  padding-bottom: 150px;
  background: var(--paper);
}

.faq-section {
  background: var(--warm-band);
}

.faq-list {
  width: min(100%, 880px);
  margin: 34px auto 0;
  text-align: left;
}

.faq-list details {
  border-top: 1px solid var(--soft-line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--soft-line);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--ink);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
}

.page-nav {
  position: sticky;
  z-index: 8;
  top: 70px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px clamp(20px, 7vw, 88px);
  overflow-x: auto;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 0;
  backdrop-filter: blur(12px);
}

.page-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--ink);
  background: #f2eee8;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.page-nav a:hover,
.page-nav a:focus-visible {
  color: var(--ink);
  background: #ffe2d4;
}

.extension-page .reactions-section + .page-nav {
  padding-top: 12px;
  padding-bottom: 12px;
}

.section-heading {
  max-width: 860px;
}

#privacy .section-heading {
  max-width: 1280px;
}

#community-cats .section-heading {
  gap: var(--section-inner-gap);
}

#community-cats .section-inner {
  gap: 28px;
}

.desktop-page .community-cats {
  overflow: hidden;
}

.community-cat-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.community-cat-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.community-cat-marquee.is-ready .community-cat-track {
  animation: community-cat-slide 50s linear infinite;
}

.community-cat-set {
  display: flex;
  flex: none;
  gap: 12px;
  padding-right: 12px;
}

.community-cat-set img {
  display: block;
  width: clamp(132px, 15vw, 220px);
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

#community-cats .community-cats-cta {
  margin: 0;
  text-align: center;
}

@keyframes community-cat-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-cat-marquee.is-ready .community-cat-track {
    animation: none;
    transform: none;
  }
}

#community-cats .section-action {
  margin-top: 0;
}

#community-cats .section-action a {
  display: inline-block;
  color: #5f8f38;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 850;
  text-underline-offset: 3px;
}

.section .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--section-heading-gap);
  margin: 0 auto;
  text-align: center;
}

/* A section whose heading carries a lead sentence: the lead sits close under
   the heading and the content follows close under the lead, so the three
   read as one block. Sections without a lead keep the wider gaps. */
.section .section-heading:has(> .section-body) {
  gap: var(--section-lead-gap);
}

.section-inner:has(> .section-heading > .section-body) {
  gap: var(--section-lead-content-gap);
}

.section .section-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.desktop-difference .section-heading {
  text-align: center;
}

.desktop-difference .section-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

#how-title {
  line-height: 1.32;
}

:lang(ja) #how-title {
  line-height: 1.42;
}

/* Light cards with a screenshot per step: easier to scan than the solid
   green boxes, and the setting that matters most is in body-size text. */
.steps-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps-visual li {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid rgba(255, 102, 51, 0.42);
  border-radius: 8px;
  background: var(--warm-band);
  text-align: left;
}

.steps-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.steps-visual-body {
  padding: 20px 22px 24px;
}

.steps-visual-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.steps-visual h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.steps-visual p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1080px);
  margin-top: 34px;
  margin-left: auto;
  margin-right: auto;
}

.steps article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 300px;
  padding: 32px 24px 48px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fffdf8;
  text-align: center;
}

.steps span {
  display: block;
  color: #fffdf8;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1;
  font-weight: 900;
}

.steps h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.steps p,
.copy-block p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.steps p {
  color: #fffdf8;
}

.steps small {
  display: block;
  margin-top: 6px;
  font-size: 0.78em;
  line-height: 1.36;
}

.section-body {
  margin: clamp(12px, 1.4vw, 20px) 0 0;
  color: var(--ink);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 500;
  line-height: 1.6;
}

:is(.extension-page, .desktop-page) .section-heading .section-body {
  margin-top: 0;
}

#community-cats .section-body {
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 800;
}

#community-cats .section-body a {
  color: #5f8f38;
  font: inherit;
  margin-top: 0;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.6;
}

#how-it-works .steps {
  margin-top: 34px;
}



.section-heading a {
  display: inline-block;
  margin-top: 16px;
  color: var(--teal);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 850;
  text-underline-offset: 3px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-action .section-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  min-height: 76px;
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--orange-dark);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.split {
  display: block;
  background: var(--paper);
  text-align: center;
}

.compact {
  background: var(--paper);
}

.split > div {
  max-width: 860px;
  margin: 0 auto;
}

.split h2 {
  margin-left: auto;
  margin-right: auto;
}

.copy-block {
  padding-top: clamp(16px, 2vw, 28px);
}

.copy-block a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 850;
}

.compact {
  padding-top: clamp(70px, 8vw, 104px);
  padding-bottom: clamp(96px, 9vw, 128px);
  background: var(--paper);
}

#support {
  background: var(--paper);
}

:is(.extension-page, .desktop-page) #notice {
  background: var(--warm-band);
}

:is(.extension-page, .desktop-page) .cat-gallery {
  background: var(--paper);
}

.desktop-difference .version-choice[href] {
  background: #fff7ef;
}

.extension-page .desktop-difference {
  background: var(--warm-band);
}

.extension-page #how-it-works {
  background: var(--paper);
}

.extension-page #privacy {
  background: var(--warm-band);
}

.extension-page .faq-section {
  background: var(--paper);
}

.extension-page #follow {
  background: var(--warm-band);
}

.extension-page #support {
  background: var(--paper);
}

.desktop-page .custom-cat-feature {
  background: var(--warm-band);
}

.desktop-page .community-cats {
  background: var(--paper);
}

.desktop-page #new-cats {
  background: var(--paper);
}

.desktop-page .desktop-difference {
  background: var(--warm-band);
}

.desktop-page #how-it-works {
  background: var(--paper);
}

.desktop-page #privacy {
  background: var(--warm-band);
}

.desktop-page .faq-section {
  background: var(--paper);
}

.desktop-page #follow {
  background: var(--warm-band);
}

.desktop-page #support {
  background: var(--paper);
}

.custom-cat-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.custom-cat-feature-card {
  min-width: 0;
}

.custom-cat-feature-card img,
.custom-cat-feature-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(26, 22, 18, 0.12);
  box-shadow: 0 14px 30px rgba(26, 22, 18, 0.12);
}

.custom-cat-feature-card h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.3;
}

.custom-cat-feature-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}


:is(.extension-page, .desktop-page) #notice,
:is(.extension-page, .desktop-page) #custom-cat-feature,
.desktop-page #community-cats,
:is(.extension-page, .desktop-page) #new-cats,
:is(.extension-page, .desktop-page) #difference,
:is(.extension-page, .desktop-page) #how-it-works,
:is(.extension-page, .desktop-page) #privacy,
:is(.extension-page, .desktop-page) #faq,
:is(.extension-page, .desktop-page) #support {
  padding-top: clamp(64px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 88px);
}

:is(.extension-page, .desktop-page) .section-inner {
  display: grid;
  gap: var(--section-inner-gap);
  width: 100%;
  margin: 0 auto;
}

:is(.extension-page, .desktop-page) #notice .section-inner {
  display: block;
}

:is(.extension-page, .desktop-page) :is(#custom-cat-feature, #community-cats, #new-cats, #difference, #how-it-works, #privacy, #faq, #support, #follow) .section-inner .section-kicker,
:is(.extension-page, .desktop-page) :is(#custom-cat-feature, #community-cats, #new-cats, #difference, #how-it-works, #privacy, #faq, #support, #follow) .section-inner > .section-heading,
:is(.extension-page, .desktop-page) :is(#custom-cat-feature, #community-cats, #new-cats, #difference, #how-it-works, #privacy, #faq, #support, #follow) .section-inner > .custom-cat-feature-grid,
:is(.extension-page, .desktop-page) :is(#custom-cat-feature, #community-cats, #new-cats, #difference, #how-it-works, #privacy, #faq, #support, #follow) .section-inner > .cat-scroll,
:is(.extension-page, .desktop-page) :is(#custom-cat-feature, #community-cats, #new-cats, #difference, #how-it-works, #privacy, #faq, #support, #follow) .section-inner > .version-grid,
:is(.extension-page, .desktop-page) :is(#custom-cat-feature, #community-cats, #new-cats, #difference, #how-it-works, #privacy, #faq, #support, #follow) .section-inner > .steps,
:is(.extension-page, .desktop-page) :is(#custom-cat-feature, #community-cats, #new-cats, #difference, #how-it-works, #privacy, #faq, #support, #follow) .section-inner > .privacy-points,
:is(.extension-page, .desktop-page) :is(#custom-cat-feature, #community-cats, #new-cats, #difference, #how-it-works, #privacy, #faq, #support, #follow) .section-inner > .faq-list,
:is(.extension-page, .desktop-page) :is(#custom-cat-feature, #community-cats, #new-cats, #difference, #how-it-works, #privacy, #faq, #support, #follow) .section-inner > .link-grid {
  margin-top: 0;
  margin-bottom: 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 880px);
  margin-top: 36px;
  margin-left: auto;
  margin-right: auto;
}

.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 720px);
}

.support-grid.single-link {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 360px);
}

.link-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.link-grid a:nth-child(2) {
  background: var(--orange-dark);
}

.link-grid a:nth-child(3) {
  background: #222;
}

.link-grid a:nth-child(4) {
  background: var(--leaf);
}

.support-grid a {
  background: #5f8f38;
}

/* The address sits outside the link so it can be drag-selected; the link
   still covers the rest of the card. */
.support-email-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 92px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: #5f8f38;
  text-align: center;
}

.support-grid .support-email-card a {
  display: inline;
  min-height: 0;
  padding: 0;
  background: none;
}

.support-email-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
}

/* The address and its copy button sit above the card-wide link. */
.support-email-row {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
}

.support-email-address {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.85;
  cursor: text;
}

.support-copy {
  padding: 3px 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}

.support-copy:hover {
  background: rgba(255, 255, 255, 0.28);
}

.support-grid > a {
  color: var(--paper);
  background: #9f3f28;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 7vw, 88px) 32px;
  color: var(--muted);
  background: var(--paper);
  border-top: 0;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  text-underline-offset: 3px;
}

.extension-page .site-footer {
  background: var(--paper);
}

.desktop-page .site-footer {
  background: var(--paper);
}

.legal-page {
  padding: clamp(52px, 8vw, 96px) clamp(20px, 7vw, 88px) clamp(76px, 10vw, 128px);
}

.legal-hero {
  max-width: 880px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: 0;
}

.legal-hero p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.legal-hero .section-kicker {
  opacity: 1;
  transform: none;
}

.legal-table {
  width: min(100%, 920px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.legal-table dl {
  margin: 0;
}

.legal-table div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.legal-table dt {
  color: var(--ink);
  font-weight: 850;
}

.legal-table dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-table a {
  color: var(--teal);
  font-weight: 800;
  text-underline-offset: 3px;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  opacity: 0.7;
}

.social-links a:hover,
.social-links a:focus-visible {
  opacity: 1;
}

.social-links img {
  display: block;
  max-width: 17px;
  max-height: 17px;
}

@media (max-width: 780px) {
  body {
    padding-top: 104px;
  }

  .site-header {
    display: block;
    height: 104px;
    padding: 14px 20px;
  }

  .page-nav {
    display: none;
  }

  .header-brand {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
  }

  nav {
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .site-header nav {
    font-size: 13px;
  }

  .product-menu div {
    left: 0;
    right: auto;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 28px 20px 0;
  }

  .hero-content {
    order: 1;
    max-width: none;
  }

  .product-home-hero .hero-content {
    transform: none;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .hero-copy {
    font-size: clamp(20px, 7vw, 28px);
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    min-height: 44px;
    padding: 0 16px;
  }

  .product-home-hero .platform-button {
    min-width: 152px;
    min-height: 54px;
    padding: 8px 15px 9px;
  }

  .page-nav {
    justify-content: flex-start;
    top: 104px;
  }

  #notice,
  #reactions,
  #custom-cat-feature,
  #community-cats,
  #new-cats,
  #difference,
  #preview,
  #how-it-works,
  #privacy,
  #faq,
  #follow,
  #support {
    scroll-margin-top: 122px;
  }

  .page-nav .nav-optional {
    display: none;
  }

  .hero-video {
    display: none;
  }

  .hero-image {
    display: block;
    position: relative;
    order: 2;
    align-self: stretch;
    width: calc(100% + 40px);
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 18px -20px 0;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-shade {
    display: none;
  }

  .desktop-hero {
    min-height: 0;
    padding: 34px 20px 38px;
  }

  .desktop-hero-copy {
    text-align: left;
  }

  .desktop-hero-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.98;
  }

  .desktop-hero-copy > p:last-of-type:not(.desktop-download-milestone),
  .desktop-hero-lead {
    margin-left: 0;
    font-size: clamp(17px, 5vw, 21px);
  }

  .desktop-hero .actions {
    align-items: flex-start;
  }

  .desktop-hero .actions > .button {
    width: fit-content;
  }

  .extension-hero .actions {
    align-items: flex-start;
  }

  .desktop-window {
    border-radius: 14px;
  }

  .desktop-window-body {
    padding: 26px 18px 24px;
  }

  .desktop-timer {
    font-size: clamp(58px, 18vw, 76px);
  }

  .desktop-controls {
    gap: 8px;
    margin-top: 24px;
  }

  .desktop-controls span {
    min-height: 42px;
    font-size: 14px;
  }

  .desktop-preview-section {
    padding-top: 24px;
  }

  .screenshot-carousel {
    width: calc(100% - 40px);
  }

  .store-preview-gallery {
    width: calc(100% - 44px);
    max-width: 430px;
  }

  /* On phones the monitor lines up with the left-aligned hero copy above. */
  .store-preview-gallery.hero-cat-screen {
    width: calc(100% - 40px);
    max-width: none;
  }

  .store-preview-stage {
    min-height: 0;
  }

  .store-preview-slide {
    display: none;
    width: 100%;
  }

  .store-preview-gallery > input:nth-of-type(1):checked ~ .store-preview-stage .store-preview-slide:nth-of-type(1),
  .store-preview-gallery > input:nth-of-type(2):checked ~ .store-preview-stage .store-preview-slide:nth-of-type(2),
  .store-preview-gallery > input:nth-of-type(3):checked ~ .store-preview-stage .store-preview-slide:nth-of-type(3),
  .store-preview-gallery > input:nth-of-type(4):checked ~ .store-preview-stage .store-preview-slide:nth-of-type(4) {
    display: block;
  }

  .store-preview-arrow {
    display: none !important;
  }

  .store-preview-thumbs {
    justify-content: flex-start;
    gap: 9px;
    margin-top: 14px;
  }

  .store-preview-thumbs label {
    width: 82px;
  }


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

  .custom-cat-feature-grid {
    grid-template-columns: 1fr;
  }

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

  .info-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  #privacy .info-panel {
    padding-right: 20px;
    padding-left: 20px;
  }

  .info-panel-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cat-scroll {
    display: flex;
    width: min(100% - 40px, 1280px);
    overflow-x: auto;
    padding: 0 0 14px;
    justify-content: safe center;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cat-card {
    flex: 0 0 clamp(210px, 24vw, 300px);
    scroll-snap-align: start;
  }

  .version-choice {
    min-height: 0;
  }

  .notice,
  .split,
  .steps,
  .privacy-points,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: 210px;
  }

  .steps h3 {
    margin-top: 16px;
  }

  .legal-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
}


/* Community cat guidelines page. */
.guidelines-page main > .section {
  padding-top: clamp(36px, 5vw, 58px);
}

.guidelines-page .section-inner {
  display: block;
  max-width: 900px;
}

.guidelines-page #guidelines-title {
  margin: 0 0 22px;
  max-width: 900px;
  color: var(--orange);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
  text-align: center;
}

.guidelines-page .guidelines-event-date {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--orange);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}

.guidelines-page .section-inner > .guidelines-section:first-of-type {
  padding-top: 44px;
}

.guidelines-page .guidelines-section {
  display: block;
  margin: 0 0 16px;
}

.guidelines-page .guidelines-section:last-child {
  margin-bottom: 0;
}

.guidelines-page .guidelines-section h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.28;
}

/* Latin headings read smaller than kanji at the same size. */
html[lang="en"] .guidelines-page .guidelines-section h2 {
  font-size: clamp(16px, 1.6vw, 20px);
}

.guidelines-page .guidelines-hashtag {
  color: #1d4ed8;
}

/* FOLLOW: a small profile card like the account's X header, so it is clear
   whose account the button follows. */
.follow-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 28px 32px;
  border: 2px solid rgba(255, 102, 51, 0.42);
  border-radius: 8px;
  background: var(--paper);
  text-align: left;
}

.follow-card-icon {
  display: block;
  width: 88px;
  height: 88px;
  padding: 12px;
  border: 2px solid rgba(26, 22, 18, 0.1);
  border-radius: 50%;
  background: #fff;
}

.follow-card-body p {
  margin: 0;
}

.follow-card-name {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.follow-card-id {
  color: var(--muted);
  font-size: 15px;
  opacity: 0.7;
}

.follow-card .follow-card-text {
  margin-top: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

#follow .follow-x-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 28px;
  margin-top: 0;
  color: #fff;
  background: #171717;
  font-size: 17px;
  font-weight: 760;
  white-space: nowrap;
}

#follow .follow-x-button img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

@media (max-width: 640px) {
  .follow-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px 18px;
    padding: 22px 20px;
  }

  .follow-card-icon {
    width: 64px;
    height: 64px;
    padding: 9px;
  }

  #follow .follow-x-button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
    gap: 5px;
    padding: 10px 18px;
    font-size: 16px;
    text-align: center;
    line-height: 1.25;
  }
}

.follow-x-button img {
  width: 18px;
  height: 18px;
}

.guidelines-page .guidelines-section h2::before {
  content: "";
  width: 4px;
  height: 1.05em;
  border-radius: 999px;
  background: var(--orange);
  flex: 0 0 auto;
}

.guidelines-page .guidelines-section p,
.guidelines-page .guidelines-section ul {
  margin: 0;
}

.guidelines-page .guidelines-section p,
.guidelines-page .guidelines-section li {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.8;
}

.guidelines-page .guidelines-section ul {
  padding-left: 1.35em;
}

.guidelines-page .guidelines-photo-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.guidelines-page .guidelines-photo-examples img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(26, 22, 18, 0.12);
  box-shadow: 0 12px 28px rgba(26, 22, 18, 0.1);
}

@media (max-width: 640px) {
  .guidelines-page .guidelines-photo-examples {
    grid-template-columns: 1fr;
  }
}
