500;600;700&family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;600;700;800&family=Noto+Serif+JP:wght@400;500;600&display=swap");
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
p {
  margin: 0;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
button {
  color: inherit;
}
::selection {
  background: var(--accent);
  color: white;
}
.shell {
  max-width: 1240px;
  margin: auto;
  padding-left: 54px;
  padding-right: 54px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}
.lp-header {
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.lp-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
}
.lp-nav > a:not(.button):hover {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 17px 23px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.5;
  transition:
    transform 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}
.button.small {
  padding: 11px 18px;
  font-size: 10px;
  gap: 20px;
}
.button.light {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.button.light:hover {
  background: var(--soft);
}
.button > span:last-child {
  font-size: 18px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.status {
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.status:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.menu-button {
  display: none;
}
.section {
  padding-top: 106px;
  padding-bottom: 106px;
}
.section-head {
  margin-bottom: 42px;
}
.section-head .eyebrow {
  color: var(--accent);
  margin-bottom: 21px;
}
.section-head h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
}
.section-head p {
  font-size: 12px;
  color: var(--muted);
  line-height: 2.15;
  margin-top: 20px;
}
.center {
  text-align: center;
}
.section-head.center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.muted {
  color: var(--muted);
}
.demo-note {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.8;
}
.tag {
  display: inline-flex;
  font-size: 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 9px;
  line-height: 1.5;
  align-items: center;
  gap: 7px;
}
.tag-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 25px 32px 25px 0;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  line-height: 1.9;
}
summary::-webkit-details-marker {
  display: none;
}
summary:before {
  content: "Q";
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-right: 15px;
}
summary:after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 23px;
  font-size: 19px;
  font-weight: 400;
  color: var(--muted);
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 12px;
  color: var(--muted);
  line-height: 2.1;
  padding: 0 15px 26px 29px;
}
.lp-footer {
  border-top: 1px solid var(--line);
  padding-top: 33px;
  padding-bottom: 28px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-links {
  display: flex;
  gap: 25px;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 27px;
  color: var(--muted);
  font-size: 9px;
}
.studio-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 8px;
  letter-spacing: 1px;
}
.ink-logo {
  display: block;
  width: 43px;
  aspect-ratio: 2.13;
  position: relative;
  overflow: hidden;
}
.ink-logo img {
  position: absolute;
  width: 206%;
  height: auto;
  max-width: none;
  left: -52%;
  top: -56%;
}
.ink-chip {
  background: #101113;
  padding: 7px 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  transform: translateY(-150%);
  background: var(--accent);
  color: white;
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  transform: none;
}
.lp-dialog {
  width: calc(100% - 36px);
  max-width: 440px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 38px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px #0003;
}
.lp-dialog::backdrop {
  background: #17202c88;
  backdrop-filter: blur(5px);
}
.lp-dialog .eyebrow {
  color: var(--accent);
}
.lp-dialog h2 {
  font-size: 25px;
  margin: 22px 0;
  line-height: 1.7;
  font-weight: 500;
}
.lp-dialog p {
  font-size: 12px;
  color: var(--muted);
  line-height: 2.1;
  margin-bottom: 25px;
}
.lp-dialog .button {
  width: 100%;
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 12px;
  background: transparent;
  border: 0;
  font-size: 25px;
  color: var(--muted);
}
.js .reveal {
  opacity: 0;
  transform: translateY(23px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
}
.underline-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
}
.underline-link:hover {
  color: var(--accent);
}
@media (max-width: 1000px) {
  .shell {
    padding-left: 32px;
    padding-right: 32px;
  }
  .lp-nav {
    gap: 20px;
  }
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-head h2 {
    font-size: 30px;
  }
  .faq-layout {
    gap: 40px;
    grid-template-columns: 0.65fr 1.35fr;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 30px;
  }
  .shell {
    padding-left: 23px;
    padding-right: 23px;
  }
  .lp-header {
    height: 77px;
  }
  .lp-nav {
    display: none;
    position: fixed;
    inset: 77px 0 0;
    background: var(--bg);
    padding: 35px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 40;
  }
  .lp-nav.open {
    display: flex;
  }
  .lp-nav > a {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }
  .lp-nav .button {
    margin-top: 23px;
    border: 0;
    font-size: 13px;
    padding: 17px;
  }
  .menu-button {
    display: flex;
    width: 39px;
    height: 37px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 5px;
    z-index: 45;
  }
  .menu-button span {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section-head h2 {
    font-size: 27px;
    line-height: 1.75;
  }
  .section-head .eyebrow {
    font-size: 9px;
    letter-spacing: 1.7px;
    margin-bottom: 17px;
  }
  .section-head p {
    font-size: 11px;
    line-height: 2.2;
  }
  .section-head {
    margin-bottom: 30px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .faq-layout .section-head {
    margin-bottom: 22px;
  }
  .button {
    font-size: 11px;
    padding: 15px 20px;
    gap: 23px;
  }
  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .footer-links {
    gap: 20px;
    font-size: 10px;
    flex-wrap: wrap;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 10px;
  }
  .studio-link {
    font-size: 7px;
    gap: 7px;
  }
  .ink-logo {
    width: 35px;
  }
  .ink-chip {
    padding: 6px 8px;
  }
  .lp-footer {
    padding-top: 30px;
    padding-bottom: 23px;
  }
  .lp-dialog {
    padding: 34px 25px;
  }
  summary {
    font-size: 12px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  details p {
    font-size: 11px;
  }
  .demo-note {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* LimpIn identity */
.ink-chip{background:#0d171d;padding:9px 12px;border-radius:7px}.ink-logo{display:block;width:104px;height:auto;aspect-ratio:1460/325;overflow:visible}.ink-logo img{position:static;display:block;width:100%;height:auto;max-width:100%;transform:none;margin:0}.studio-link{min-height:44px}
