:root {
  color-scheme: light;
  --bg: #ffffff;
  --paper: #ffffff;
  --surface: rgba(255, 255, 255, 0.94);
  --text: #141414;
  --muted: #6a6a6a;
  --line: rgba(20, 20, 20, 0.14);
  --line-strong: rgba(20, 20, 20, 0.32);
  --gold: #8b714b;
  --radius: 8px;
  --header-height: 86px;
  --content-width: 1280px;
  --nav-width: calc(100vw - 40px);
  --header-bg-alpha: 0;
  --header-text-rgb: 255 255 255;
  --header-line-rgb: 255 255 255;
  --header-line-alpha: 0.18;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.55;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

button,
textarea {
  font: inherit;
}

.menu-state {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-shell {
  position: relative;
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  width: var(--nav-width);
  transform: translateX(-50%);
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: calc(var(--header-height) * 0.8);
  color: rgb(var(--header-text-rgb));
  border-bottom: 1px solid rgb(var(--header-line-rgb) / var(--header-line-alpha));
  background: rgba(255, 255, 255, var(--header-bg-alpha));
  transition: background 60ms linear, color 60ms linear, border-color 60ms linear;
}

.site-header.is-scrolled,
body.is-past-hero .site-header {
  min-height: calc(var(--header-height) * 0.8);
}

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

body.is-menu-open .site-header {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: #111111;
}

.menu-state:checked ~ .page-shell .site-header {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: #111111;
}

body.is-menu-open .menu-button,
body.is-menu-open .language-toggle,
body.is-menu-open .contact-link,
.menu-state:checked ~ .page-shell .menu-button,
.menu-state:checked ~ .page-shell .language-toggle,
.menu-state:checked ~ .page-shell .contact-link {
  color: #ffffff;
}

.menu-button,
.language-toggle,
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-size: clamp(0.8rem, 1.24vw, 1rem);
  font-weight: 700;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.language-toggle {
  min-width: 38px;
  min-height: 34px;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 10px;
  letter-spacing: 0.04em;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.language-toggle:hover {
  background: rgb(var(--header-text-rgb) / 0.08);
  transform: translateY(-2px);
}

.menu-button {
  justify-self: start;
  padding: 0;
}

.menu-close-text {
  display: none;
}

.menu-state:checked ~ .page-shell .menu-open-text {
  display: none;
}

.menu-state:checked ~ .page-shell .menu-close-text {
  display: inline;
}

.contact-link.is-copied {
  opacity: 0.72;
}

.menu-icon {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transition: border-color 160ms ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

body.is-menu-open .menu-icon {
  border-color: transparent;
}

.menu-state:checked ~ .page-shell .menu-icon {
  border-color: transparent;
}

body.is-menu-open .menu-icon::before {
  opacity: 1;
  transform: rotate(45deg);
}

body.is-menu-open .menu-icon::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.menu-state:checked ~ .page-shell .menu-icon::before {
  opacity: 1;
  transform: rotate(45deg);
}

.menu-state:checked ~ .page-shell .menu-icon::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.contact-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-left-width: 0;
}

.brand-title {
  justify-self: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.48rem, 3.04vw, 2.44rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  display: none;
  grid-template-rows: 1fr auto;
  align-content: stretch;
  gap: 22px;
  padding: clamp(116px, 14vh, 148px) max(28px, calc((100vw - var(--content-width)) / 2 + 20px)) 32px;
  background: #111111;
  color: #ffffff;
  animation: menuIn 240ms ease;
  overflow-y: auto;
}

.menu-state:checked ~ .menu-panel,
body.is-menu-open .menu-panel {
  display: grid;
}

.menu-list {
  display: grid;
  align-content: start;
  row-gap: clamp(10px, 1.45vw, 20px);
}

.menu-list a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  width: fit-content;
  padding: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.36vw, 3.54rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-transform: uppercase;
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-list a:hover,
.menu-list a.is-active {
  opacity: 0.62;
  transform: translateX(10px);
}

.menu-list span {
  min-width: 28px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.menu-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  font-weight: 650;
}

.menu-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
}

main {
  margin-top: 0;
}

.hero {
  position: relative;
  --ripple-x: 0.58;
  --ripple-y: 0.68;
  --ripple-intensity: 0;
  --ripple-offset-x: 0px;
  --ripple-offset-y: 0px;
  --ripple-opacity: 0.3;
  --ripple-brightness: 1.04;
  --ripple-saturation: 1.06;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  margin-left: calc(50% - 50vw);
  display: grid;
  align-content: end;
  gap: clamp(22px, 3vw, 34px);
  padding: calc(var(--header-height) + clamp(28px, 4vw, 56px))
    max(20px, calc((100vw - var(--content-width)) / 2 + 20px))
    0;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -4;
  background-image: url("./image/hero_background.png");
  background-size: cover;
  background-position: center 45%;
}

.hero-ripple {
  position: absolute;
  inset: -2%;
  z-index: -3;
  pointer-events: none;
  opacity: var(--ripple-opacity);
  filter: url("#hero-ripple-filter") brightness(var(--ripple-brightness)) saturate(var(--ripple-saturation));
  transform: translate3d(var(--ripple-offset-x), var(--ripple-offset-y), 0);
  transition: opacity 420ms ease, filter 420ms ease, transform 420ms ease;
  animation: waterDrift 9s ease-in-out infinite;
  clip-path: inset(34% 0 8% 0);
}

.hero.is-ripple-active .hero-ripple {
  opacity: var(--ripple-opacity);
}

.hero-ripple-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 45%;
  user-select: none;
}

.hero-person {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero-person-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 45%;
  user-select: none;
  animation: personIntroSlide 5000ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.1) 36%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.14) 100%);
}

.hero-actions,
.tag-list,
.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-layout {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  width: min(100%, 486px);
  min-height: 122px;
  align-content: start;
  margin-top: auto;
}

.eyebrow,
.item-meta,
.row-number {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.055em;
}

.hero h1,
.hero h2,
.hero h3 {
  color: #ffffff;
}

h1 {
  max-width: 720px;
  margin-top: 20px;
  font-family: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  font-size: clamp(3.35rem, 7.2vw, 6.75rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h2 {
  max-width: 100%;
  font-size: clamp(1.9rem, 3.8vw, 3.85rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.quick-info {
  order: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(9, 9, 9, 0.42);
  overflow: hidden;
}

.quick-info div {
  min-height: 78px;
  display: grid;
  align-content: end;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px;
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-info strong {
  color: #ffffff;
  font-size: clamp(0.9rem, 1.05vw, 1.04rem);
  line-height: 1.25;
}

.hero-actions {
  order: 2;
  align-items: center;
  margin-top: clamp(18px, 2.4vw, 24px);
}

.button,
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  font-weight: 850;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.button-primary {
  color: var(--text);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.14);
}

.text-link {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.content-section {
  padding: 0 0 clamp(81px, 9vw, 123px);
}

.profile-section {
  padding-top: clamp(63px, 9vw, 132px);
}

.section-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 58px);
  margin-bottom: 32px;
}

.section-heading h2 {
  justify-self: end;
  text-align: right;
  line-height: 1.9;
}

.profile-grid,
.project-grid,
.capability-grid {
  display: grid;
  gap: 14px;
}

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

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

.profile-card,
.project-card,
.capability-card,
.matcher-card,
.index-row {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.profile-card,
.project-card,
.capability-card,
.matcher-card {
  padding: 24px;
}

.profile-card:hover,
.project-card:hover,
.capability-card:hover,
.matcher-card:hover,
.index-row:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.05);
  transform: translateY(-6px);
}

.has-js .profile-card.reveal.is-visible:hover,
.has-js .project-card.reveal.is-visible:hover,
.has-js .capability-card.reveal.is-visible:hover,
.has-js .matcher-card.reveal.is-visible:hover,
.has-js .index-row.reveal.is-visible:hover {
  transform: translateY(-6px);
}

.profile-card h3,
.project-card h3,
.capability-card h3 {
  margin-top: 16px;
}

.profile-card p,
.project-card p,
.capability-card p,
.index-row p,
.matcher-note,
.matcher-status,
.score-summary p,
.result-block {
  color: var(--muted);
}

.profile-card p,
.project-card p,
.capability-card p {
  margin: 14px 0 18px;
}

.capability-card p {
  margin-bottom: 0;
}

.tag-list span,
.keyword-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.4);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 780;
}

.graduation-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 20px 0 4px;
}

.graduation-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.index-list {
  display: grid;
  gap: 10px;
}

.index-row {
  display: grid;
  grid-template-columns: 54px 150px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
}

.index-row time {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
}

.index-row p {
  margin: 10px 0 0;
}

.matcher-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.matcher-card:hover,
.has-js .matcher-card.reveal.is-visible:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.matcher-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}

.matcher-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 24px);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 44px rgba(20, 20, 20, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.matcher-panel:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 58px rgba(20, 20, 20, 0.08);
  transform: translateY(-6px);
}

.has-js .matcher-panel.reveal.is-visible:hover {
  transform: translateY(-6px);
}

.matcher-panel-heading {
  display: grid;
  gap: 5px;
}

.matcher-panel-heading .eyebrow {
  margin: 0;
}

.matcher-form label {
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.04;
  font-weight: 850;
}

.matcher-form textarea {
  width: 100%;
  min-height: clamp(300px, 30vw, 390px);
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.58;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.matcher-form textarea:focus {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 4px rgba(20, 20, 20, 0.055);
}

.matcher-note {
  margin: 0;
  font-size: 0.84rem;
  text-align: center;
}

.matcher-output {
  min-height: 100%;
}

.matcher-output h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.25rem, 1.9vw, 1.75rem);
  line-height: 1.04;
}

.matcher-status {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 760;
}

.matcher-status.is-error {
  color: #6f4b18;
  border-color: rgba(139, 113, 75, 0.28);
  background: rgba(252, 247, 235, 0.9);
}

.match-empty {
  display: grid;
  place-content: center;
  gap: 10px;
  min-height: clamp(300px, 30vw, 390px);
  margin-top: 6px;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  text-align: center;
  color: var(--muted);
}

.match-empty strong {
  color: var(--text);
  font-size: 1.05rem;
}

.match-empty p {
  max-width: 320px;
  margin: 0 auto;
}

.match-result {
  display: grid;
  gap: 16px;
  animation: panelIn 260ms ease;
}

.chat-result {
  display: grid;
  gap: 12px;
  min-height: clamp(300px, 30vw, 390px);
  margin-top: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.035);
  animation: panelIn 260ms ease;
}

.chat-result h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.chat-result p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.68;
  white-space: pre-wrap;
}

.is-hidden {
  display: none !important;
}

.score-summary {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.035);
}

.score-summary strong {
  display: block;
  color: var(--text);
  font-size: 2.9rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.score-summary strong::after {
  content: "%";
  font-size: 1.05rem;
  letter-spacing: 0;
}

.score-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.score-summary p {
  margin: 0;
  font-weight: 760;
}

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

.score-chip {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.score-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
}

.score-chip strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1.34rem;
}

.result-block h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.result-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.matcher-section,
.capability-section {
  padding-bottom: 165px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes waterDrift {
  0%,
  100% {
    translate: -8px 0;
  }
  50% {
    translate: 8px 2px;
  }
}

@keyframes personIntroSlide {
  from {
    transform: translate3d(-112px, 0, 0);
  }
  to {
    transform: translate3d(112px, 0, 0);
  }
}

@media (max-width: 980px) {
  .site-header,
  .hero-layout,
  .section-heading,
  .profile-grid,
  .project-grid,
  .capability-grid,
  .matcher-layout,
  .quick-info {
    grid-template-columns: 1fr;
  }

  .brand-title {
    justify-self: start;
    grid-row: 1;
  }

  .menu-button {
    grid-row: 2;
  }

  .header-actions {
    grid-row: 2;
  }

  .quick-info div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

  .menu-panel {
    padding-top: 140px;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    min-height: 108px;
  }

  .brand-title {
    font-size: 1.9rem;
  }

  .menu-button,
  .contact-link {
    font-size: 1rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 34px);
    background-position: center;
  }

  .hero-ripple {
    clip-path: inset(33% 0 6% 0);
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .menu-panel {
    padding: 132px 24px 30px;
  }

  .menu-list a {
    gap: 12px;
    font-size: clamp(2.35rem, 12.5vw, 4rem);
  }

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

  .index-row,
  .score-summary,
  .score-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 0 0 102px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-ripple {
    animation: none;
    filter: none;
    opacity: 0.24;
    transform: none;
  }

  .hero-person-image {
    animation: none;
    transform: none;
  }
}
