@font-face {
  font-family: Inter;
  src: url('assets/inter-cyrillic.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

@font-face {
  font-family: Inter;
  src: url('assets/inter-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --ink: var(--neo-text);
  --blue: var(--neo-accent);
  --yellow: var(--neo-yellow);
  --pink: var(--neo-pink);
  --cyan: var(--neo-cyan);
  --line: 2px solid var(--ink);
  --offset: 5px 5px 0 var(--ink);
  --content: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: Inter,Arial,sans-serif;
  color: var(--ink);
  background: var(--neo-bg);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,input,summary {
  font: inherit;
}

button,a,summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

button:focus-visible,a:focus-visible,summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.container {
  width: min(var(--content),calc(100% - 80px));
  margin-inline: auto;
}

.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fill-icon {
  fill: currentColor;
  stroke: none;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--yellow);
  border: var(--line);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  height: 94px;
  position: sticky;
  top: 0;
  background: var(--neo-bg);
  z-index: 20;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-mark {
  font-size: 3.2rem;
  font-weight: 850;
  letter-spacing: -.13em;
  line-height: 1;
  display: inline-block;
  padding-right: .15em;
}

.brand-mark span {
  color: var(--blue);
  font-weight: 850;
}

.brand-name {
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .875rem;
  font-weight: 550;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a:after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s;
}

.desktop-nav a:hover:after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 62px;
  padding: 17px 24px;
  border: var(--line);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: var(--offset);
  transition: transform .16s,box-shadow .16s;
  background: white;
  text-align: center;
}

.button:hover {
  transform: translate(3px,3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button:active {
  transform: translate(5px,5px);
  box-shadow: none;
}

.button-yellow {
  background: var(--yellow);
}

.button-blue {
  background: var(--blue);
  color: white;
}

.button-outline {
  box-shadow: none;
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: .875rem;
  gap: 15px;
}

.button-meta {
  font-size: .875rem;
  font-weight: 500;
  margin-left: 15px;
  border-left: 1px solid rgba(0,0,0,.3);
  padding-left: 17px;
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 55px;
  align-items: center;
  min-height: 695px;
  padding-top: 60px;
  padding-bottom: 74px;
}

.hero h1 {
  font-size: clamp(3.25rem,5.1vw,4.55rem);
  font-weight: 780;
  line-height: 1.07;
  letter-spacing: -.052em;
  margin: 0 0 30px;
}

.highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
}

.highlight:before {
  content: '';
  position: absolute;
  inset: 7% -4% -1% -3%;
  background: var(--yellow);
  z-index: -1;
  transform: rotate(-2deg);
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 455px;
  color: #444;
  margin: 0 0 31px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 495px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 13px 48px;
}

.hero-visual:before {
  content: '';
  position: absolute;
  inset: 20px -5px 10px 12px;
  background: var(--blue);
  border: var(--line);
  transform: rotate(3deg);
}

.search-scene {
  background: white;
  position: relative;
  z-index: 2;
  width: 100%;
  border: var(--line);
  box-shadow: 9px 9px 0 var(--ink);
  padding: 22px 18px 15px;
  transform: rotate(-2deg);
  transition: transform .35s;
}

.hero-visual:hover .search-scene {
  transform: rotate(0);
}

.scene-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 18px;
}

.scene-brand {
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -.06em;
}

.query-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border: var(--line);
  padding: 14px 11px;
  font-size: .92rem;
  font-weight: 600;
  background: #fff;
  line-height: 1.35;
}

.query-card .icon {
  color: var(--blue);
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.search-screenshot {
  margin-top: 16px;
}

.search-screenshot img {
  width: 100%;
  height: auto;
}

.scene-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: .75rem;
  font-weight: 500;
  margin: 15px 1px 0;
}

.visual-tag {
  position: absolute;
  z-index: 3;
  padding: 8px 13px;
  border: var(--line);
  box-shadow: 3px 3px 0 black;
  font-size: .875rem;
  font-weight: 650;
  white-space: nowrap;
}

.tag-yellow {
  top: 8px;
  left: 36px;
  transform: rotate(-7deg);
  background: var(--yellow);
}

.tag-white {
  right: 5px;
  bottom: 22px;
  transform: rotate(5deg);
  background: white;
}

.context-note {
  position: absolute;
  z-index: 4;
  right: -19px;
  top: -13px;
  background: var(--pink);
  border: var(--line);
  box-shadow: 4px 4px 0 black;
  padding: 20px 16px 13px;
  transform: rotate(8deg);
  font-size: .875rem;
  line-height: 1.5;
}

.context-note p {
  margin: 0;
}

.note-pin {
  position: absolute;
  top: -15px;
  left: 50%;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.demo-section {
  padding: 48px 0 38px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2,h2 {
  font-size: clamp(2.25rem,3.5vw,3.2rem);
  line-height: 1.12;
  font-weight: 730;
  letter-spacing: -.045em;
  margin: 0;
}

.film-shell {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--yellow);
  border: 1px solid #42444b;
  overflow: hidden;
}

.film-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.film-play {
  display: none;
  position: absolute;
  inset: 0;
  border: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(0deg,rgba(0,0,0,.72),rgba(0,0,0,.16) 50%);
  color: white;
  font-size: 1rem;
  font-weight: 650;
  text-shadow: 0 1px 8px #000;
}

.js-ready .film-play {
  display: flex;
}

.film-shell.is-playing .film-play,.film-shell.has-started .film-play {
  display: none;
}

.film-play small {
  display: block;
  font-size: .875rem;
  font-weight: 400;
  margin-top: 3px;
}

.play-disc {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: black;
  border: var(--line);
  box-shadow: 5px 5px 0 #000;
  transition: transform .2s;
}

.play-disc .icon {
  width: 39px;
  height: 39px;
  transform: translateX(2px);
}

.film-play:hover .play-disc {
  transform: translate(3px,3px);
}

.film-error {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  margin: 0;
  background: #fff;
  color: #000;
  font-size: .875rem;
}

.availability-section {
  padding-block: 100px;
}

.availability-section>p {
  max-width: 530px;
  font-size: 1.125rem;
  color: #555;
  margin: 24px 0 30px;
}

.site-footer {
  padding: 30px 0;
}

.site-footer>.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer a:not(.brand) {
  font-size: .875rem;
}

.site-footer .brand-mark {
  font-size: 2.5rem;
}

.site-footer .brand-name {
  font-size: .875rem;
}

dialog {
  padding: 42px;
  border: var(--line);
  box-shadow: 8px 8px 0 black;
  max-width: min(540px,calc(100vw - 40px));
  color: var(--ink);
  background: white;
}

dialog::backdrop {
  background: rgba(0,0,0,.65);
}

dialog .brand-mark {
  margin-bottom: 30px;
}

dialog h2 {
  font-size: 2.5rem;
}

dialog p {
  color: #555;
  margin: 22px 0 30px;
}

.dialog-close {
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: 0;
  font-size: 2rem;
  min-width: 44px;
  min-height: 44px;
}

@media(min-width:1600px) {
  .hero {
    min-height: 750px;
    padding-block: 80px;
  }
  .hero h1 {
    font-size: 4.9rem;
  }
}

@media(max-width:1100px) {
  .container {
    width: calc(100% - 48px);
  }
  .desktop-nav {
    gap: 18px;
  }
  .hero {
    gap: 30px;
    min-height: 650px;
  }
  .hero h1 {
    font-size: 3.65rem;
  }
  .hero-visual {
    min-height: 440px;
    padding-inline: 7px;
  }
  .context-note {
    right: -5px;
    font-size: .75rem;
    padding: 18px 12px 10px;
  }
  .query-card {
    font-size: .8rem;
  }
  .hero-lead {
    font-size: 1.05rem;
  }
}

@media(max-width:800px) {
  .desktop-nav {
    display: none;
  }
  .site-header {
    height: 80px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 46px;
    padding-bottom: 60px;
    gap: 40px;
  }
  .hero h1 {
    font-size: clamp(2.9rem,9.5vw,4.7rem);
  }
  .hero-lead {
    max-width: 520px;
    font-size: 1.0625rem;
  }
  .hero-visual {
    width: min(500px,calc(100% - 20px));
    margin: auto;
    min-height: 440px;
  }
  .demo-section {
    padding-top: 55px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .availability-section {
    padding-block: 60px;
  }
  .site-footer>.container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .query-card {
    font-size: .92rem;
  }
  .context-note {
    font-size: .875rem;
  }
  .play-disc {
    width: 68px;
    height: 68px;
  }
  .play-disc .icon {
    width: 30px;
    height: 30px;
  }
  h2,.section-heading h2 {
    font-size: 2.25rem;
  }
}

@media(max-width:480px) {
  .container {
    width: calc(100% - 36px);
  }
  .brand-mark {
    font-size: 2.7rem;
  }
  .brand-name {
    font-size: .875rem;
  }
  .brand {
    gap: 11px;
  }
  .button-small {
    padding: 10px 11px;
    font-size: .8rem;
    gap: 7px;
  }
  .button-small .icon {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }
  .hero {
    padding-top: 35px;
    gap: 33px;
  }
  .hero h1 {
    font-size: 2.9rem;
  }
  .hero-lead {
    font-size: 1rem;
    max-width: 330px;
  }
  .hero-actions .button {
    width: 100%;
    padding-inline: 16px;
  }
  .hero-visual {
    min-height: 360px;
    padding-top: 43px;
    padding-bottom: 34px;
    width: calc(100% - 4px);
  }
  .hero-visual:before {
    inset: 28px 4px 13px 8px;
    transform: rotate(2deg);
  }
  .search-scene {
    padding: 15px 10px 12px;
    box-shadow: 5px 5px 0 black;
  }
  .scene-top {
    font-size: .64rem;
    margin-bottom: 12px;
  }
  .scene-bottom {
    font-size: .65rem;
  }
  .query-card {
    font-size: .76rem;
    padding: 11px 9px;
    gap: 6px;
  }
  .search-screenshot {
    margin-top: 12px;
  }
  .context-note {
    top: -8px;
    right: 3px;
    font-size: .68rem;
    padding: 13px 11px 8px;
    transform: rotate(7deg);
  }
  .visual-tag {
    font-size: .71rem;
    padding: 6px 10px;
  }
  .tag-yellow {
    left: 10px;
    top: 6px;
  }
  .tag-white {
    bottom: 7px;
    right: 10px;
  }
  .film-play {
    gap: 10px;
    font-size: .875rem;
  }
  .film-play small {
    font-size: .75rem;
  }
  .play-disc {
    width: 58px;
    height: 58px;
  }
  .play-disc .icon {
    width: 27px;
    height: 27px;
  }
  .button {
    font-size: .9375rem;
  }
  dialog {
    padding: 30px 23px;
  }
  dialog h2 {
    font-size: 2rem;
  }
}

.blue-text {
  color: var(--blue);
}

.features-section {
  padding-block: 96px;
}

.feature-bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.memory-card,.birthday-card {
  border: var(--line);
  box-shadow: var(--offset);
  padding: 32px;
  background: white;
}

.memory-card {
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
}

.feature-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.feature-label {
  font-size: .75rem;
  letter-spacing: .055em;
  font-weight: 700;
}

.feature-bento h3 {
  font-size: 2rem;
  line-height: 1.17;
  letter-spacing: -.035em;
  margin: 0 0 18px;
  font-weight: 710;
}

.feature-bento p {
  font-size: 1rem;
  color: #4d4d4d;
  line-height: 1.7;
  margin: 0 0 26px;
  max-width: 490px;
}

.dossier-visual {
  margin-block: auto 26px;
}

.person-caption {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.initial {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-weight: 750;
  font-size: 1.125rem;
  border: var(--line);
  flex-shrink: 0;
}

.initial-yellow {
  background: var(--yellow);
}

.person-caption strong {
  display: block;
  font-size: .9375rem;
}

.person-caption div>span {
  display: block;
  font-size: .75rem;
  color: #555;
  margin-top: 2px;
}

.person-tag {
  margin-left: auto;
  align-self: center;
  font-size: .65rem;
  font-weight: 650;
  padding: 3px 7px;
  border: 1px solid #999;
  white-space: nowrap;
}

.dossier-image {
  width: 100%;
  height: auto;
}

.small-caption {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .035em;
  margin: 23px 0 11px;
}

.history-crop {
  aspect-ratio: 828/187;
  overflow: hidden;
  background: white;
}

.history-crop img {
  width: 100%;
  height: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 650;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  align-self: flex-start;
}

.text-link .icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
  transition: transform .15s;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.side-features {
  display: grid;
  gap: 28px;
  grid-template-rows: auto 1fr;
}

.favorite-card {
  background: #101116;
  border: var(--line);
  box-shadow: var(--offset);
  padding: 30px 32px;
  color: white;
  position: relative;
}

.favorite-card .feature-topline {
  margin-bottom: 16px;
}

.favorite-card p {
  color: #c7c8d0;
  margin-bottom: 0;
  max-width: 350px;
}

.favorite-card h3 {
  font-size: 1.875rem;
}

.favorite-card .feature-label {
  color: var(--yellow);
}

.favorite-star {
  width: 45px;
  height: 45px;
  flex-basis: 45px;
  fill: var(--yellow);
  stroke: var(--yellow);
  transform: rotate(-11deg);
}

.birthday-card {
  padding: 28px 32px;
  background: var(--yellow);
  overflow: hidden;
}

.birthday-card .feature-topline {
  margin-bottom: 18px;
}

.birthday-card h3 {
  font-size: 1.875rem;
}

.birthday-card p {
  color: #333;
  margin-bottom: 23px;
}

.birthdays-crop {
  aspect-ratio: 860/310;
  overflow: hidden;
  transform: rotate(-1deg);
  box-shadow: 4px 4px 0 black;
  background: white;
}

.birthdays-crop img {
  width: 100%;
  height: auto;
}

.audience-section {
  padding: 86px 0 92px;
}

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

.audience-card {
  border: var(--line);
  box-shadow: var(--offset);
  background: white;
  padding: 27px 26px 23px;
  display: flex;
  flex-direction: column;
  transition: transform .2s;
}

.audience-card:nth-child(2) {
  background: var(--yellow);
}

.audience-card:nth-child(3) {
  background: #fff;
}

.audience-card:hover {
  transform: translateY(-5px);
}

.audience-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
  font-weight: 650;
  margin-bottom: 35px;
}

.audience-number {
  font-size: .875rem;
  color: #666;
}

.audience-card h3 {
  font-size: 1.6rem;
  font-weight: 680;
  line-height: 1.25;
  letter-spacing: -.025em;
  margin: 0 0 22px;
}

.audience-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.faq-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
  padding-block: 105px;
}

.faq-list {
  border-top: var(--line);
}

.faq-list details {
  border-bottom: var(--line);
}

.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.0625rem;
  font-weight: 620;
  line-height: 1.5;
  padding: 24px 3px;
  cursor: pointer;
}

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

.faq-list summary>span {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .15s;
}

.faq-list details[open] summary>span {
  transform: rotate(45deg);
}

.faq-list details[open] summary {
  padding-bottom: 12px;
}

.faq-answer {
  padding: 0 32px 25px 3px;
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
}

.faq-answer p {
  margin: 0;
}

.faq-answer .text-link {
  margin-top: 17px;
  color: var(--ink);
}

.closing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 65px;
  padding-block: 79px 87px;
}

.closing-copy h2 {
  font-size: clamp(2.7rem,4.8vw,4.25rem);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.closing-copy h2>span {
  color: var(--blue);
}

.closing-copy>p {
  font-size: 1.125rem;
  margin: 25px 0 30px;
  color: #555;
}

.closing-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.closing-actions .button {
  color: var(--ink);
}

.closing-mark {
  width: 255px;
  height: 255px;
  display: grid;
  place-items: center;
  border: 3px solid black;
  background: var(--yellow);
  box-shadow: 10px 10px 0 black;
  transform: rotate(7deg);
}

.closing-mark>span {
  font-size: 10rem;
  font-weight: 820;
  color: black;
  letter-spacing: -.13em;
  line-height: 1;
  transform: translateX(-9px);
}

.closing-mark>span>span {
  color: var(--blue);
}

.site-footer nav {
  display: flex;
  gap: 24px;
  font-size: .875rem;
}

.person-tag {
  font-size: .75rem;
}

@media(max-width:1100px) {
  .feature-bento {
    gap: 23px;
  }
  .memory-card,.birthday-card,.favorite-card {
    padding: 26px 23px;
  }
  .person-tag {
    display: none;
  }
  .feature-bento h3 {
    font-size: 1.75rem;
  }
  .audience-card {
    padding: 25px 21px;
  }
  .audience-card h3 {
    font-size: 1.45rem;
  }
  .audience-card h3 br {
    display: none;
  }
  .audience-top {
    font-size: .75rem;
  }
  .closing-mark {
    width: 215px;
    height: 215px;
  }
  .closing-mark>span {
    font-size: 8.5rem;
  }
  .closing-inner {
    gap: 45px;
  }
  .faq-section {
    gap: 50px;
  }
  .scene-top,.scene-bottom {
    font-size: .75rem;
  }
}

@media(max-width:800px) {
  .features-section {
    padding-block: 62px;
  }
  .feature-bento {
    grid-template-columns: 1fr;
  }
  .memory-card {
    padding: 29px;
  }
  .dossier-visual {
    margin-top: 12px;
  }
  .side-features {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 23px;
  }
  .favorite-card,.birthday-card {
    padding: 24px 21px;
  }
  .favorite-card h3,.birthday-card h3 {
    font-size: 1.6rem;
  }
  .favorite-card p,.birthday-card p {
    font-size: .9375rem;
  }
  .birthdays-crop {
    margin-top: 20px;
  }
  .audience-section {
    padding-block: 60px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .audience-card {
    padding: 25px;
  }
  .audience-top {
    margin-bottom: 23px;
  }
  .audience-card h3 {
    font-size: 1.6rem;
  }
  .audience-card p {
    max-width: 520px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 62px;
  }
  .faq-heading h2 br {
    display: none;
  }
  .closing-inner {
    grid-template-columns: 1fr;
    padding-block: 58px 65px;
  }
  .closing-mark {
    display: none;
  }
  .closing-copy h2 {
    font-size: 2.9rem;
  }
}

@media(max-width:480px) {
  .button-small {
    font-size: .875rem;
  }
  .scene-top,.scene-bottom {
    font-size: .75rem;
  }
  .query-card {
    font-size: .875rem;
  }
  .context-note {
    font-size: .75rem;
    right: 0;
  }
  .visual-tag {
    font-size: .75rem;
  }
  .side-features {
    grid-template-columns: 1fr;
  }
  .memory-card {
    padding: 25px 17px;
  }
  .memory-card h3 {
    font-size: 1.875rem;
  }
  .person-caption {
    gap: 10px;
  }
  .person-caption strong {
    font-size: .875rem;
  }
  .memory-card>p {
    font-size: 1rem;
  }
  .favorite-card,.birthday-card {
    padding: 26px 22px;
  }
  .favorite-card h3,.birthday-card h3 {
    font-size: 1.875rem;
  }
  .favorite-card p,.birthday-card p {
    font-size: 1rem;
  }
  .birthdays-crop {
    max-width: 370px;
  }
  .feature-bento {
    gap: 23px;
  }
  .audience-card h3 {
    font-size: 1.7rem;
  }
  .faq-list summary {
    font-size: 1rem;
    padding-block: 21px;
  }
  .closing-copy h2 {
    font-size: 2.5rem;
  }
  .closing-copy h2>span {
    display: inline;
  }
  .closing-actions {
    gap: 18px;
  }
  .closing-actions .button {
    width: 100%;
  }
  .closing-copy>p {
    font-size: 1rem;
  }
  .site-footer nav {
    gap: 17px;
  }
  .site-footer>.container {
    gap: 22px;
  }
  .site-footer .brand-name {
    font-size: .875rem;
  }
  .site-footer .brand-mark {
    font-size: 2.5rem;
  }
}

@media(max-width:360px) {
  .header-inner {
    gap: 12px;
  }
  .brand-name {
    font-size: .8rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .button-small {
    padding-inline: 9px;
  }
  .button-small .icon {
    display: none;
  }
  .hero-visual {
    width: calc(100% - 10px);
  }
  .context-note {
    right: -5px;
  }
  .closing-copy h2 {
    font-size: 2.25rem;
  }
}

.hero>*,.feature-bento>*,.side-features>*,.audience-grid>*,.faq-section>* {
  min-width: 0;
}

.hero h1,.closing-copy h2 {
  overflow-wrap: break-word;
}

.highlight {
  max-width: 100%;
  white-space: normal;
}

.query-card>span {
  min-width: 0;
}

.film-play:focus-visible,#product-film:focus-visible {
  outline: 4px solid white;
  outline-offset: -8px;
}

.site-footer nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.button-small {
  font-size: .875rem;
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    animation: none!important;
    transition: none!important;
  }
}
