:root {
  --paper: #f5fbfc;
  --paper-deep: #eaf4f4;
  --ink: #0a3142;
  --ink-soft: #496672;
  --quiet: #78909a;
  --teal: #0e8b8f;
  --teal-light: #72bfc0;
  --mist: #d9eaeb;
  --white: #ffffff;
  --line: rgba(10, 49, 66, 0.14);
  --line-strong: rgba(10, 49, 66, 0.28);
  --mx: 0;
  --my: 0;
  --max: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 49, 66, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 49, 66, 0.032) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 88px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Inter, "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(.2, .8, .2, 1);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  transition: color .3s ease, background .3s ease;
}

.nav .nav-cta:hover {
  color: var(--paper);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 620px;
  height: 100svh;
  max-height: 900px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 76px 0 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(245,251,252,.9) 0 18%, rgba(245,251,252,.56) 42%, rgba(245,251,252,.06) 76%);
  z-index: 1;
}

#signal {
  position: absolute;
  inset: 76px 0 0;
  z-index: 0;
  width: 100%;
  height: calc(100% - 76px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 4;
  height: 100%;
  padding-top: 76px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 100%;
  padding-top: 1.5vh;
  transform: translateY(-20px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .25em;
  opacity: 0;
  animation: rise-in .8s ease-out .45s forwards;
}

.display {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", sans-serif;
  width: min(780px, 68vw);
  font-size: clamp(54px, 6.2vw, 90px);
  font-weight: 790;
  letter-spacing: -.075em;
  line-height: .82;
  text-transform: uppercase;
}

.display .line {
  display: block;
  position: relative;
}

.display .line:last-child {
  margin-left: clamp(0px, 7vw, 100px);
  color: var(--teal);
}

.display-main {
  position: relative;
  z-index: 3;
  opacity: 0;
  clip-path: inset(47% 0 47% 0);
  animation: resolve-main 1.4s cubic-bezier(.16,.82,.2,1) 1.05s forwards;
}

.hero-jp {
  margin: 28px 0 0 clamp(220px, 42vw, 520px);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 600;
  letter-spacing: .07em;
  opacity: 0;
  animation: rise-in .9s ease-out 1.65s forwards;
}

.hero-desc {
  max-width: 560px;
  margin: 12px 0 0 clamp(220px, 42vw, 520px);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
  opacity: 0;
  animation: rise-in .9s ease-out 1.85s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0 clamp(220px, 42vw, 520px);
  opacity: 0;
  animation: rise-in .9s ease-out 2.05s forwards;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

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

.button-primary {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.button-primary:hover { background: var(--teal); border-color: var(--teal); }
.button-secondary:hover { background: rgba(255,255,255,.7); }

.registration {
  position: absolute;
  right: 5.5vw;
  bottom: 5.5vh;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, 6px);
  gap: 5px;
  opacity: 0;
  animation: fade-in .5s ease-out 2.4s forwards;
}

.registration i {
  width: 6px;
  height: 6px;
  border: 1px solid var(--teal);
  border-radius: 50%;
}

.hero-meta {
  position: absolute;
  z-index: 5;
  right: 4.5vw;
  top: 50%;
  color: var(--quiet);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  opacity: 0;
  animation: fade-in .8s ease-out 2.3s forwards;
}

@keyframes resolve-main {
  0% { opacity: .08; clip-path: inset(47% 0 47% 0); transform: translateY(13px); letter-spacing: -.025em; }
  45% { opacity: .42; }
  100% { opacity: 1; clip-path: inset(0); transform: none; letter-spacing: -.075em; }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

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

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.4);
}

.proof-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.proof-lead,
.proof-item {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
}

.proof-lead { padding-right: 40px; }
.proof-item { padding: 0 28px; }
.proof-item:last-child { border-right: 0; }

.proof-lead p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.proof-item span {
  color: var(--teal);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.section-tight { padding: 76px 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) 1.45fr;
  gap: 60px;
  margin-bottom: 66px;
}

.kicker {
  margin: 0;
  color: var(--teal);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-title {
  max-width: 820px;
  margin: -8px 0 0;
  font-family: Inter, sans-serif;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.14;
}

.section-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2.1;
}

.service-list {
  border-top: 1px solid var(--line-strong);
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(240px, .9fr) 1.2fr 30px;
  gap: 34px;
  align-items: center;
  min-height: 178px;
  border-bottom: 1px solid var(--line);
  transition: background .4s ease, padding .4s ease;
}

.service-row:hover {
  padding-inline: 20px;
  background: rgba(255,255,255,.52);
}

.service-num {
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: .14em;
}

.service-name {
  margin: 0;
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 600;
  letter-spacing: -.035em;
}

.service-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.service-arrow {
  font-family: Inter, sans-serif;
  font-size: 24px;
  transition: transform .3s ease;
}

.service-row:hover .service-arrow { transform: translateX(6px); }

.sales-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.case {
  min-height: 0;
  padding: 28px 32px;
  background: var(--paper);
  display: grid;
  grid-template-columns: 180px minmax(260px, .9fr) 1.1fr;
  gap: 34px;
  align-items: start;
}

.case-label {
  display: block;
  margin: 5px 0 0;
  color: var(--quiet);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .16em;
}

.case h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.case p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
}

.feature {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  color: var(--ink);
  background: transparent;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.feature::before { display: none; }

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: end;
}

.feature .kicker { color: var(--teal); }

.feature h2 {
  margin: 20px 0 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -.055em;
}

.feature h2 span {
  display: block;
  margin-top: 14px;
  color: var(--teal);
  font-size: .42em;
  letter-spacing: .03em;
}

.feature p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.feature .button {
  border-color: var(--line-strong);
  color: var(--ink);
}

.feature .button:hover { background: var(--ink); color: var(--paper); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
}

.process-step {
  position: relative;
  min-height: 230px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step:first-child { border-left: 1px solid var(--line); }

.process-step small {
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .16em;
}

.process-step h3 {
  margin: 72px 0 0;
  font-size: 21px;
  font-weight: 600;
}

.process-step p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.8;
}

.article-list { border-top: 1px solid var(--line-strong); }

.article-row {
  display: grid;
  grid-template-columns: 130px 130px 1fr 30px;
  gap: 24px;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, padding .35s ease;
}

.article-row:hover {
  padding-inline: 18px;
  background: rgba(255,255,255,.5);
}

.article-date,
.article-cat {
  color: var(--quiet);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: .08em;
}

.article-cat { color: var(--teal); }

.article-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.closing {
  padding: 112px 0;
  color: var(--paper);
  background: var(--ink);
}

.closing-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: end;
}

.closing h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.5vw, 84px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.16;
}

.closing p {
  margin: 20px 0 0;
  color: rgba(245,251,252,.67);
  font-size: 14px;
  line-height: 2;
}

.closing .button {
  width: 100%;
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.closing .button:hover { background: var(--teal-light); border-color: var(--teal-light); }

.closing-compact {
  padding: 0;
}

.closing-line {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.closing-line .kicker {
  color: var(--teal-light);
}

.closing-line > a {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-family: Inter, sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -.04em;
  transition: color .3s ease;
}

.closing-line > a:hover {
  color: var(--teal-light);
}

.site-footer {
  padding: 64px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
}

.footer-company {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.9;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 30px;
  align-content: start;
}

.footer-nav a {
  color: var(--ink-soft);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.copyright {
  margin: 56px 0 0;
  color: var(--quiet);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .12em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}

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

.page-hero {
  padding: 176px 0 82px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: clamp(62px, 8.5vw, 112px);
  font-weight: 780;
  letter-spacing: -.08em;
  line-height: .86;
  text-transform: uppercase;
}

.page-hero h1 span { color: var(--teal); }

.page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  margin-top: 52px;
}

.page-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.filter {
  padding: 10px 16px;
  border: 0;
  color: var(--quiet);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.filter[aria-selected="true"] {
  color: var(--paper);
  background: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
}

.contact-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}

.contact-aside h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: -.03em;
}

.contact-aside p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.email-link {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--teal);
  color: var(--teal);
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 30px;
}

.field {
  display: grid;
  gap: 10px;
}

.field span {
  color: var(--ink-soft);
  font-size: 12px;
}

.field em {
  margin-left: 8px;
  color: var(--teal);
  font-style: normal;
  font-size: 10px;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.field input { height: 52px; }

.field textarea {
  min-height: 180px;
  padding: 16px 0;
  resize: vertical;
  line-height: 1.8;
}

.field input:focus,
.field textarea:focus { border-color: var(--teal); }

.form-note {
  margin: -10px 0 0;
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.8;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.submit-row .button {
  min-width: 210px;
  cursor: pointer;
}

.contact-company {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 2;
}

@media (max-width: 980px) {
  .shell { width: min(calc(100% - 48px), var(--max)); }
  .hero-copy { width: 100%; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-lead { grid-column: 1 / -1; min-height: 86px; border-bottom: 1px solid var(--line); }
  .proof-item { min-height: 78px; }
  .service-row { grid-template-columns: 60px .8fr 1.2fr 24px; gap: 22px; }
  .case { grid-template-columns: 150px 1fr; }
  .case p { grid-column: 2; }
  .feature { padding: 54px 0; }
  .feature-grid,
  .closing-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-aside { position: static; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 36px), var(--max)); }
  .header-inner { min-height: 66px; }
  .brand { font-size: 18px; }
  .brand-logo { width: 25px; height: 25px; }
  .nav { gap: 15px; }
  .nav a { font-size: 9px; }
  .nav a[href="blog.html"] { display: none; }
  .nav .nav-cta { padding: 10px 12px; }
  .hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
  }
  .hero::after { inset: 66px 0 0; background: linear-gradient(180deg, rgba(245,251,252,.45), rgba(245,251,252,.92) 56%, var(--paper) 100%); }
  .hero-inner {
    min-height: 100svh;
    padding-top: 104px;
    padding-bottom: 52px;
    align-items: center;
  }
  .hero-copy { width: 100%; padding-top: 0; }
  .hero-copy { transform: none; }
  .eyebrow { margin-bottom: 22px; font-size: 8px; line-height: 1.6; }
  .display {
    width: 100%;
    font-size: clamp(40px, 13vw, 68px);
    letter-spacing: -.07em;
    line-height: .88;
  }
  .display .line:last-child { margin-left: 0; }
  .hero-jp,
  .hero-desc,
  .hero-actions { margin-left: 0; }
  .hero-jp { margin-top: 26px; font-size: clamp(17px, 5vw, 20px); }
  .hero-desc { font-size: 12px; }
  .hero-actions { margin-top: 16px; align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  #signal { inset: 66px 0 30%; height: auto; opacity: .82; }
  .hero-meta, .registration { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-lead { grid-column: auto; padding: 24px 0; border-right: 0; }
  .proof-item { min-height: 58px; padding: 0; border-right: 0; border-top: 1px solid var(--line); }
  .section { padding: 88px 0; }
  .section-tight { padding: 72px 0; }
  .section-head { grid-template-columns: 1fr; gap: 26px; margin-bottom: 46px; }
  .section-title { font-size: 40px; }
  .service-row { grid-template-columns: 42px 1fr 20px; gap: 12px; padding: 28px 0; }
  .service-row:hover { padding-inline: 0; }
  .service-text { grid-column: 2 / -1; }
  .feature { margin-inline: 0; padding: 46px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 180px; border-left: 1px solid var(--line); }
  .process-step h3 { margin-top: 42px; }
  .case { grid-template-columns: 1fr; gap: 12px; }
  .case p { grid-column: auto; }
  .article-row { grid-template-columns: 1fr 80px; gap: 8px 12px; padding: 24px 0; }
  .article-date { order: 0; }
  .article-cat { order: 1; text-align: right; }
  .article-title { grid-column: 1 / -1; }
  .article-row > :last-child { display: none; }
  .closing { padding: 82px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .page-hero { padding: 136px 0 66px; }
  .page-hero h1 { font-size: 66px; }
  .page-intro { grid-template-columns: 1fr; gap: 24px; margin-top: 34px; }
}

@media (max-width: 380px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav { gap: 10px; }
  .nav a[href="#services"] { display: none; }
  .hero-inner { padding-top: 92px; padding-bottom: 42px; }
  .eyebrow { margin-bottom: 16px; font-size: 7px; }
  .display { font-size: clamp(38px, 12.8vw, 48px); }
  .hero-jp { margin-top: 22px; }
  .hero-desc { line-height: 1.7; }
  .button { min-height: 42px; }
}

@media (max-width: 720px) and (max-height: 680px) {
  .hero-inner { padding-top: 84px; padding-bottom: 32px; }
  .eyebrow { margin-bottom: 14px; }
  .display { font-size: clamp(38px, 11.8vw, 52px); }
  .hero-jp { margin-top: 18px; }
  .hero-desc { margin-top: 8px; line-height: 1.65; }
  .hero-actions { gap: 8px; margin-top: 12px; }
  .button { min-height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .eyebrow,
  .display-main,
  .display-echo,
  .hero-jp,
  .hero-desc,
  .hero-actions,
  .registration,
  .hero-meta { opacity: 1; filter: none; transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
