/* cspell:ignore Shuei Nunito */
:root {
  --paper: #f7f8f6;
  --white: #fff;
  --ink: #090b0a;
  --muted: #626863;
  --line: #ccd1cd;
  --line-dark: #343936;
  --lime: #c9fe6e;
  --green: #2bdf7d;
  --green-dark: #087542;
  --type: "Nunito Sans", "dnp-shuei-gothic-gin-std", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --utility: var(--type);
  --shell: min(1216px, 90%);
  color-scheme: light;
}

html[data-noise="grid"] {
  --feature-noise-image: url("../images/noise-grid.svg");
  --feature-noise-size: 12px 12px;
  --feature-noise-blend: screen;
  --feature-noise-opacity: .03;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--type);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .05em;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

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

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.not-found-main {
  min-height: 70vh;
  background: var(--white);
}

.not-found-section {
  padding-block: clamp(150px, 18vw, 250px) clamp(110px, 14vw, 190px);
}

.not-found-section h1 {
  margin: 26px 0 0;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.035em;
}

.not-found-section__lead {
  max-width: 680px;
  margin: 42px 0 0;
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 30px;
  margin-top: 50px;
}

.not-found-links > a:not(.button) {
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: .35em;
}

.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 84px;
  padding-inline: clamp(26px, 3.6vw, 54px);
  pointer-events: none;
}

.site-logo,
.site-menu {
  pointer-events: auto;
}

.site-logo {
  position: relative;
  z-index: 92;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 0;
  padding: 0;
  transition: opacity .2s ease;
}

.site-logo img,
.site-menu__brand img {
  width: 90px;
  height: auto;
}

.site-header:has(.site-menu[open]) .site-logo,
.site-header:has(.site-menu.is-closing) .site-logo {
  pointer-events: none;
  opacity: 0;
}

.site-menu summary {
  position: fixed;
  z-index: 100;
  top: 17px;
  right: clamp(26px, 3.6vw, 54px);
  display: grid;
  width: 86px;
  min-height: 50px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  mix-blend-mode: difference;
  list-style: none;
  cursor: pointer;
  transition: opacity .25s ease;
}

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

.site-menu summary:hover,
.site-menu summary:focus-visible {
  opacity: .62;
}

.site-menu summary svg {
  width: 52px;
  height: 24px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.site-menu__line {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .25s ease, stroke-width .25s ease;
}

.site-menu summary:hover .site-menu__line,
.site-menu summary:focus-visible .site-menu__line {
  stroke-width: 2;
}

.site-menu[open] .site-menu__line--top {
  transform: translateY(5px) rotate(18deg);
}

.site-menu[open] .site-menu__line--bottom {
  transform: translateY(-5px) rotate(-18deg);
}

.site-menu nav {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 0 clamp(44px, 8vw, 132px);
  width: auto;
  padding: clamp(120px, 14vh, 168px) clamp(42px, 9vw, 146px) clamp(70px, 9vh, 108px);
  border: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .075) 1px, transparent 1px) 0 0 / 20% 100%,
    var(--ink);
  color: var(--white);
  box-shadow: none;
}

.site-menu[open] nav {
  animation: menu-in .36s cubic-bezier(.22, 1, .36, 1) both;
}

.site-menu.is-closing nav {
  pointer-events: none;
  animation: menu-out .3s ease both;
}

.site-menu__brand {
  position: absolute;
  top: 24px;
  left: clamp(26px, 3.6vw, 54px);
}

.site-menu__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 6vw, 92px);
  width: min(1160px, 100%);
  margin-inline: auto;
}

.site-menu__group > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .5);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .12em;
}

.site-menu__group ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu__group a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: 3px;
  color: var(--white);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 650;
  line-height: 1.55;
  text-decoration: none;
}

.site-menu__group a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right center;
  content: "";
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.site-menu__group a:hover::after,
.site-menu__group a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

@keyframes menu-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes menu-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

.page-hero {
  position: relative;
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(9, 11, 10, .065) 1px, transparent 1px) 0 0 / 20% 100%,
    var(--white);
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  scrollbar-width: none;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--green);
}

.breadcrumb svg {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  fill: currentColor;
}

.page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.page-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.page-label::before {
  width: 30px;
  height: 1px;
  flex: 0 0 30px;
  background: currentColor;
  content: "";
}

.page-hero h1 {
  margin: 28px 0 0;
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.015em;
}

.page-hero__lead {
  padding-bottom: 4px;
}

.page-hero__lead p {
  margin: 0;
  font-size: 16px;
}

.page-hero__lead p + p {
  margin-top: 12px;
}

.demo-notice {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.demo-notice__inner {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 72px;
  padding-block: 12px;
}

.demo-notice p {
  margin: 0;
  font-size: 13px;
}

.demo-notice strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.demo-band {
  padding: 80px 0;
  background: var(--paper);
}

.demo-band--it {
  background: var(--white);
}

.demo-band__intro {
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  gap: clamp(70px, 10vw, 150px);
}

.demo-band__type {
  width: fit-content;
  margin: 0 0 18px;
  padding: .5em 1em .4em;
  background: var(--ink);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .08em;
}

.demo-band h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
}

.demo-band__company {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.demo-band__summary {
  max-width: 680px;
  padding-top: 20px;
}

.demo-band__summary > p {
  margin: 0;
  font-size: 16px;
}

.demo-band__summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.demo-band__summary li {
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.demo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1440px, calc(100% - 72px));
  margin: 50px auto 0;
}

.demo-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #e9ece9;
  box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}

.demo-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.demo-gallery figure:hover img {
  transform: scale(1.018);
}

.demo-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  background: rgba(9, 11, 10, .8);
  color: var(--white);
  font-size: 11px;
  line-height: 1.4;
  backdrop-filter: blur(6px);
}

.demo-band__action {
  display: flex;
  justify-content: flex-end;
  margin-top: 38px;
}

.demo-boundary {
  padding: 80px 0;
  background: var(--paper);
}

.demo-boundary__layout {
  display: block;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.about-label::before {
  width: 30px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.about-intro__title {
  margin: 24px 0 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.demo-boundary__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  margin-top: 30px;
}

.demo-boundary__columns section {
  padding-top: 26px;
  border-top: 2px solid var(--line);
}

.demo-boundary__columns section:last-child {
  border-color: var(--green);
}

.demo-boundary h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.demo-boundary ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.demo-boundary li {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 14px;
}

.demo-boundary li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.demo-boundary__note {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.offer-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 70px 0;
  background: var(--ink);
  color: var(--white);
}

.offer-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: var(--feature-noise-image, none);
  background-repeat: repeat;
  background-size: var(--feature-noise-size, auto);
  mix-blend-mode: var(--feature-noise-blend, soft-light);
  opacity: var(--feature-noise-opacity, 0);
  pointer-events: none;
  content: "";
}

.offer-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 90%;
  max-width: 1080px;
}

.offer-section h2 {
  margin: 0 0 50px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .015em;
  text-align: center;
}

.offer-section h2 strong {
  color: var(--lime);
  font-weight: inherit;
}

.offer-main {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 100px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.offer-price {
  padding: 16px 10px 18px;
  border-block: 1px solid rgba(255, 255, 255, .72);
}

.offer-price > p:first-child {
  margin: 0;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}

.offer-price > p:last-child {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0 0;
}

.offer-price strong {
  font-family: var(--utility);
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
}

.offer-price span {
  font-size: 18px;
  font-weight: 700;
}

.offer-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-stop-note {
  margin: 20px 0 0;
  color: #d4d8d5;
  font-size: 12px;
  line-height: 1.8;
}

.offer-details li {
  position: relative;
  margin: 0;
  padding-left: 14px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.offer-details li::before {
  position: absolute;
  top: .5em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--lime);
  content: "";
}

.offer-payment-note {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  width: min(100%, 900px);
  margin: 34px auto 0;
  padding: 20px 0 18px;
  border-block: 1px solid rgba(255, 255, 255, .28);
}

.offer-payment-note p {
  margin: 0;
  color: #d4d8d5;
  font-size: 13px;
  line-height: 1.85;
}

.offer-payment-note .offer-payment-note__label {
  color: var(--lime);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.offer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
}

.offer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.offer-link-icon {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  transition: background-color .2s ease, color .2s ease;
}

.offer-link-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  stroke: none;
}

.offer-links a:hover,
.offer-links a:focus-visible,
.offer-legal-links a:hover,
.offer-legal-links a:focus-visible {
  color: var(--lime);
}

.offer-links a:hover .offer-link-icon,
.offer-links a:focus-visible .offer-link-icon {
  background: var(--lime);
}

.offer-actions {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 50px;
  padding: 12px 24px;
  border: 2px solid transparent;
  background: var(--lime);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}

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

.button-secondary {
  background: var(--ink);
  color: var(--lime);
}

.button--lime {
  border-color: var(--lime);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--lime);
  background: var(--ink);
  color: var(--lime);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
  background: var(--lime);
  color: var(--ink);
}

.button--morph {
  gap: 12px;
  min-width: 260px;
  min-height: 60px;
  padding: 10px 20px;
  border-radius: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.button-morph-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--lime);
  transition: border-radius .28s ease, transform .28s ease;
}

.button-morph-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform .28s ease;
}

html[data-density="edge"] .button--morph:hover .button-morph-icon,
html[data-density="edge"] .button--morph:focus-visible .button-morph-icon {
  transform: rotate(45deg);
  border-radius: 50%;
}

html[data-density="edge"] .button--morph:hover .button-morph-icon svg,
html[data-density="edge"] .button--morph:focus-visible .button-morph-icon svg {
  transform: rotate(-45deg);
}

.offer-legal-note {
  margin: 0;
  color: #d4d8d5;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.offer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  color: #d4d8d5;
  font-size: 12px;
}

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

.site-footer {
  padding: 82px 0 26px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer__inner {
  width: var(--shell);
  margin-inline: auto;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.7fr);
  gap: clamp(72px, 10vw, 156px);
}

.site-footer__logo {
  display: inline-block;
}

.site-footer__logo img {
  width: 122px;
  height: auto;
}

.site-footer__brand p {
  margin: 26px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.site-footer__brand p + p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 72px);
}

.site-footer__group > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .12em;
}

.site-footer__group ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__group a {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer__group a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right center;
  content: "";
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.site-footer__group a:hover::after,
.site-footer__group a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 74px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.site-footer__bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer__bottom p:nth-child(2) {
  text-align: center;
}

.site-footer__to-top {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__to-top svg {
  width: 32px;
  height: 32px;
  padding: 8px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: background-color .2s ease, border-color .2s ease;
}

.site-footer__to-top:hover svg,
.site-footer__to-top:focus-visible svg {
  border-color: var(--lime);
  background: var(--lime);
}

@media (max-width: 949.98px) {
  .site-footer__main {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }

  .offer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    width: min(100%, 620px);
  }

  .offer-price,
  .offer-details {
    width: 100%;
  }
}

@media (min-width: 761px) {
  html:has(.site-menu[open]),
  body:has(.site-menu[open]) {
    overflow: hidden;
  }

  .site-header {
    z-index: auto;
  }
}

@media (min-width: 1024px) {
  .site-menu nav {
    padding-block: 100px 150px;
  }

  .site-menu__groups {
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    gap: 100px;
    width: fit-content;
  }

  .site-menu__group > p {
    font-size: 32px;
    letter-spacing: normal;
  }

  .site-menu__group:last-child a {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .not-found-section {
    padding-block: 120px 90px;
  }

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

  .not-found-section__lead {
    margin-top: 28px;
    font-size: 14px;
  }

  .not-found-links {
    align-items: stretch;
    margin-top: 36px;
  }

  .not-found-links .button {
    width: 100%;
  }

  :root {
    --shell: 90%;
  }

  body {
    font-size: 14px;
  }

  .site-header {
    min-height: 62px;
    padding-inline: 18px;
  }

  html:has(.site-menu[open]),
  body:has(.site-menu[open]) {
    overflow: hidden;
  }

  .site-logo {
    position: static;
    z-index: auto;
    min-height: 44px;
  }

  .site-logo img {
    width: 90px;
  }

  .site-menu summary {
    top: 9px;
    right: 8px;
    width: 64px;
    min-height: 44px;
    color: var(--ink);
    mix-blend-mode: normal;
  }

  .site-menu summary svg {
    width: 42px;
    height: 22px;
  }

  .site-menu nav {
    display: block;
    overflow-y: auto;
    align-content: start;
    gap: normal;
    padding: 130px 18px 34px;
    background: var(--paper);
    color: var(--ink);
    overscroll-behavior: contain;
  }

  .site-menu__brand {
    z-index: 95;
    top: 18px;
    left: 18px;
  }

  .site-menu__brand img {
    filter: brightness(0);
  }

  .site-menu__groups {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
    width: 100%;
  }

  .site-menu__group > p {
    gap: 8px;
    margin: 0 0 20px;
    color: var(--line);
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: normal;
  }

  .site-menu__group:last-child > p {
    margin: 0 0 10px;
    font-size: 18px;
  }

  .site-menu__group ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
  }

  .site-menu__group:last-child ul {
    gap: 5px 22px;
  }

  .site-menu__group a,
  .site-menu__group:last-child a {
    color: var(--ink);
    padding-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
  }

  .site-menu__group:last-child a {
    font-size: 13px;
  }

  .site-menu__group a::after {
    background: var(--green);
  }

  .page-hero {
    padding: 80px 0 50px;
  }

  .page-hero__layout,
  .demo-band__intro {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero__layout {
    gap: 20px;
    margin-top: 50px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 8.5vw, 58px);
    line-height: 1.05;
  }

  .page-hero__lead p,
  .demo-band__summary > p {
    font-size: 14px;
  }

  .demo-notice__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding-block: 18px;
  }

  .demo-band {
    padding: 50px 0;
  }

  .demo-band__intro {
    gap: 30px;
  }

  .demo-band__type {
    margin: 0 0 10px;
    font-size: 10px;
  }

  .demo-band h2 {
    font-size: 24px;
  }

  .demo-band__company {
    margin: 5px 0 0;
    font-size: 12px;
  }

  .demo-band__summary {
    max-width: none;
    padding-top: 0;
  }

  .demo-band__summary ul {
    gap: 5px;
    margin: 15px 0 0;
  }

  .demo-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    width: var(--shell);
    margin: 30px auto 0;
  }

  .demo-band__action {
    justify-content: center;
  }

  .demo-band__action .button {
    font-size: 14px;
  }

  .demo-boundary {
    padding: 50px 0;
  }

  .about-label {
    font-size: 14px;
    line-height: 1.3;
  }

  .about-label::before {
    width: 20px;
    flex-basis: 20px;
  }

  .about-intro__title {
    margin-top: 15px;
    font-size: clamp(20px, 5.64vw, 22px);
  }

  .demo-boundary__columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .demo-boundary__note {
    margin-top: 40px;
  }

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

  .offer-layout {
    gap: 46px;
  }

  .offer-section h2 {
    margin-bottom: 0;
    font-size: clamp(24px, 7.4vw, 30px);
    line-height: 1.45;
  }

  .offer-title__lead {
    display: block;
  }

  .offer-section h2 strong {
    display: inline-block;
    white-space: nowrap;
  }

  .offer-main {
    gap: 30px;
  }

  .offer-price {
    padding-inline: 10px;
  }

  .offer-price strong {
    font-size: 44px;
    letter-spacing: 0;
  }

  .offer-price span {
    font-size: 18px;
  }

  .offer-details li {
    font-size: 14px;
  }

  .offer-details li::before {
    top: .5em;
  }

  .offer-links {
    display: grid;
    gap: 12px;
  }

  .offer-payment-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 0;
    padding: 18px 4px;
  }

  .offer-actions {
    margin-top: 0;
  }

  .offer-actions .button--morph {
    border-width: 1px;
    letter-spacing: normal;
  }

  .button {
    min-width: 144px;
    min-height: 48px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 24px;
  }

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

  .site-footer__bottom p:nth-child(2) {
    display: none;
  }
}

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

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