@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("./fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxm2BL9A.woff2") format("woff2");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts.gstatic.com/s/figtree/v9/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQG5ZyEA.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto Mono";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts.gstatic.com/s/robotomono/v31/L0x5DF4xlVMF-BfR8bXMIjhLq38.woff2") format("woff2");
}

:root {
  --bg: #fff;
  --ink: #050505;
  --muted: #59616f;
  --line: rgba(5, 5, 5, .14);
  --panel: #fff;
  --accent: #2563eb;
  --dark: #050505;
  --radius: 8px;
  --max: 1200px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Inter", "Noto Sans JP", "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.vp-shell {
  min-height: 100vh;
  padding: 100px 24px 0;
  position: relative;
}

.vp-nav,
.lanso-virtual__header.vp-nav {
  align-items: center;
  animation: vp-nav-in .65s cubic-bezier(.22, 1, .36, 1) both;
  background: rgba(255, 255, 255, .58);
  border: 0;
  border-radius: 9999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  display: flex;
  gap: 48px;
  height: 52px;
  justify-content: flex-start;
  left: 50%;
  margin: 0;
  max-width: none;
  padding: 8px 24px;
  position: fixed;
  top: 24px;
  transform: translateX(-50%);
  width: min(448px, calc(100vw - 48px));
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vp-brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 28px;
  white-space: nowrap;
}

.vp-brand:focus-visible,
.vp-menu-toggle:focus-visible,
.vp-links a:focus-visible,
.vp-footer a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.vp-store-badges {
  align-items: center;
  display: flex;
  gap: 4px;
  min-width: 0;
}

.vp-store-badge {
  cursor: default;
  display: block;
  flex: 0 0 120px;
  height: 36px;
  overflow: hidden;
}

.vp-store-badge img {
  display: block;
  height: 100%;
  object-fit: fill;
  width: 100%;
}

.vp-store-badge:first-child img {
  height: 53.9px;
  max-width: none;
  transform: translate(-9px, -9px);
  width: 138px;
}

.vp-menu-toggle {
  display: none;
}

.vp-hero {
  margin: 0 auto 80px;
  max-width: var(--max);
  padding: clamp(88px, 10vw, 138px) 0 24px;
}

.vp-hero > * {
  animation: vp-rise .8s cubic-bezier(.22, 1, .36, 1) both;
}

.vp-hero > :nth-child(2) { animation-delay: 70ms; }
.vp-hero > :nth-child(3) { animation-delay: 140ms; }
.vp-hero > :nth-child(4) { animation-delay: 210ms; }

.vp-kicker,
.lanso-virtual__eyebrow {
  color: var(--accent);
  display: block;
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.vp-kicker::before {
  content: none;
}

.vp-title,
.lanso-virtual h1 {
  font-family: "Syne", "Noto Sans JP", sans-serif;
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0;
  max-width: 1000px;
  text-wrap: balance;
  word-break: keep-all;
}

.vp-lead,
.lanso-virtual__lead {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.85;
  margin: 30px 0 0;
  max-width: 720px;
}

.vp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.vp-button,
.lanso-virtual__primary {
  align-items: center;
  border: 1px solid rgba(5, 5, 5, .16);
  border-radius: 6px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition: box-shadow .25s ease, transform .25s ease, background-color .25s ease;
}

.vp-button:hover,
.lanso-virtual__primary:hover {
  box-shadow: 0 14px 28px rgba(5, 5, 5, .14);
  transform: translateY(-2px);
}

.vp-button:active,
.lanso-virtual__primary:active {
  transform: translateY(0) scale(.99);
}

.vp-button.primary,
.lanso-virtual__primary {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.vp-button.secondary {
  background: #fff;
}

.vp-section,
.vp-demo-notice {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--max);
}

.vp-section {
  margin-bottom: 40px;
}

.vp-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vp-card {
  animation: vp-rise .78s cubic-bezier(.22, 1, .36, 1) both;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 190px;
  padding: 28px;
  transition: box-shadow .3s ease, transform .3s ease;
}

.vp-card:nth-child(2) { animation-delay: 70ms; }
.vp-card:nth-child(3) { animation-delay: 140ms; }
.vp-card:hover { box-shadow: 0 20px 46px rgba(5, 5, 5, .09); transform: translateY(-4px); }

.vp-card h2,
.vp-card h3 {
  font-family: "Syne", "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.25;
  margin: 0 0 14px;
}

.vp-card p,
.vp-card ul {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.vp-card p { margin: 0; }
.vp-card ul { margin: 12px 0 0; padding-left: 1.2em; }

.vp-list {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0 auto 64px;
  max-width: var(--max);
  overflow: hidden;
}

.vp-row {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  padding: 28px 30px;
  transition: background-color .25s ease;
}

.vp-row:first-child { border-top: 0; }
.vp-row:hover { background: #f8faff; }

.vp-row strong {
  font-family: "Syne", "Noto Sans JP", sans-serif;
  font-size: 15px;
  letter-spacing: -.02em;
}

.vp-row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.vp-row span a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vp-band {
  align-items: center;
  animation: vp-rise .8s cubic-bezier(.22, 1, .36, 1) 100ms both;
  background: var(--dark);
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  gap: 32px;
  grid-template-columns: 1.3fr .7fr;
  margin: 0 auto 96px;
  max-width: var(--max);
  overflow: hidden;
  padding: clamp(30px, 5vw, 52px);
  position: relative;
}

.vp-band h2 {
  font-family: "Syne", "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.045em;
  line-height: 1.05;
  margin: 0 0 16px;
}

.vp-band p {
  color: rgba(255, 255, 255, .62);
  margin: 0;
  max-width: 620px;
}

.vp-band__cta {
  background: #fff;
  border-color: #fff;
  color: #050505;
  margin-top: 26px;
}

.vp-price {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  padding: 24px;
}

.vp-price span {
  color: rgba(255, 255, 255, .55);
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vp-price strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 32px;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin: 10px 0;
}

.vp-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.vp-field {
  display: grid;
  gap: 7px;
}

.vp-field-label {
  font-family: "Syne", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.vp-field-note {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.vp-input {
  background: #f7f8fb;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  padding: 15px;
  width: 100%;
}

.vp-input:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .14);
  outline: none;
}

.vp-consent {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 10px;
  line-height: 1.7;
  padding: 4px 2px;
}

.vp-consent input {
  accent-color: var(--accent);
  height: 18px;
  margin: 3px 0 0;
  width: 18px;
}

.vp-consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.vp-status {
  background: #eaf0ff;
  border-radius: 6px;
  color: #1747b7;
  display: none;
  font-size: 13px;
  margin: 0;
  padding: 13px 15px;
}

.vp-status[data-visible="true"] { display: block; }
button.vp-button { cursor: pointer; }

.vp-demo-notice {
  background: #eaf0ff !important;
  border: 1px solid rgba(37, 99, 235, .28) !important;
  border-radius: 6px !important;
  color: #17356f !important;
  margin-bottom: 40px !important;
  padding: 16px 18px !important;
}

.vp-footer,
.lanso-virtual__footer.vp-footer {
  background: #000;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1);
  color: #fff;
  display: block;
  margin: 0 0 0 calc(50% - 50vw);
  max-width: none;
  overflow: hidden;
  padding: 64px 24px;
  position: relative;
  width: 100vw;
  z-index: 10;
}

.vp-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  height: 224px;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.vp-footer__top {
  align-items: flex-start;
  display: flex;
  gap: 80px;
  height: 144px;
  position: relative;
  z-index: 1;
}

.vp-footer__identity {
  flex: 0 0 auto;
}

.vp-footer__brand {
  display: flex;
  font-family: "Syne", sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 32px;
  width: fit-content;
}

.vp-footer__identity p {
  color: #4b5563;
  font-size: 14px;
  line-height: 20px;
  margin: 12px 0 0;
}

.vp-footer__badges {
  display: flex;
  gap: 4px;
  margin-top: 24px;
}

.vp-footer__badges .vp-store-badge {
  border-color: rgba(255, 255, 255, .28);
}

.vp-footer__groups {
  display: flex;
  flex: 1 0 0;
  gap: 24px;
  justify-content: flex-end;
}

.vp-footer__group {
  align-content: start;
  display: grid;
  gap: 0;
  width: min-content;
}

.vp-footer__group h2 {
  color: #4b5563;
  font-family: "Syne", sans-serif;
  font-size: 14px;
  letter-spacing: .7px;
  line-height: 20px;
  margin: 0 0 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.vp-footer__group a {
  color: #9ca3af;
  display: inline-flex;
  font-size: 14px;
  line-height: 20px;
  min-height: 30px;
  padding: 5px 0;
  transition: color .2s ease;
  white-space: nowrap;
}

.vp-footer__group a:hover { color: #fff; }

.vp-footer__bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 16px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.vp-footer__bottom p,
.vp-footer__social {
  color: #4b5563;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  line-height: 16px;
  margin: 0;
}

.vp-footer__bottom > p { flex: 1 0 0; }

.vp-footer__social {
  display: flex;
  gap: 10px;
}

.vp-footer__social span { cursor: default; }

.vp-footer__wordmark {
  bottom: -40px;
  color: rgba(255, 255, 255, .1);
  font-family: "Syne", sans-serif;
  font-size: 205.256px;
  font-weight: 700;
  left: 50%;
  letter-spacing: -1.2px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
  width: 100vw;
  z-index: 0;
}

.vp-footer__wordmark span { display: inline; }

/* The generated 404 route adopts the same FlowState chrome and type system. */
.lanso-virtual {
  background: #fff;
  color: var(--ink);
  font-family: "Figtree", "Noto Sans JP", system-ui, sans-serif;
  min-height: 100vh;
  padding: 100px 24px 0;
}

.lanso-virtual__main {
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100vh - 452px);
  padding: clamp(88px, 12vw, 150px) 0 120px;
}

.lanso-virtual__lead {
  margin-bottom: 40px;
}

.lanso-virtual__primary {
  margin-top: 0;
}

@media (max-width: 809.98px) {
  .vp-shell,
  .lanso-virtual {
    padding: 104px 16px 0;
  }

  .vp-nav,
  .lanso-virtual__header.vp-nav {
    gap: 48px;
    height: 52px;
    justify-content: flex-start;
    left: 16px;
    padding: 4px 24px;
    right: auto;
    top: 32px;
    transform: none;
    width: min(293px, calc(100vw - 32px));
  }

  .vp-nav .vp-store-badges { display: none; }

  .vp-brand { height: 44px; }

  .vp-menu-toggle {
    align-items: center;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 89.078px;
    font-family: "Figtree", "Noto Sans JP", sans-serif;
    font-size: 12px;
    height: 44px;
    justify-content: center;
    min-width: 89.078px;
    padding: 9px 10px;
  }

  .vp-hero {
    margin-bottom: 56px;
    padding: 68px 0 10px;
  }

  .vp-title,
  .lanso-virtual h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .vp-lead { font-size: 15px; }

  .vp-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .vp-actions .vp-button { width: 100%; }

  .vp-grid,
  .vp-band {
    grid-template-columns: 1fr;
  }

  .vp-card {
    min-height: 0;
    padding: 22px;
  }

  .vp-row {
    gap: 10px;
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .vp-band {
    margin-bottom: 72px;
    padding: 28px 22px;
  }

  .vp-footer,
  .lanso-virtual__footer.vp-footer {
    margin-left: calc(50% - 50vw);
    padding: 64px 24px;
  }

  .vp-footer__inner {
    gap: 64px;
    height: auto;
  }

  .vp-footer__top {
    flex-direction: column;
    gap: 24px;
    height: auto;
  }

  .vp-footer__identity { width: 100%; }
  .vp-footer__groups { flex: none; justify-content: flex-start; width: 100%; }

  .vp-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .vp-footer__bottom > p { flex: none; order: 1; width: 100%; }
  .vp-footer__social { flex-wrap: wrap; order: 0; }
  .vp-footer__wordmark { bottom: 0; font-size: 125.196px; line-height: .8; }
  .vp-footer__wordmark span { display: block; }

  .lanso-virtual__main {
    min-height: calc(100vh - 520px);
    padding: 82px 0 96px;
  }
}

@keyframes vp-nav-in {
  from { filter: blur(8px); opacity: 0; }
  to { filter: none; opacity: 1; }
}

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

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