:root {
  --brand: #0065b2;
  --base: #ffffff;
  --line: rgba(0, 101, 178, 0.2);
  --soft: rgba(0, 101, 178, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  color: var(--brand);
  background: var(--base);
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 300;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.intro-active {
  overflow: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

h1,
h2,
p {
  margin: 0;
}

.container {
  width: min(1200px, calc(100% - 120px));
  margin: 0 auto;
}

.page-intro {
  display: none;
}

body.intro-complete .page-intro {
  visibility: hidden;
}

body.intro-active .hero-canvas,
body.intro-active .hero-copy-block {
  opacity: 0.12;
  filter: blur(28px);
  transition:
    opacity 2.2s ease,
    transform 2.2s ease,
    filter 2.2s ease;
}

body.intro-complete .hero-canvas,
body.intro-complete .hero-copy-block {
  opacity: 1;
  filter: blur(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition:
    transform 320ms ease,
    background-color 220ms ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: auto;
  height: 38px;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1px;
  background: var(--brand);
  transition:
    transform 240ms ease,
    top 240ms ease,
    opacity 240ms ease;
}

.menu-toggle span:first-child {
  top: 19px;
}

.menu-toggle span:last-child {
  top: 27px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a,
.hero-links a,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.site-nav a:hover,
.hero-links a:hover,
.contact-link:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  background: var(--brand);
  color: var(--base);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: clip;
  position: relative;
  padding: 0;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  padding: 96px 0 88px;
  padding-left: 56px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-title-row {
  display: flex;
  align-items: center;
  margin-top: 0;
}

.hero-mark {
  flex: 0 0 auto;
  width: clamp(356px, 35.6vw, 534px);
}

.hero-mark picture {
  display: block;
}

.hero-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  margin-top: 24px;
  max-width: none;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.9;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero-copy-line {
  display: inline;
}

.contact-link {
  border-color: var(--brand);
}

.mobile-menu-toggle,
.mobile-site-nav {
  display: none;
}

.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.mobile-menu-toggle.is-visible,
.mobile-menu-toggle[aria-expanded="true"],
.subpage .mobile-menu-toggle {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-toggle span {
  position: absolute;
  left: 15px;
  width: 22px;
  height: 1px;
  background: var(--brand);
  transition:
    transform 220ms ease,
    top 220ms ease,
    opacity 220ms ease;
}

.mobile-menu-toggle span:first-child {
  top: 21px;
}

.mobile-menu-toggle span:last-child {
  top: 29px;
}

.mobile-menu-toggle[aria-expanded="true"] span:first-child,
.mobile-menu-toggle[aria-expanded="true"] span:last-child {
  opacity: 0;
}

.mobile-site-nav {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 32px;
  border: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
  visibility: hidden;
}

.mobile-site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.mobile-site-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.hero-canvas {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  opacity: var(--hero-canvas-opacity, 1);
  transition: opacity 140ms linear;
}

body.intro-active .hero-canvas,
body.intro-active .hero-copy-block {
  opacity: 0.12;
  transform: none;
}

body.intro-complete .hero-canvas,
body.intro-complete .hero-copy-block {
  opacity: 1;
  transform: none;
}

.hero-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero-panel {
  position: absolute;
  background: rgba(0, 101, 178, 0.08);
  will-change: transform;
}

.hero-panel-a {
  top: -8vh;
  right: -10vw;
  width: 42vw;
  height: 78vh;
  background: linear-gradient(180deg, rgba(0, 101, 178, 0.18), rgba(0, 101, 178, 0.02));
  animation: heroPanelA 8s ease-in-out infinite;
}

.hero-panel-b {
  left: 18vw;
  bottom: -18vh;
  width: 26vw;
  height: 56vh;
  background: rgba(0, 101, 178, 0.12);
  animation: heroPanelB 7s ease-in-out infinite;
}

.hero-panel-c {
  left: -6vw;
  top: 8vh;
  width: 18vw;
  height: 72vh;
  background: linear-gradient(180deg, rgba(0, 101, 178, 0.1), rgba(0, 101, 178, 0));
  animation: heroPanelC 9s ease-in-out infinite;
}

.hero-copy-block {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.section {
  min-height: 100vh;
  padding: 108px 0;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-divided {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#about {
  min-height: 100vh;
}

#about .section-layout,
.section-divided .section-layout,
#contact .section-layout {
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 88px;
  padding-left: 40px;
}

#about .section-body {
  max-width: 920px;
}

#about .section-lead {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.8vw, 2.8rem);
}

#about .about-highlight {
  margin-top: 22px;
  padding: 20px 24px 22px;
  width: 100%;
  max-width: 100%;
}

#about .service-list {
  margin-top: 24px;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

#about .service-item {
  padding: 18px 18px 20px;
  position: relative;
  overflow: hidden;
}

#about .service-item:hover {
  padding-left: 18px;
}

#about .service-number {
  margin-bottom: 10px;
}

#about .service-title {
  margin-bottom: 6px;
}

#about .support-clients {
  width: 100%;
  max-width: 100%;
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  width: 100%;
}

.section-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
}

.section-body {
  max-width: 860px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: 0.06em;
  width: 100%;
  position: relative;
}

.section-body p + p {
  margin-top: 18px;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0.04em;
}

.contact-lead {
  font-size: clamp(1.7rem, 3.2vw, 3.3rem);
}

.desktop-break {
  display: inline;
}

.section-body-about {
  padding-top: 0;
}

.section-body-message {
  padding-top: 0;
}

.section-body-contact {
  padding-top: 0;
}

.about-highlight {
  margin-top: 30px;
  padding: 22px 0 0;
  border-left: 0;
  background: none;
}

.support-clients {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 101, 178, 0.12);
}

.support-case-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.support-case {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 101, 178, 0.1);
}

.support-case:last-child {
  border-bottom: 1px solid rgba(0, 101, 178, 0.1);
}

.support-case-copy {
  min-width: 0;
}

.support-case-title {
  margin-bottom: 8px;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.support-case-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(0, 101, 178, 0.12);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(0, 101, 178, 0.06);
}

.support-case-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

@media (min-width: 1101px) {
  #about .about-highlight,
  #about .service-list,
  #about .support-clients {
    width: min(1040px, calc(100vw - 460px));
    max-width: none;
  }

  .support-case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }

  .support-case {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 20px;
    align-items: start;
  }

  .support-case-image {
    width: auto;
  }
}

.site-footer {
  min-height: 120px;
  padding: 24px 0 40px;
  display: flex;
  align-items: flex-end;
  scroll-snap-align: end;
  scroll-snap-stop: always;
  border-top: 1px solid rgba(0, 101, 178, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
}

.footer-link,
.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0.82;
}

.subpage {
  min-height: 100vh;
}

.policy-hero {
  padding: 120px 0 48px;
}

.policy-hero-inner {
  max-width: 900px;
}

.policy-hero h1 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.policy-intro {
  margin-top: 24px;
  max-width: 720px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.9;
}

.policy-section {
  padding: 12px 0 80px;
}

.policy-layout {
  max-width: 980px;
}

.policy-block + .policy-block {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 101, 178, 0.12);
}

.policy-block h2 {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.policy-block p {
  max-width: 840px;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.95;
}

.policy-list {
  margin: 14px 0 0;
  padding-left: 1.2rem;
}

.policy-list li {
  margin: 8px 0;
}

.policy-link {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.about-kicker {
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.service-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-item {
  --service-highlight: 0;
  min-height: 100%;
  padding: 22px 0 24px;
  border-top: 1px solid rgba(0, 101, 178, 0.14);
  background: rgba(173, 216, 230, calc(var(--service-highlight) * 0.22));
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease,
    background-color 260ms ease;
}

.service-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--brand);
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: center;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.service-item:hover {
  transform: translateX(8px);
  border-color: rgba(0, 101, 178, 0.34);
}

.service-item:hover::after {
  opacity: 1;
  transform: scaleY(1);
}


.service-number {
  margin-bottom: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  opacity: 0.7;
}

.service-title {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.profile-role {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.8;
}

.company-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.company-summary p {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 0;
  align-items: center;
  margin: 0;
  min-height: 82px;
  padding: 0;
  border-top: 1px solid rgba(0, 101, 178, 0.1);
  line-height: 1.8;
}

.company-summary p:last-child {
  border-bottom: 1px solid rgba(0, 101, 178, 0.1);
}

.company-summary span {
  min-width: 96px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  line-height: 1.4;
}

.company-summary strong {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.55;
}

.company-block,
.profile-block {
  padding: 26px 0 30px;
  border-top: 1px solid rgba(0, 101, 178, 0.12);
  border-bottom: 0;
  background: none;
}

.company-block {
  margin-top: 52px;
}

.profile-block {
  padding-left: 0;
}

.company-block-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 1;
}

.profile-name {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.message-copy {
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.section-body-message {
  max-width: 900px;
}

.section-body-message p:not(.profile-role):not(.profile-name) {
  max-width: 820px;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1.95;
  letter-spacing: 0.05em;
}

.contact-link {
  margin-top: 28px;
  width: fit-content;
}

.contact-form {
  margin-top: 28px;
  max-width: 780px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.form-field span {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 101, 178, 0.18);
  background: transparent;
  color: var(--brand);
  font: inherit;
  letter-spacing: 0.04em;
  outline: none;
  border-radius: 0;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: rgba(0, 101, 178, 0.46);
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(0, 101, 178, 0.18);
  background: transparent;
  color: var(--brand);
  letter-spacing: 0.1em;
  font-weight: 400;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.contact-submit:hover {
  background: var(--brand);
  color: var(--base);
  border-color: var(--brand);
}

.contact-note {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 1, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-scroll-text] {
  --scroll-y: 0px;
  --scroll-opacity: 1;
  transform: translate3d(0, var(--scroll-y), 0);
  opacity: var(--scroll-opacity);
  will-change: transform, opacity;
}

@keyframes heroPanelA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-3vw, 4vh, 0);
  }
}

@keyframes heroPanelB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(2vw, -5vh, 0);
  }
}

@keyframes heroPanelC {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(1.5vw, 3vh, 0);
  }
}

@media (max-width: 900px) {
  #about [data-reveal] {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-snap-type: none;
  }

  .hero,
  .section,
  .site-footer {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .container {
    width: min(1180px, calc(100% - 56px));
  }

  .hero-layout,
  .section-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 28px;
    padding-left: 0;
  }

  .hero-visual {
    display: none;
  }

  .section-heading {
    position: static;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  #about .section-layout,
  .section-divided .section-layout,
  #contact .section-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 0;
  }

  #about .about-highlight,
  #about .service-list,
  #about .support-clients {
    width: 100%;
    max-width: 100%;
  }

  .support-case-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-case {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .support-case-image {
    width: 100%;
  }
}

@media (max-width: 760px) {
  #about [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .container {
    width: min(1200px, calc(100% - 40px));
  }

  .hero {
    min-height: 100svh;
  }

  .hero-layout {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 0 72px;
    text-align: center;
  }

  .hero-title-row {
    margin-top: 16px;
    justify-content: center;
  }

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

  .hero-mark {
    width: 250px;
  }

  .hero-copy {
    max-width: 340px;
    margin-top: 28px;
    white-space: normal;
  }

  .hero-copy-line {
    display: block;
  }

  #about .about-highlight,
  #about .service-list,
  #about .support-clients,
  #about .support-case-list,
  #about .support-case {
    width: 100%;
    max-width: 100%;
  }

  .mobile-menu-toggle {
    top: 18px;
    right: 18px;
  }

  .mobile-site-nav a {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
  }

  .section {
    min-height: auto;
    padding: 108px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-hero {
    padding: 96px 0 32px;
  }

  .policy-section {
    padding-bottom: 56px;
  }

  .section-lead {
    margin-bottom: 20px;
    font-size: clamp(1.6rem, 8vw, 2.6rem);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .desktop-break {
    display: none;
  }

  .service-list {
    margin-top: 28px;
    gap: 18px;
  }

  .service-item {
    padding: 22px 20px 24px;
  }

  .company-summary p {
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 6px;
  }

  .profile-block {
    margin-top: 28px;
    padding-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-intro {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-snap-type: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  body.intro-active,
  body.menu-open {
    overflow: auto;
  }

  body.intro-active .hero-canvas,
  body.intro-active .hero-copy-block,
  body.intro-complete .hero-canvas,
  body.intro-complete .hero-copy-block {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
