:root {
  color-scheme: dark;
  --black: #000000;
  --dark: #0a0a0c;
  --dark-soft: #101014;
  --light: #f5f5f7;
  --white: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --muted-dark: #86868b;
  --muted-light: #a1a1a6;
  --line-light: #e3e3e8;
  --blue: #2f6df6;
  --teal: #2dd4bf;
  --lime: #b7d538;
  --grad-hero: linear-gradient(94deg, #7fe8d8 0%, #b7d538 52%, #f2ffb0 100%);
  --grad-cool: linear-gradient(94deg, #0d9488 0%, #2f6df6 100%);
  --grad-stat: linear-gradient(180deg, #ffffff 18%, rgba(255, 255, 255, 0.4) 100%);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-card: 24px;
  --shadow-card: 0 4px 14px rgba(29, 29, 31, 0.04), 0 18px 50px rgba(29, 29, 31, 0.07);
  --shadow-card-hover: 0 10px 24px rgba(29, 29, 31, 0.08), 0 32px 80px rgba(29, 29, 31, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Hiragino Sans", "Noto Sans JP", sans-serif;
  background: var(--black);
  color: var(--light);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

::selection {
  background: rgba(183, 213, 56, 0.9);
  color: #000;
}

.lp-container {
  width: min(1140px, 100%);
  margin: 0 auto;
}

/* ---------------------------------- nav ---------------------------------- */

.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 56px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.lp-nav.is-scrolled {
  background: rgba(10, 10, 12, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
  white-space: nowrap;
}

.lp-brand img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  box-shadow: 0 0 0 1px rgba(183, 213, 56, 0.4), 0 0 18px rgba(183, 213, 56, 0.25);
}

.lp-brand em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}

.lp-nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.lp-nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.lp-nav-links a:hover {
  color: #fff;
}

.lp-nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 980px;
  background: var(--lime);
  color: #0a0a0c;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.lp-nav-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 22px rgba(183, 213, 56, 0.45);
}

.lp-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.25s ease;
}

.lp-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.lp-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}

.lp-nav.is-open .lp-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lp-nav.is-open .lp-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.lp-nav.is-open .lp-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lp-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lp-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.lp-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: min(380px, 100%);
  height: 100%;
  padding: 68px 22px 32px;
  background: rgba(10, 10, 12, 0.97);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}

.lp-nav-drawer.is-open {
  transform: translateX(0);
}

.lp-nav-drawer-spotlight {
  display: block;
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.14), rgba(183, 213, 56, 0.12));
  border: 1px solid rgba(183, 213, 56, 0.28);
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease;
}

.lp-nav-drawer-spotlight:hover {
  transform: translateY(-1px);
  border-color: rgba(183, 213, 56, 0.5);
}

.lp-nav-drawer-spotlight em {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(183, 213, 56, 0.9);
  margin-bottom: 6px;
}

.lp-nav-drawer-spotlight strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.lp-nav-drawer-spotlight small {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.lp-nav-drawer-links {
  display: grid;
  gap: 2px;
}

.lp-nav-drawer-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.lp-nav-drawer-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lp-nav-drawer-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 20px;
  border-radius: 980px;
  background: var(--lime);
  color: #0a0a0c;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

body.lp-nav-open {
  overflow: hidden;
}

br.sp {
  display: none;
}

.lp-keep {
  white-space: nowrap;
}

/* ---------------------------------- hero --------------------------------- */

.lp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 120px clamp(20px, 4vw, 48px) 90px;
}

.lp-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: saturate(0.8) contrast(1.08);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5) 60%, transparent 96%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5) 60%, transparent 96%);
}

.lp-hero-aurora {
  position: absolute;
  inset: -22%;
  background:
    radial-gradient(32% 38% at 22% 32%, rgba(45, 212, 191, 0.3), transparent 70%),
    radial-gradient(28% 34% at 78% 22%, rgba(183, 213, 56, 0.2), transparent 70%),
    radial-gradient(38% 44% at 58% 80%, rgba(47, 109, 246, 0.22), transparent 70%);
  filter: blur(64px);
  animation: lpAurora 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes lpAurora {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  50% { transform: translate3d(2.5%, 2%, 0) scale(1.07); }
  100% { transform: translate3d(-1%, 1.5%, 0) scale(1.03); }
}

.lp-hero-copy {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-recipient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 0 0 28px;
  border: 1px solid rgba(45, 212, 191, 0.45);
  border-radius: 999px;
  padding: 9px 18px;
  background: rgba(45, 212, 191, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  box-shadow: 0 0 32px rgba(45, 212, 191, 0.18);
}

.lp-recipient::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  animation: lpPulse 2.2s ease-in-out infinite;
}

@keyframes lpPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

.lp-hero h1 {
  max-width: 980px;
  margin: 0 0 28px;
  font-size: clamp(42px, 7.8vw, 88px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  color: #fff;
  text-wrap: balance;
}

.lp-hero-tagline {
  margin: 0 0 26px;
  font-size: clamp(23px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: auto-phrase;
}

.lp-grad-text {
  color: #d9f99d;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .lp-grad-text {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.lp-hero-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: min(1040px, 100%);
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.lp-hero-benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.lp-hero-benefits strong {
  color: #fff;
  font-size: clamp(13.5px, 1.15vw, 16px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
}

.lp-hero-lead {
  max-width: 660px;
  margin: 0 0 34px;
  font-size: clamp(15.5px, 1.6vw, 18px);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.74);
}

.lp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 980px;
  background: var(--lime);
  color: #0a0a0c;
  text-decoration: none;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 10px 34px rgba(183, 213, 56, 0.34);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.lp-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 46px rgba(183, 213, 56, 0.48);
}

.lp-cta.ghost {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.lp-cta.ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.lp-cta.large {
  min-height: 58px;
  padding: 0 38px;
  font-size: 18px;
}

.lp-trust-row {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  align-items: center;
  gap: 46px;
  width: min(960px, 100%);
  margin-top: 34px;
  margin-inline: auto;
  text-align: left;
  min-width: 0;
}

.lp-trust-intro {
  min-width: 0;
  max-width: 100%;
}

.lp-trust-intro span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.lp-trust-intro strong {
  display: block;
  color: #fff;
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.26;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
}

.lp-trust-intro small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
}

.lp-trust-list {
  min-width: 0;
  max-width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.lp-trust-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 18px;
  row-gap: 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 19px 0 20px;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: #fff;
  text-align: left;
  box-shadow: none;
  min-width: 0;
}

.lp-trust-card i {
  grid-row: 1 / 4;
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.24);
  font-size: 34px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.lp-trust-card span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.lp-trust-card strong {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
}

.lp-trust-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.45;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
}

.lp-trust-card.is-area {
  --trust-color: #5eead4;
}

.lp-trust-card.is-system {
  --trust-color: var(--lime);
}

.lp-trust-card.is-custom {
  --trust-color: #93c5fd;
}

.lp-scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  z-index: 1;
}

.lp-scroll-hint span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  animation: lpScrollHint 2s ease-in-out infinite;
}

@keyframes lpScrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ----------------------------- sections base ----------------------------- */

.lp-band {
  padding: clamp(88px, 12vw, 148px) clamp(20px, 4vw, 48px);
  background: var(--white);
  color: var(--ink);
}

.lp-band.alt {
  background: var(--light);
}

.lp-band.dark {
  background: var(--black);
  color: var(--light);
}

.lp-kicker {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #0d9488;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .lp-kicker {
    display: inline-block;
    background: var(--grad-cool);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .lp-band.dark .lp-kicker,
  .lp-final .lp-kicker {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.lp-section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 68px);
}

.lp-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lp-section-head h2,
.lp-final h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: auto-phrase;
}

.lp-section-head p:not(.lp-kicker) {
  margin: 0;
  font-size: clamp(15.5px, 1.6vw, 18px);
  line-height: 1.95;
  color: var(--muted);
}

.lp-band.dark .lp-section-head p:not(.lp-kicker) {
  color: var(--muted-light);
}

/* ------------------------------ reveal motion ---------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

.js .stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.js .stagger.is-in > * {
  opacity: 1;
  transform: none;
}

.js .stagger.is-in > *:nth-child(2) { transition-delay: 0.08s; }
.js .stagger.is-in > *:nth-child(3) { transition-delay: 0.16s; }
.js .stagger.is-in > *:nth-child(4) { transition-delay: 0.24s; }
.js .stagger.is-in > *:nth-child(5) { transition-delay: 0.32s; }
.js .stagger.is-in > *:nth-child(6) { transition-delay: 0.4s; }
.js .stagger.is-in > *:nth-child(7) { transition-delay: 0.48s; }

/* --------------------------------- cards --------------------------------- */

.lp-card {
  border-radius: var(--radius-card);
  background: var(--white);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}

.lp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.lp-accent-bar {
  display: block;
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: var(--grad-cool);
  margin-bottom: 18px;
}

.lp-pain-grid b,
.lp-diagnosis-grid h3,
.lp-usecase-grid h3,
.lp-deliverable-grid h3,
.lp-steps-grid h3 {
  text-wrap: balance;
  word-break: auto-phrase;
}

/* -------------------------------- insight -------------------------------- */

.lp-insight {
  position: relative;
  overflow: hidden;
}

.lp-insight::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(32% 38% at 18% 30%, rgba(45, 212, 191, 0.12), transparent 70%),
    radial-gradient(28% 34% at 84% 70%, rgba(183, 213, 56, 0.1), transparent 70%);
  filter: blur(56px);
  pointer-events: none;
}

.lp-insight > * {
  position: relative;
}

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

.lp-insight-grid article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.5s var(--ease-out), border-color 0.5s ease;
}

.lp-insight-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 212, 191, 0.4);
}

.lp-insight-label {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.4);
  background: rgba(45, 212, 191, 0.1);
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 800;
  color: #7fe8d8;
}

.lp-insight-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.82);
}

.lp-insight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-insight-chips i {
  font-style: normal;
  border-radius: 999px;
  background: rgba(183, 213, 56, 0.13);
  border: 1px solid rgba(183, 213, 56, 0.32);
  color: #d9f99d;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}

/* ---------------------------------- pain --------------------------------- */

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

.lp-pain-grid article b {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
}

.lp-pain-grid article p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--muted);
}

/* ------------------------------- diagnosis ------------------------------- */

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

.lp-diagnosis-grid article strong {
  display: block;
  font-size: clamp(40px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #0d9488;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .lp-diagnosis-grid article strong {
    background: var(--grad-cool);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.lp-diagnosis-grid h3 {
  margin: 16px 0 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.lp-diagnosis-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

.lp-custom-build {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #07080a 0%, #0c1118 48%, #090b0f 100%);
  color: #fff;
}

.lp-custom-build::before,
.lp-custom-build::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.lp-custom-build::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

.lp-custom-build::after {
  width: min(680px, 80vw);
  height: min(680px, 80vw);
  right: -220px;
  top: 60px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(45, 212, 191, 0.16), transparent 62%);
  filter: blur(8px);
}

.lp-custom-build .lp-container {
  position: relative;
  z-index: 1;
}

.lp-custom-build .lp-section-head {
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.lp-custom-build .lp-kicker {
  color: #7fe8d8;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .lp-custom-build .lp-kicker {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.lp-custom-build .lp-section-head h2 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(34px, 5.1vw, 64px);
  line-height: 1.16;
}

.lp-custom-build .lp-section-head p:not(.lp-kicker) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.72);
}

.lp-custom-build .lp-diagnosis-grid {
  position: relative;
  gap: 14px;
}

.lp-custom-build .lp-diagnosis-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.42), rgba(183, 213, 56, 0.34), transparent);
}

.lp-custom-build .lp-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 7px;
  align-items: start;
  min-height: 248px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 26px 70px rgba(0, 0, 0, 0.28);
}

.lp-custom-build .lp-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.lp-custom-build .lp-diagnosis-grid article strong {
  grid-row: 1 / 4;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(45, 212, 191, 0.13);
  color: #7fe8d8;
  font-size: 25px;
  box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.2);
}

.lp-custom-build .lp-diagnosis-grid article:nth-child(2) strong {
  background: rgba(183, 213, 56, 0.13);
  color: #d9f99d;
  box-shadow: inset 0 0 0 1px rgba(183, 213, 56, 0.22);
}

.lp-custom-build .lp-diagnosis-grid article:nth-child(3) strong {
  background: rgba(47, 109, 246, 0.15);
  color: #bfdbfe;
  box-shadow: inset 0 0 0 1px rgba(47, 109, 246, 0.25);
}

.lp-custom-build .lp-diagnosis-grid article span {
  align-self: end;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
}

.lp-custom-build .lp-diagnosis-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.lp-custom-build .lp-diagnosis-grid p {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------- proof --------------------------------- */

.lp-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.lp-proof-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lp-proof-grid strong {
  font-size: clamp(54px, 7.4vw, 100px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  white-space: nowrap;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .lp-proof-grid strong {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.lp-proof-grid strong i {
  font-style: normal;
  font-size: 0.36em;
  font-weight: 800;
  letter-spacing: 0;
}

.lp-proof-grid > div > span {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted-light);
}

.lp-footnote {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.45);
}

/* ------------------------------ before/after ----------------------------- */

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

.lp-ba-grid article {
  border-radius: var(--radius-card);
  padding: clamp(26px, 3vw, 36px);
}

.lp-ba-grid .before {
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.lp-ba-grid .after {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--light);
  box-shadow: 0 30px 80px rgba(10, 10, 12, 0.4);
}

.lp-ba-grid .after::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(40% 44% at 80% 12%, rgba(45, 212, 191, 0.25), transparent 70%),
    radial-gradient(36% 40% at 16% 88%, rgba(183, 213, 56, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.lp-ba-grid .after > * {
  position: relative;
}

.lp-ba-grid span {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 800;
}

.lp-ba-grid .before span {
  background: #e8e8ed;
  color: var(--muted);
}

.lp-ba-grid .after span {
  background: rgba(183, 213, 56, 0.16);
  color: var(--lime);
  border: 1px solid rgba(183, 213, 56, 0.35);
}

.lp-ba-grid h3 {
  margin: 18px 0 14px;
  font-size: clamp(21px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: 0;
}

.lp-ba-grid ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.lp-ba-grid li {
  list-style: none;
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.7;
}

.lp-ba-grid .before li {
  color: var(--muted);
}

.lp-ba-grid .before li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c7c7cc;
  font-weight: 800;
}

.lp-ba-grid .after li {
  color: rgba(255, 255, 255, 0.85);
}

.lp-ba-grid .after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 800;
}

/* --------------------------- work example carousel ----------------------- */

.lp-examples {
  position: relative;
}

.lp-examples .lp-section-head {
  max-width: 920px;
}

.lp-examples .lp-section-head h2 {
  text-wrap: initial;
  word-break: keep-all;
  overflow-wrap: normal;
}

.lp-example-carousel {
  margin-top: 34px;
}

.lp-example-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}

.lp-example-controls p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.9;
}

.lp-example-buttons {
  display: flex;
  gap: 8px;
}

.lp-example-buttons button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #d8d8de;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-example-buttons button:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.36);
  box-shadow: 0 14px 30px rgba(29, 29, 31, 0.12);
}

.lp-example-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 34%);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  padding: 4px 4px 20px;
  margin: 0 -4px;
  scrollbar-width: thin;
}

.lp-example-card {
  scroll-snap-align: start;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 430px;
  border: 1px solid #e2e2e8;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 247, 249, 0.95));
  color: var(--ink);
  padding: 22px;
  box-shadow: 0 16px 48px rgba(29, 29, 31, 0.08);
}

.lp-example-card.is-featured {
  border-color: rgba(13, 148, 136, 0.35);
  background:
    linear-gradient(180deg, rgba(234, 251, 248, 0.98), rgba(255, 255, 255, 0.98));
}

.lp-example-tag {
  justify-self: start;
  align-self: start;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.11);
  color: #0f766e;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 800;
}

.lp-example-visual {
  --visual: #0d9488;
  --visual-soft: rgba(13, 148, 136, 0.12);
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 44px;
  gap: 10px;
  height: 112px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--visual) 25%, #e5e7eb);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 18%, color-mix(in srgb, var(--visual) 24%, transparent), transparent 32%),
    linear-gradient(135deg, #ffffff, var(--visual-soft));
  padding: 14px;
}

.lp-example-visual::before {
  content: "";
  position: absolute;
  inset: 13px auto auto 14px;
  width: 74px;
  height: 50px;
  border: 2px solid color-mix(in srgb, var(--visual) 58%, #fff);
  border-radius: 12px;
  background:
    linear-gradient(135deg, transparent 48%, color-mix(in srgb, var(--visual) 48%, transparent) 49% 51%, transparent 52%),
    linear-gradient(225deg, transparent 48%, color-mix(in srgb, var(--visual) 34%, transparent) 49% 51%, transparent 52%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(29, 29, 31, 0.1);
}

.lp-example-visual span {
  position: relative;
  display: block;
  align-self: end;
  width: 100%;
  height: 34px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, var(--visual) 0 28%, rgba(255, 255, 255, 0.8) 28% 100%);
  box-shadow:
    0 -42px 0 -25px rgba(255, 255, 255, 0.72),
    0 -66px 0 -47px color-mix(in srgb, var(--visual) 28%, #fff);
}

.lp-example-visual i {
  position: relative;
  display: block;
  width: 40px;
  height: 54px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--visual) 22%, #fff), 0 12px 22px rgba(29, 29, 31, 0.08);
}

.lp-example-visual i::before,
.lp-example-visual i::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 4px;
  border-radius: 999px;
  background: var(--visual);
}

.lp-example-visual i::before {
  top: 14px;
}

.lp-example-visual i::after {
  top: 26px;
  opacity: 0.45;
}

.lp-example-visual b {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: color-mix(in srgb, var(--visual) 74%, #111115);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.lp-example-visual.mail { --visual: #0d9488; --visual-soft: rgba(13, 148, 136, 0.12); }
.lp-example-visual.docs { --visual: #2563eb; --visual-soft: rgba(37, 99, 235, 0.1); }
.lp-example-visual.money { --visual: #16a34a; --visual-soft: rgba(22, 163, 74, 0.1); }
.lp-example-visual.report { --visual: #f97316; --visual-soft: rgba(249, 115, 22, 0.1); }
.lp-example-visual.excel { --visual: #15803d; --visual-soft: rgba(21, 128, 61, 0.1); }
.lp-example-visual.meeting { --visual: #7c3aed; --visual-soft: rgba(124, 58, 237, 0.09); }
.lp-example-visual.calendar { --visual: #0891b2; --visual-soft: rgba(8, 145, 178, 0.1); }
.lp-example-visual.stock { --visual: #ca8a04; --visual-soft: rgba(202, 138, 4, 0.11); }
.lp-example-visual.knowledge { --visual: #db2777; --visual-soft: rgba(219, 39, 119, 0.08); }
.lp-example-visual.dashboard { --visual: #334155; --visual-soft: rgba(51, 65, 85, 0.08); }
.lp-example-visual.professional { --visual: #475569; --visual-soft: rgba(71, 85, 105, 0.08); }
.lp-example-visual.salon { --visual: #be185d; --visual-soft: rgba(190, 24, 93, 0.08); }

.lp-example-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: 0;
}

.lp-example-card p {
  margin: 0;
  color: #4d4d55;
  font-size: 14.5px;
  line-height: 1.8;
}

.lp-example-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.lp-example-card li {
  position: relative;
  list-style: none;
  padding-left: 18px;
  color: #5d5d66;
  font-size: 13.5px;
  line-height: 1.65;
}

.lp-example-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.lp-industry-example-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.lp-industry-example-strip span {
  border: 1px solid #e0e0e5;
  border-radius: 999px;
  background: #fff;
  color: #3b3b42;
  padding: 8px 13px;
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}

.lp-industry-deck {
  margin-top: 28px;
  border: 1px solid #e1e1e7;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 247, 249, 0.92));
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 18px 60px rgba(29, 29, 31, 0.08);
}

.lp-industry-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  margin-bottom: 16px;
}

.lp-industry-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #0d9488;
  font-size: 12px;
  font-weight: 800;
}

.lp-industry-head h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.lp-industry-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}

.lp-industry-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 31%);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2px;
  padding: 2px 2px 14px;
  scrollbar-width: thin;
}

.lp-industry-card {
  scroll-snap-align: start;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 374px;
  border: 1px solid #e2e2e8;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  padding: 20px;
}

.lp-industry-visual {
  --industry: #0d9488;
  position: relative;
  height: 86px;
  overflow: hidden;
  border-radius: 17px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--industry) 14%, #fff), #f7faf9);
  border: 1px solid color-mix(in srgb, var(--industry) 18%, #e5e7eb);
}

.lp-industry-visual::before {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 14px;
  width: 72px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--industry) 24%, #fff),
    0 14px 24px rgba(29, 29, 31, 0.08);
}

.lp-industry-visual::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 14px;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--industry);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--industry) 28%, transparent);
}

.lp-industry-visual span,
.lp-industry-visual i {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: color-mix(in srgb, var(--industry) 58%, #fff);
}

.lp-industry-visual span {
  left: 26px;
  bottom: 43px;
  width: 38px;
  height: 5px;
}

.lp-industry-visual i {
  left: 26px;
  bottom: 29px;
  width: 50px;
  height: 5px;
  opacity: 0.45;
}

.lp-industry-visual.build { --industry: #0d9488; }
.lp-industry-visual.estate { --industry: #2563eb; }
.lp-industry-visual.food { --industry: #ea580c; }
.lp-industry-visual.beauty { --industry: #be185d; }
.lp-industry-visual.expert { --industry: #475569; }
.lp-industry-visual.clinic { --industry: #0891b2; }
.lp-industry-visual.retail { --industry: #7c3aed; }
.lp-industry-visual.factory { --industry: #334155; }
.lp-industry-visual.care { --industry: #16a34a; }
.lp-industry-visual.school { --industry: #ca8a04; }
.lp-industry-visual.logistics { --industry: #dc2626; }
.lp-industry-visual.sales { --industry: #0f766e; }
.lp-industry-visual.recruit { --industry: #4f46e5; }
.lp-industry-visual.finance { --industry: #0369a1; }
.lp-industry-visual.hotel { --industry: #b45309; }

.lp-industry-card em {
  justify-self: start;
  border-radius: 999px;
  background: rgba(183, 213, 56, 0.24);
  color: #55680f;
  padding: 6px 11px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.lp-industry-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: 0;
}

.lp-industry-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.lp-industry-card li {
  position: relative;
  list-style: none;
  padding-left: 18px;
  color: #55555e;
  font-size: 13px;
  line-height: 1.65;
}

.lp-industry-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.lp-example-note {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.8;
}

/* -------------------------------- demo lab ------------------------------- */

.lp-demo-lab {
  position: relative;
  overflow: hidden;
}

.lp-demo-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 36% at 50% 0%, rgba(45, 212, 191, 0.08), transparent 70%);
  pointer-events: none;
}

.lp-demo-lab > * {
  position: relative;
}

.lp-device-wrap {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lp-device-glow {
  position: absolute;
  inset: 8% -6% -4%;
  background:
    radial-gradient(46% 56% at 50% 42%, rgba(45, 212, 191, 0.26), transparent 70%),
    radial-gradient(38% 48% at 72% 72%, rgba(183, 213, 56, 0.16), transparent 70%),
    radial-gradient(34% 44% at 24% 70%, rgba(47, 109, 246, 0.18), transparent 70%);
  filter: blur(52px);
  pointer-events: none;
}

.lp-device-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--dark-soft);
  box-shadow:
    0 70px 160px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(45, 212, 191, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.js .lp-device-frame.reveal {
  opacity: 0;
  transform: perspective(1800px) rotateX(13deg) scale(0.95);
  transform-origin: 50% 100%;
  transition: opacity 0.9s ease, transform 1.25s var(--ease-out);
}

.js .lp-device-frame.reveal.is-in {
  opacity: 1;
  transform: none;
}

.lp-device-chrome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
}

.lp-device-chrome strong {
  justify-self: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.lp-device-chrome em {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--lime);
  white-space: nowrap;
}

.lp-device-chrome em::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(183, 213, 56, 0.9);
  animation: lpPulse 2.2s ease-in-out infinite;
}

.lp-window-dots {
  display: flex;
  gap: 7px;
}

.lp-window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #ff5f57;
}

.lp-window-dots span:nth-child(2) {
  background: #febc2e;
}

.lp-window-dots span:nth-child(3) {
  background: #28c840;
}

.lp-device-screen {
  padding: clamp(14px, 2.5vw, 26px);
  background: var(--light);
  color: var(--ink);
}

.lp-demo-progress {
  overflow: hidden;
  height: 4px;
  margin: 0 0 16px;
  border-radius: 999px;
  background: #e2e2e7;
}

.lp-demo-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.55);
}

@keyframes lpDemoProgress {
  from { width: 0; }
  to { width: 100%; }
}

.lp-demo-shell {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  height: clamp(660px, 54vw, 780px);
}

.lp-demo-sidebar {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: start;
  gap: 16px;
  min-height: 0;
  height: 100%;
  border-radius: 18px;
  background: #ffffff;
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.lp-demo-sidebar .lp-kicker {
  margin-bottom: 6px;
  font-size: 12px;
}

.lp-demo-sidebar h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
}

.lp-preset-list {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding-right: 2px;
}

.lp-preset-button {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 84px;
  border: 1px solid #e3e3e8;
  border-radius: 14px;
  background: #f7f7f9;
  color: var(--ink);
  padding: 12px 14px;
  text-align: left;
  font: inherit;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.lp-preset-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(29, 29, 31, 0.1);
}

.lp-preset-button span {
  color: #0d9488;
  font-size: 11px;
  font-weight: 800;
}

.lp-preset-button strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.lp-preset-button small {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.lp-preset-button.is-active {
  border-color: rgba(10, 10, 12, 0.9);
  background: var(--dark);
  color: #fff;
  box-shadow: 0 16px 36px rgba(10, 10, 12, 0.3);
}

.lp-preset-button.is-active span {
  color: var(--lime);
}

.lp-preset-button.is-active small {
  color: rgba(255, 255, 255, 0.62);
}

.lp-demo-workspace {
  display: grid;
  grid-template-columns: minmax(250px, 0.74fr) minmax(420px, 1.26fr);
  gap: 16px;
  min-height: 0;
  height: 100%;
}

.lp-demo-input,
.lp-demo-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  height: 100%;
  border-radius: 18px;
  background: #ffffff;
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.lp-demo-card {
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.lp-demo-input label,
.lp-demo-status {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0d9488;
}

.lp-demo-input textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  border: 1px solid #e3e3e8;
  border-radius: 14px;
  padding: 14px;
  font: inherit;
  font-size: 14.5px;
  line-height: 1.75;
  background: #f7f7f9;
  color: var(--ink);
  caret-color: #0d9488;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lp-demo-input textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.18);
}

.lp-demo-input textarea.lp-auto-store {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.lp-auto-intake-head {
  display: grid;
  gap: 5px;
}

.lp-auto-intake-head span {
  color: #0d9488;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lp-auto-intake-head strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.lp-auto-sourcebar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.lp-auto-sourcebar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid #dfe0e7;
  border-radius: 999px;
  background: #f7f7f9;
  color: #4d4d55;
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap;
}

.lp-auto-message {
  min-height: 158px;
  border: 1px solid #dfe0e7;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8f8 100%);
  padding: 15px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.75;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.lp-auto-human {
  display: grid;
  gap: 4px;
  border-radius: 14px;
  background: #111115;
  color: #fff;
  padding: 13px 14px;
}

.lp-auto-human b {
  color: var(--lime);
  font-size: 12px;
  line-height: 1.4;
}

.lp-auto-human span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.lp-demo-sourcebar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.lp-demo-sourcebar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid #e4e4ea;
  border-radius: 999px;
  background: #f7f7f9;
  color: #4d4d55;
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap;
}

.lp-demo-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.lp-demo-actions button {
  min-height: 46px;
  border: 0;
  border-radius: 980px;
  background: var(--dark);
  color: #fff;
  font: inherit;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, opacity 0.3s ease;
}

.lp-demo-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(10, 10, 12, 0.3);
}

.lp-demo-actions button:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.lp-demo-actions .secondary {
  background: #ffffff;
  border: 1px solid #d6d6db;
  color: var(--ink);
  padding: 0 16px;
}

.lp-demo-input > p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* demo result */

.lp-result {
  display: block;
  min-height: 0;
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  padding-right: 3px;
  scrollbar-width: thin;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lp-result.is-thinking {
  opacity: 0.72;
  transform: translateY(4px);
}

.lp-result > * {
  animation: lpRise 0.55s var(--ease-out) both;
}

.lp-result > *:nth-child(2) { animation-delay: 0.05s; }
.lp-result > *:nth-child(3) { animation-delay: 0.1s; }
.lp-result > *:nth-child(4) { animation-delay: 0.15s; }
.lp-result > *:nth-child(5) { animation-delay: 0.2s; }
.lp-result > *:nth-child(6) { animation-delay: 0.25s; }
.lp-result > *:nth-child(7) { animation-delay: 0.3s; }
.lp-result > *:nth-child(8) { animation-delay: 0.35s; }
.lp-result > *:nth-child(9) { animation-delay: 0.4s; }
.lp-result > *:nth-child(10) { animation-delay: 0.45s; }
.lp-result > *:nth-child(11) { animation-delay: 0.5s; }
.lp-result > *:nth-child(12) { animation-delay: 0.55s; }
.lp-result > *:nth-child(13) { animation-delay: 0.6s; }
.lp-result > *:nth-child(14) { animation-delay: 0.65s; }

@keyframes lpRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.lp-result h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.45;
}

.lp-result h4 {
  margin: 18px 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.lp-result p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

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

.lp-result-grid div {
  border: 1px solid #e8e8ed;
  border-radius: 12px;
  padding: 10px 12px;
  background: #f7f7f9;
}

.lp-result-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.lp-result-grid strong {
  display: block;
  margin-top: 3px;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--ink);
}

.lp-result-grid.impact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-result-grid.impact strong {
  color: #0d9488;
}

.lp-result ol {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
}

.lp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.lp-chip-row span {
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  font-size: 12.5px;
  font-weight: 800;
}

.lp-check-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.lp-check-list li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
}

.lp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 800;
}

.lp-result pre {
  white-space: pre-wrap;
  margin: 0;
  border-radius: 14px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.92);
  padding: 16px;
  font: inherit;
  font-size: 13.5px;
  line-height: 1.8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lp-thinking {
  display: inline-flex;
  gap: 5px;
  margin-bottom: 12px;
  border: 1px solid #e3e3e8;
  border-radius: 999px;
  padding: 9px 12px;
  background: #ffffff;
}

.lp-thinking span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #0d9488;
  animation: lpThinking 1s ease-in-out infinite;
}

.lp-thinking span:nth-child(2) {
  animation-delay: 0.14s;
}

.lp-thinking span:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes lpThinking {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

/* automation dashboard */

.lp-auto-dashboard {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
}

.lp-auto-topline {
  display: grid;
  gap: 5px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, #111115 0%, #202026 100%);
  color: #fff;
  padding: 14px 16px;
}

.lp-auto-topline span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lp-auto-topline strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.lp-auto-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lp-auto-panel {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  border: 1px solid #e6e7ee;
  border-radius: 16px;
  background: #fff;
  padding: 13px;
}

.lp-auto-panel > p,
.lp-auto-table-wrap > span,
.lp-auto-draft > span {
  margin: 0;
  color: #0d9488;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lp-auto-inbox strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.lp-auto-inbox small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.lp-auto-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.lp-auto-mini-grid div {
  min-width: 0;
  border-radius: 12px;
  background: #f6f7f9;
  padding: 9px;
}

.lp-auto-mini-grid span {
  display: block;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 800;
}

.lp-auto-mini-grid strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}

.lp-auto-route {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.lp-auto-route li {
  list-style: none;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  border: 1px solid #ebebf0;
  border-radius: 12px;
  background: #f8f8fa;
  padding: 7px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.lp-auto-route li i {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #e8e9ee;
  color: #67676f;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.lp-auto-route li b {
  display: block;
  color: var(--ink);
  font-size: 12.5px;
  line-height: 1.35;
}

.lp-auto-route li span {
  display: block;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 800;
}

.lp-auto-route li.is-now {
  border-color: rgba(13, 148, 136, 0.35);
  background: rgba(13, 148, 136, 0.08);
  transform: translateX(2px);
}

.lp-auto-route li.is-now i {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.15);
}

.lp-auto-route li.is-done i {
  background: #0d9488;
  color: #fff;
}

.lp-auto-current {
  display: grid;
  gap: 4px;
  border-radius: 13px;
  background: #111115;
  padding: 11px 12px;
}

.lp-auto-current b {
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}

.lp-auto-current span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.lp-auto-output ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
}

.lp-auto-output {
  grid-column: 1 / -1;
}

.lp-auto-output li {
  list-style: none;
  display: grid;
  gap: 4px;
  border-radius: 12px;
  background: #f6f8f8;
  padding: 9px 10px;
}

.lp-auto-output li span {
  color: #0d9488;
  font-size: 10px;
  font-weight: 900;
}

.lp-auto-output li b {
  color: var(--ink);
  font-size: 12.5px;
  line-height: 1.4;
}

.lp-auto-docs,
.lp-auto-docs span {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lp-auto-docs span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(183, 213, 56, 0.2);
  color: #4d5d00;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.lp-auto-evidence {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
}

.lp-auto-table-wrap,
.lp-auto-draft {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid #e6e7ee;
  border-radius: 16px;
  background: #fff;
  padding: 13px;
}

.lp-auto-table-wrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
  table-layout: fixed;
}

.lp-auto-table-wrap td {
  background: #f7f8fa;
  border-top: 1px solid #ececf1;
  border-bottom: 1px solid #ececf1;
  padding: 8px;
  color: #45454c;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.lp-auto-table-wrap td:first-child {
  border-left: 1px solid #ececf1;
  border-radius: 10px 0 0 10px;
  color: var(--ink);
}

.lp-auto-table-wrap td:last-child {
  border-right: 1px solid #ececf1;
  border-radius: 0 10px 10px 0;
  color: #0f766e;
}

.lp-auto-draft p {
  max-height: 126px;
  overflow: auto;
  border-radius: 12px;
  background: #111115;
  color: rgba(255, 255, 255, 0.9);
  padding: 12px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.7;
}

.lp-auto-handoff {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  background: rgba(13, 148, 136, 0.1);
  padding: 12px 14px;
}

.lp-auto-handoff strong {
  color: #0f766e;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.lp-auto-handoff span {
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.55;
}

/* stage demo (step-by-step) */

.lp-stage-steps {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.lp-stage-steps span {
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 800;
  background: #ececf0;
  color: var(--muted);
  transition: background 0.35s ease, color 0.35s ease;
}

.lp-stage-steps span.is-now {
  background: var(--dark);
  color: #fff;
}

.lp-stage-steps span.is-done {
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
}

.lp-stage-steps span.is-done::after {
  content: " ✓";
}

.lp-stage-screen {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 280px;
  animation: lpStageIn 0.5s var(--ease-out) both;
}

.lp-ops-board {
  display: grid;
  gap: 12px;
  border: 1px solid #e7e7ed;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f8fb 100%);
  padding: 16px;
}

.lp-ops-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #ebebf0;
  padding-bottom: 10px;
}

.lp-ops-head span {
  display: inline-flex;
  max-width: 46%;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.lp-ops-head strong {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.45;
  text-align: right;
}

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

.lp-ops-card {
  display: grid;
  gap: 5px;
  min-height: 112px;
  border: 1px solid #e8e8ed;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
}

.lp-ops-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.lp-ops-card b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.lp-ops-card small {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.55;
}

.lp-ops-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 7px;
  table-layout: fixed;
}

.lp-ops-table td {
  border-top: 1px solid #e8e8ed;
  border-bottom: 1px solid #e8e8ed;
  background: #fff;
  padding: 9px 10px;
  color: #46464d;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.lp-ops-table td:first-child {
  border-left: 1px solid #e8e8ed;
  border-radius: 12px 0 0 12px;
  color: var(--ink);
}

.lp-ops-table td:last-child {
  border-right: 1px solid #e8e8ed;
  border-radius: 0 12px 12px 0;
  color: #0f766e;
}

.lp-ops-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
}

.lp-ops-list li {
  list-style: none;
  border: 1px solid #e8e8ed;
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.lp-ops-handoff {
  border-radius: 14px;
  background: #101014;
  color: #fff;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

@keyframes lpStageIn {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: none; }
}

.lp-stage-label {
  margin: 0;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
}

.lp-stage-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lp-stage-tiles div {
  display: grid;
  gap: 4px;
  border: 1px solid #e8e8ed;
  border-radius: 14px;
  background: #f7f7f9;
  padding: 13px 8px;
  text-align: center;
}

.lp-stage-tiles span {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
}

.lp-stage-tiles strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
}

.lp-stage-note {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--muted);
}

.lp-stage-sub {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.lp-stage-impact {
  display: grid;
  gap: 2px;
  justify-items: start;
}

.lp-stage-impact strong {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: 0;
  color: #0d9488;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .lp-stage-impact strong {
    background: var(--grad-cool);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.lp-stage-impact span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

/* phone (mobile LINE-talk demo) */

.lp-phone {
  display: none;
  overflow: hidden;
  border-radius: 30px;
  border: 6px solid #0a0a0c;
  background: #8cabd9;
  box-shadow: 0 24px 60px rgba(10, 10, 12, 0.35);
}

.lp-phone-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #1c2733;
  color: #fff;
}

.lp-phone-head img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.lp-phone-head b {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.lp-phone-head i {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: #8de055;
  font-weight: 700;
}

.lp-phone-chat {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  min-height: 320px;
  max-height: 440px;
  overflow-y: auto;
}

.lp-chat-bubble {
  max-width: 88%;
  border-radius: 16px;
  padding: 10px 13px;
  font-size: 13.5px;
  line-height: 1.7;
  animation: lpRise 0.45s var(--ease-out) both;
}

.lp-chat-bubble:nth-child(2) { animation-delay: 0.9s; }
.lp-chat-bubble:nth-child(3) { animation-delay: 1.9s; }
.lp-chat-bubble:nth-child(4) { animation-delay: 2.9s; }

.lp-chat-bubble.user {
  justify-self: end;
  background: #8de055;
  color: #11290a;
  border-bottom-right-radius: 4px;
  font-weight: 600;
}

.lp-chat-bubble.ai {
  justify-self: start;
  background: #ffffff;
  color: var(--ink);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(16, 24, 32, 0.14);
}

.lp-chat-bubble.ai b {
  font-weight: 800;
}

.lp-chat-quote {
  display: block;
  margin-top: 7px;
  border-left: 3px solid var(--teal);
  padding-left: 9px;
  color: var(--muted);
  font-size: 12.5px;
}

.lp-chat-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.lp-chat-docs i {
  font-style: normal;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  padding: 5px 11px;
  font-size: 11.5px;
  font-weight: 800;
}

.lp-chat-typing {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 20px;
}

.lp-chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #9aa7b5;
  animation: lpThinking 1s ease-in-out infinite;
}

.lp-chat-typing span:nth-child(2) { animation-delay: 0.14s; }
.lp-chat-typing span:nth-child(3) { animation-delay: 0.28s; }

/* workflow chips */

.lp-workflow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(32px, 4vw, 48px);
}

.lp-workflow span {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 16px;
  font-weight: 700;
  font-size: 13px;
}

.lp-workflow span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -13px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 800;
}

/* simple demo */

.lp-simple-demo {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: clamp(28px, 4vw, 46px) auto 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  padding: clamp(22px, 3vw, 32px);
  color: #fff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.lp-simple-head {
  display: grid;
  gap: 8px;
  text-align: center;
}

.lp-simple-head span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.lp-simple-head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
}

.lp-simple-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lp-simple-flow article {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 152px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.lp-simple-flow article:nth-child(2) {
  border-color: rgba(183, 213, 56, 0.42);
  background:
    linear-gradient(180deg, rgba(183, 213, 56, 0.17), rgba(255, 255, 255, 0.07));
}

.lp-simple-flow article:nth-child(3) {
  border-color: rgba(94, 234, 212, 0.34);
  background:
    linear-gradient(180deg, rgba(94, 234, 212, 0.12), rgba(255, 255, 255, 0.07));
}

.lp-simple-flow article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -15px;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--lime);
  color: #111115;
  font-weight: 900;
  transform: translateY(-50%);
}

.lp-simple-flow b {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.lp-simple-flow p,
.lp-simple-example p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.lp-simple-example {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  border-radius: 18px;
  background: #fff;
  padding: 16px 18px;
}

.lp-simple-example span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.12);
  color: #0f766e;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.lp-simple-example p {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 800;
}

/* -------------------------------- usecases ------------------------------- */

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

.lp-usecase-grid h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

.lp-usecase-grid p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--muted);
}

/* ------------------------------ deliverables ----------------------------- */

.lp-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.lp-deliverable-grid strong {
  display: block;
  font-size: clamp(34px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #0d9488;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .lp-deliverable-grid strong {
    background: var(--grad-cool);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.lp-deliverable-grid h3 {
  margin: 14px 0 8px;
  font-size: 17.5px;
  font-weight: 800;
  letter-spacing: 0;
}

.lp-deliverable-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* --------------------------------- steps --------------------------------- */

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

.lp-steps-grid article {
  position: relative;
  padding-top: 8px;
}

.lp-steps-grid strong {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--lime);
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(10, 10, 12, 0.25);
}

.lp-steps-grid article:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 56px;
  right: -6px;
  height: 1.5px;
  background: linear-gradient(90deg, #d3d3d8, transparent);
}

.lp-steps-grid h3 {
  margin: 18px 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.lp-steps-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

/* -------------------------------- pricing -------------------------------- */

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.lp-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: var(--ink);
}

.lp-price-case {
  margin: 0;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.lp-price-card h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 23px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-wrap: balance;
  word-break: auto-phrase;
}

.lp-price-amount {
  margin: 2px 0 0;
  font-size: clamp(42px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-price-amount small {
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0;
}

.lp-price-desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--muted);
}

.lp-price-card ul {
  margin: auto 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.lp-price-card li::before {
  content: "✓";
  margin-right: 9px;
  font-weight: 800;
  color: #0d9488;
}

.lp-price-card.featured {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
  box-shadow: 0 12px 34px rgba(45, 212, 191, 0.22), var(--shadow-card);
}

.lp-price-badge {
  position: absolute;
  top: -15px;
  left: 22px;
  padding: 6px 15px;
  border-radius: 999px;
  background: var(--grad-cool);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.lp-pricing-note {
  margin: clamp(24px, 3vw, 32px) 0 0;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--muted-light);
}

/* -------------------------------- company -------------------------------- */

.lp-company-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(300px, 1.35fr);
  gap: clamp(24px, 4vw, 48px);
}

.lp-company-card dl {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px 18px;
  margin: 0 0 18px;
}

.lp-company-card dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lp-company-card dd {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
}

.lp-company-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.9;
}

/* --------------------------------- final --------------------------------- */

.lp-final {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 15vw, 180px) clamp(20px, 4vw, 48px);
  background: var(--black);
  color: #fff;
  text-align: center;
}

.lp-final::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(34% 40% at 30% 60%, rgba(45, 212, 191, 0.16), transparent 70%),
    radial-gradient(30% 36% at 72% 40%, rgba(183, 213, 56, 0.13), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.lp-final > * {
  position: relative;
}

.lp-final h2 {
  margin: 0 auto 22px;
  max-width: 820px;
  font-size: clamp(36px, 6vw, 72px);
}

.lp-final p:not(.lp-kicker) {
  margin: 0 auto 36px;
  max-width: 620px;
  font-size: clamp(15.5px, 1.6vw, 18px);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.72);
}

.lp-final-note {
  display: block;
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.lp-footer {
  padding: 28px clamp(20px, 4vw, 48px) 44px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-align: center;
  line-height: 1.9;
}

/* ------------------------------- responsive ------------------------------ */

@media (max-width: 1024px) {
  .lp-deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-steps-grid article:nth-child(2)::before {
    display: none;
  }
}

@media (max-width: 840px) {
  html {
    scroll-padding-top: 64px;
  }

  br.pc {
    display: none;
  }

  br.sp {
    display: inline;
  }

  .lp-nav {
    height: 52px;
    gap: 10px;
  }

  .lp-nav-cta {
    display: none;
  }

  .lp-nav-drawer-cta {
    display: flex;
  }

  .lp-hero {
    min-height: 92svh;
    padding-top: 96px;
  }

  .lp-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .lp-recipient {
    width: 100%;
    max-width: 460px;
    justify-content: center;
    border-radius: 18px;
    text-align: center;
    white-space: normal;
  }

  .lp-hero-benefits {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 460px;
  }

  .lp-hero-benefits li {
    min-height: auto;
    justify-content: center;
    padding: 13px 14px;
  }

  .lp-hero-lead {
    max-width: 100%;
  }

  .lp-hero-actions {
    width: 100%;
    max-width: 460px;
    flex-direction: column;
    align-items: stretch;
  }

  .lp-cta {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    text-align: center;
  }

  .lp-trust-row {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 460px;
    gap: 24px;
    justify-items: stretch;
  }

  .lp-trust-intro strong {
    font-size: 26px;
  }

  .lp-trust-card {
    max-width: 100%;
    text-align: left;
  }

  .lp-pain-grid,
  .lp-diagnosis-grid,
  .lp-ba-grid,
  .lp-deliverable-grid,
  .lp-steps-grid,
  .lp-proof-grid,
  .lp-insight-grid,
  .lp-demo-shell,
  .lp-demo-workspace,
  .lp-company-inner {
    grid-template-columns: 1fr;
  }

  .lp-custom-build .lp-section-head h2 {
    max-width: 350px;
    font-size: clamp(25px, 6.75vw, 29px);
    line-height: 1.2;
  }

  .lp-custom-build .lp-section-head {
    margin-bottom: 32px;
  }

  .lp-custom-build .lp-diagnosis-grid::before {
    display: none;
  }

  .lp-custom-build .lp-card {
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
    padding: 22px;
  }

  .lp-custom-build .lp-diagnosis-grid article strong {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 22px;
  }

  .lp-custom-build .lp-diagnosis-grid p {
    grid-column: 1 / -1;
  }

  .lp-example-controls {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lp-examples .lp-section-head {
    max-width: 100%;
  }

  .lp-examples .lp-section-head h2 {
    word-break: auto-phrase;
    overflow-wrap: anywhere;
  }

  .lp-example-buttons {
    justify-content: flex-end;
  }

  .lp-example-track {
    grid-auto-columns: minmax(270px, 86vw);
    gap: 12px;
    padding-bottom: 18px;
  }

  .lp-example-card {
    min-height: auto;
    padding: 19px;
  }

  .lp-industry-example-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 8px;
  }

  .lp-industry-deck {
    margin-top: 22px;
    border-radius: 22px;
    padding: 16px;
  }

  .lp-industry-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lp-industry-head .lp-example-buttons {
    justify-content: flex-end;
  }

  .lp-industry-track {
    grid-auto-columns: minmax(260px, 84vw);
  }

  .lp-industry-card {
    min-height: auto;
    padding: 18px;
  }

  .lp-proof-grid {
    gap: 28px;
  }

  .lp-proof-grid strong {
    white-space: normal;
    font-size: clamp(40px, 11vw, 58px);
  }

  .lp-proof-grid > div > span {
    max-width: 240px;
    font-size: 14px;
    line-height: 1.65;
  }

  .lp-steps-grid {
    gap: 0;
  }

  .lp-steps-grid article {
    position: relative;
    padding: 0 0 26px 54px;
    margin-left: 20px;
    border-left: 2px solid #e3e3e8;
  }

  .lp-steps-grid article:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
  }

  .lp-steps-grid strong {
    position: absolute;
    left: -22px;
    top: 0;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .lp-steps-grid h3 {
    margin-top: 0;
    font-size: 17px;
    line-height: 1.45;
  }

  .lp-steps-grid article::before {
    display: none;
  }

  .lp-device-wrap {
    min-height: 720px;
  }

  .lp-demo-shell {
    height: auto;
    min-height: 0;
  }

  .lp-demo-sidebar {
    height: 320px;
  }

  /* スマホも自動化ダッシュボードをそのまま見せる */
  .lp-phone {
    display: none;
  }

  .lp-demo-card {
    display: grid;
    order: -1;
    height: 640px;
    min-height: 0;
    padding: 14px;
  }

  .lp-demo-input {
    height: auto;
    padding: 14px;
    min-height: auto;
    flex-shrink: 0;
  }

  .lp-auto-sourcebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-auto-message {
    min-height: 126px;
    font-size: 13.5px;
  }

  .lp-auto-lanes,
  .lp-auto-evidence {
    grid-template-columns: 1fr;
  }

  .lp-auto-output {
    grid-column: auto;
  }

  .lp-auto-output ul {
    grid-template-columns: 1fr;
  }

  .lp-demo-workspace {
    height: auto;
    min-height: auto;
  }

  .lp-auto-handoff {
    grid-template-columns: 1fr;
  }

  .lp-auto-draft p {
    max-height: 180px;
  }

  .lp-preset-list {
    max-height: 220px;
    overflow: auto;
    overscroll-behavior: contain;
    padding-right: 2px;
  }

  .lp-usecase-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 18px;
    margin: 0 -4px;
  }

  .lp-usecase-grid article {
    scroll-snap-align: center;
  }

  .lp-result-grid,
  .lp-result-grid.impact {
    grid-template-columns: 1fr;
  }

  .lp-ops-grid,
  .lp-ops-list {
    grid-template-columns: 1fr;
  }

  .lp-ops-head {
    display: grid;
  }

  .lp-ops-head span {
    max-width: 100%;
  }

  .lp-ops-head strong {
    text-align: left;
  }

  .lp-ops-table td {
    padding: 8px;
    font-size: 12px;
  }

  .lp-demo-actions {
    grid-template-columns: 1fr;
  }

  .lp-device-chrome {
    grid-template-columns: auto 1fr;
  }

  .lp-device-chrome strong {
    justify-self: start;
  }

  .lp-device-chrome em {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .lp-workflow span:not(:last-child)::after {
    display: none;
  }

  .lp-simple-demo {
    border-radius: 22px;
    padding: 20px;
  }

  .lp-simple-flow {
    grid-template-columns: 1fr;
  }

  .lp-simple-flow article {
    min-height: auto;
  }

  .lp-simple-flow article:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -20px;
    transform: translateX(-50%);
  }

  .lp-simple-example {
    grid-template-columns: 1fr;
  }

  .lp-scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .lp-hero h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .lp-hero-tagline {
    font-size: 22px;
  }

  .lp-cta {
    width: 100%;
  }

  .lp-hero-actions {
    width: 100%;
    flex-direction: column;
  }
}

/* ---------------------------- reduced motion ----------------------------- */

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

  .lp-hero-aurora,
  .lp-recipient::before,
  .lp-device-chrome em::before,
  .lp-scroll-hint span {
    animation: none;
  }

  .js .reveal,
  .js .stagger > *,
  .js .lp-device-frame.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .lp-result > * {
    animation: none;
  }
}
