:root {
  --paper: #f6f1e8;
  --paper-soft: #fbf8f1;
  --card: #fffdf8;
  --ink: #201e1a;
  --muted: #6d675d;
  --line: #ddd3c1;
  --teal: #0d7f6e;
  --teal-deep: #0b5f52;
  --teal-ink: #123c35;
  --gold: #c2822a;
  --coral: #df5a43;
  --white: #ffffff;
  --shadow: 0 10px 24px rgba(32, 30, 26, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 34px;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.trust-bar span {
  white-space: nowrap;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px;
  background: rgba(246, 241, 232, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
}

.brand-mark svg {
  width: 18px;
  height: 18px;
}

.brand-text {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand-text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.official-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.official-link svg {
  width: 15px;
  height: 15px;
}

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

.hero-grid {
  display: grid;
  gap: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--teal-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(223, 90, 67, 0.45);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(223, 90, 67, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(223, 90, 67, 0); }
  100% { box-shadow: 0 0 0 0 rgba(223, 90, 67, 0); }
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 17px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-deep);
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--paper-soft);
}

.hero-visual {
  min-width: 0;
}

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

.photo-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(32, 30, 26, 0.12);
  border-radius: 8px;
  background: var(--line);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tile figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  padding: 5px 8px;
  overflow: hidden;
  color: var(--white);
  background: rgba(18, 60, 53, 0.84);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 8px 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-chip span {
  color: var(--gold);
}

.stats {
  padding: 26px 0;
  background: var(--teal-ink);
  color: var(--paper);
}

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

.stat strong {
  display: block;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: rgba(246, 241, 232, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
}

.credit-section {
  padding-top: 34px;
}

.credit-panel {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.credit-panel::before {
  content: "";
  display: block;
  height: 5px;
  margin: -20px -20px 0;
  background: var(--gold);
}

.credit-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 16px;
}

.credit-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 76px;
  padding: 10px 6px;
  color: var(--muted);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.credit-slot b {
  font-size: 1.28rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.credit-slot small {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.credit-slot.active {
  color: var(--teal-deep);
  background: rgba(13, 127, 110, 0.09);
  border-color: var(--teal);
}

.credit-slot.unlocked {
  color: var(--ink);
  background: #fff2d3;
  border-color: var(--gold);
}

.credit-vault.unlock-animate .credit-slot.active {
  animation: credit-pop 480ms ease;
}

@keyframes credit-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.timer-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 18px 0 12px;
}

.timer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
}

.timer-icon svg {
  width: 19px;
  height: 19px;
}

.timer-number {
  min-width: 2ch;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.timer-unit {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timer-track {
  height: 8px;
  overflow: hidden;
  background: var(--line);
  border-radius: 999px;
}

.timer-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
  transition: width 1s linear;
}

.timer-status {
  min-height: 42px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.credit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.claim-cta.is-locked {
  opacity: 0.56;
}

.claim-cta.is-ready {
  background: var(--gold);
  animation: cta-glow 1.8s ease-in-out infinite;
}

@keyframes cta-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(194, 130, 42, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(194, 130, 42, 0);
  }
}

.section {
  padding: 46px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 24px;
}

.section-label {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.match-panel {
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.match-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 30px;
}

.step-label {
  color: var(--teal-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.back-btn {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.progress-track {
  height: 4px;
  margin: 12px 0 16px;
  overflow: hidden;
  background: var(--line);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
  transition: width 220ms ease;
}

.step-title {
  margin: 0 0 12px;
  font-size: 1.14rem;
  line-height: 1.25;
}

.step-hint {
  margin: -6px 0 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.goal-option,
.style-option {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.goal-option {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 108px;
  padding: 13px;
}

.goal-option svg {
  width: 21px;
  height: 21px;
  color: var(--teal);
}

.goal-option strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.goal-option span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

.style-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 8px;
}

.style-option img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: cover;
}

.style-option strong {
  display: block;
  font-size: 0.84rem;
  line-height: 1.2;
}

.style-option span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.goal-option:focus-visible,
.style-option:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.goal-option.selected,
.style-option.selected {
  border-color: var(--teal);
  background: rgba(13, 127, 110, 0.09);
}

.result-panel {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.result-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.result-thumb {
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.result-thumb img {
  width: 116px;
  height: 116px;
  object-fit: cover;
}

.result-kicker {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.result-copy h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
}

.result-text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.result-meta span {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.result-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.result-actions .btn {
  min-height: 42px;
}

.redo-btn {
  padding: 6px 4px;
  border: 0;
  background: transparent;
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gallery-section {
  padding-top: 30px;
}

.gallery-scroll {
  display: flex;
  gap: 12px;
  margin: 0 -18px;
  padding: 2px 18px 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.gallery-card {
  width: 168px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ba-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--line);
}

.ba-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  filter: grayscale(1) contrast(0.92) brightness(1.08);
}

.ba-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  color: var(--white);
  background: rgba(18, 60, 53, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
}

.ba-labels {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.ba-labels span {
  display: inline-flex;
  padding: 4px 7px;
  color: var(--white);
  background: rgba(18, 60, 53, 0.82);
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 800;
}

.gallery-info {
  padding: 12px;
}

.gallery-info h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.2;
}

.gallery-info span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.app-section {
  background: var(--teal-ink);
  color: var(--paper);
}

.app-section .section-label {
  color: #7fd4c4;
}

.app-section .section-desc {
  color: rgba(246, 241, 232, 0.8);
}

.app-layout {
  display: grid;
  gap: 24px;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.feature-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: #7fd4c4;
}

.feature-list span {
  color: rgba(246, 241, 232, 0.86);
  font-size: 0.88rem;
  line-height: 1.4;
}

.feature-list strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
}

.app-media {
  margin: 0;
}

.app-media img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  object-fit: cover;
  border: 1px solid rgba(246, 241, 232, 0.22);
  border-radius: 8px;
}

.app-media figcaption {
  margin-top: 10px;
  color: rgba(246, 241, 232, 0.7);
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
}

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

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

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

.privacy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
}

.privacy-icon svg {
  width: 21px;
  height: 21px;
}

.privacy-card h3 {
  margin: 12px 0 0;
  font-size: 1rem;
}

.privacy-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.handoff-section {
  background: var(--teal);
  color: var(--white);
}

.handoff-section .section-label {
  color: #c7ecdf;
}

.handoff-section .section-desc {
  color: rgba(255, 255, 255, 0.82);
}

.handoff-grid {
  display: grid;
  gap: 12px;
}

.handoff-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 15px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.handoff-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(18, 60, 53, 0.22);
}

.handoff-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
}

.handoff-icon svg {
  width: 21px;
  height: 21px;
}

.handoff-copy {
  min-width: 0;
}

.handoff-copy strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.2;
}

.handoff-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.footer {
  padding: 30px 0 110px;
  color: rgba(246, 241, 232, 0.72);
  background: var(--ink);
  font-size: 0.74rem;
  line-height: 1.5;
}

.footer p {
  margin: 0;
}

.footer p + p {
  margin-top: 8px;
  color: rgba(246, 241, 232, 0.5);
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: rgba(246, 241, 232, 0.97);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 240ms ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
}

@media (min-width: 560px) {
  .hero-grid {
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 34px;
  }

  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-tile-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .result-card {
    grid-template-columns: 148px minmax(0, 1fr);
  }

  .result-thumb img {
    width: 148px;
    height: 148px;
  }

  .gallery-card {
    width: 200px;
  }

  .privacy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .topbar {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero {
    padding: 52px 0 58px;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero-sub {
    font-size: 1.06rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-head h2 {
    font-size: 2.1rem;
  }

  .match-panel {
    padding: 24px;
  }

  .option-grid {
    gap: 12px;
  }

  .goal-option {
    min-height: 118px;
    padding: 15px;
  }

  .gallery-scroll {
    margin: 0 -28px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .gallery-card {
    width: 230px;
  }

  .app-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 40px;
  }

  .handoff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .handoff-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    padding-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    gap: 48px;
  }

  .photo-grid {
    gap: 10px;
  }

  .stats-grid {
    gap: 30px;
  }
}

@media (max-width: 340px) {
  .trust-bar {
    gap: 7px;
    font-size: 0.65rem;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

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

  .result-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
