.lv2-root {
  --blue: #4165e8;
  --blue-dark: #2445bf;
  --blue-pale: #eef2ff;
  --ink: #17181b;
  --body: #4e5057;
  --muted: #f5f6f8;
  --line: #e5e6ea;
  --white: #ffffff;
}

.lv2-root * {
  box-sizing: border-box;
}

.lv2-root {
  scroll-behavior: smooth;
}

.lv2-root {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.lv2-root a {
  color: inherit;
  text-decoration: none;
}

.lv2-root img {
  display: block;
  max-width: 100%;
}

.lv2-root button,
.lv2-root summary,
.lv2-root a {
  -webkit-tap-highlight-color: transparent;
}

.lv2-root .lv2-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: 82px;
  padding: 15px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(23, 24, 27, 0.08);
  backdrop-filter: blur(18px);
}

.lv2-root .lv2-site-header + main {
  padding-top: 82px;
}

.lv2-root .lv2-header-main {
  display: flex;
  align-items: center;
  gap: 40px;
}

.lv2-root .lv2-logo-link {
  display: block;
  flex: 0 0 auto;
}

.lv2-root .lv2-logo-link img {
  width: 120px;
  height: auto;
}

.lv2-root .lv2-site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #171a21;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.lv2-root .lv2-site-nav > a,
.lv2-root .lv2-site-nav summary,
.lv2-root .lv2-login-link {
  transition: color 0.2s ease;
}

.lv2-root .lv2-site-nav > a:hover,
.lv2-root .lv2-site-nav summary:hover,
.lv2-root .lv2-login-link:hover {
  color: #0071e3;
}

.lv2-root .lv2-nav-dropdown-menu {
  position: relative;
}

.lv2-root .lv2-nav-dropdown-menu summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.lv2-root .lv2-nav-dropdown-menu summary::-webkit-details-marker {
  display: none;
}

.lv2-root .lv2-nav-dropdown-menu summary span {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.lv2-root .lv2-nav-dropdown-menu[open] summary span {
  transform: translateY(2px) rotate(225deg);
}

.lv2-root .lv2-nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 27px);
  left: -8px;
  width: 316px;
  padding: 8px;
  border: 1px solid rgba(213, 219, 232, 0.9);
  border-radius: 14px;
  display: grid;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(23, 26, 33, 0.14);
}

.lv2-root .lv2-nav-dropdown-panel a {
  padding: 12px 14px;
  border-radius: 10px;
  display: grid;
  gap: 2px;
}

.lv2-root .lv2-nav-dropdown-panel a:hover {
  background: #f4f7fb;
}

.lv2-root .lv2-nav-dropdown-panel strong {
  font-size: 14px;
}

.lv2-root .lv2-nav-dropdown-panel small {
  color: #6d7480;
  font-size: 11px;
  font-weight: 500;
}

.lv2-root .lv2-nav-dropdown-panel--compact {
  width: 190px;
}

.lv2-root .lv2-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #1c2040;
  font-size: 14.5px;
  font-weight: 700;
  white-space: nowrap;
}

.lv2-root .lv2-login-link {
  min-height: 41px;
  display: inline-flex;
  align-items: center;
}

.lv2-root .lv2-download-link {
  min-height: 41px;
  padding: 0 16px;
  border: 1px solid rgba(213, 219, 232, 0.9);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
}

.lv2-root .lv2-button {
  min-height: 60px;
  padding: 0 30px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(65, 101, 232, 0.18);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lv2-root .lv2-button:hover {
  background: var(--blue-dark);
  box-shadow: 0 10px 28px rgba(36, 69, 191, 0.28);
  transform: translateY(-2px);
}

.lv2-root .lv2-button span {
  font-size: 22px;
  line-height: 0;
}

.lv2-root .lv2-button-small {
  min-height: 48px;
  padding: 0 19px;
  border-radius: 12px;
  font-size: 14px;
}

.lv2-root .lv2-site-header .lv2-button-small {
  background: #0071e3;
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.18);
}

.lv2-root .lv2-site-header .lv2-button-small:hover {
  background: #0067cf;
}

.lv2-root .lv2-mobile-menu {
  display: none;
}

.lv2-root .lv2-mobile-menu summary {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(213, 219, 232, 0.85);
  border-radius: 10px;
  list-style: none;
  display: grid;
  place-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.lv2-root .lv2-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.lv2-root .lv2-mobile-menu summary span {
  width: 18px;
  height: 1.5px;
  border-radius: 3px;
  background: var(--ink);
}

.lv2-root .lv2-mobile-menu nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 71px;
  max-height: calc(100vh - 71px);
  padding: 18px 20px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  overflow-y: auto;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 24, 27, 0.1);
}

.lv2-root .lv2-mobile-menu nav > a {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.lv2-root .lv2-hero {
  overflow: hidden;
  padding: 104px 0 72px;
}

.lv2-root .lv2-hero-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 50px;
}

.lv2-root .lv2-hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 4px;
}

.lv2-root .lv2-eyebrow,
.lv2-root .lv2-section-label {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lv2-root .lv2-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--blue-pale);
  letter-spacing: 0.04em;
}

.lv2-root .lv2-hero h1 {
  margin: 0;
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.16;
}

.lv2-root .lv2-hero h1 span,
.lv2-root .lv2-section-heading h2 span {
  color: var(--blue);
}

.lv2-root .lv2-hero-description {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--body);
  font-size: 17px;
  font-weight: 550;
  line-height: 2;
}

.lv2-root .lv2-hero-buttons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.lv2-root .lv2-text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 800;
  transition: gap 0.2s ease;
}

.lv2-root .lv2-text-button:hover {
  gap: 17px;
}

.lv2-root .lv2-text-button span {
  font-size: 23px;
  line-height: 0;
}

.lv2-root .lv2-assurance {
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  list-style: none;
  color: #4b4e56;
  font-size: 13px;
  font-weight: 700;
}

.lv2-root .lv2-assurance li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--blue);
  font-weight: 900;
}

.lv2-root .lv2-meta-note {
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lv2-root .lv2-meta-note img {
  width: 36px;
}

.lv2-root .lv2-meta-note p {
  margin: 0;
  color: #676a72;
  font-size: 12px;
  line-height: 1.55;
}

.lv2-root .lv2-phone-stage {
  position: relative;
  height: 490px;
}

.lv2-root .lv2-phone-glow {
  position: absolute;
  inset: 45px 0 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 101, 232, 0.14), rgba(65, 101, 232, 0) 67%);
  filter: blur(10px);
}

.lv2-root .lv2-phone {
  position: absolute;
  width: 31%;
  height: auto;
  filter: drop-shadow(0 28px 28px rgba(23, 24, 27, 0.17));
}

.lv2-root .lv2-phone-left {
  left: 2%;
  top: 56px;
  transform: rotate(-1.5deg);
}

.lv2-root .lv2-phone-center {
  left: 34.5%;
  top: 22px;
  z-index: 2;
}

.lv2-root .lv2-phone-right {
  right: 1%;
  top: 58px;
  transform: rotate(1.5deg);
}

.lv2-root .lv2-brands {
  width: min(1120px, calc(100% - 48px));
  margin: 62px auto 0;
  text-align: center;
}

.lv2-root .lv2-brands > p {
  margin: 0 0 24px;
  color: #777980;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.lv2-root .lv2-brand-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: 38px;
}

.lv2-root .lv2-brand-row img {
  width: 100%;
  max-height: 36px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
}

.lv2-root .lv2-section {
  padding: 132px 24px;
}

.lv2-root .lv2-section-muted {
  background: var(--muted);
}

.lv2-root .lv2-section-heading {
  width: min(1000px, 100%);
  margin: 0 auto;
}

.lv2-root .lv2-centered {
  text-align: center;
}

.lv2-root .lv2-section-heading h2,
.lv2-root .lv2-solution-copy h2,
.lv2-root .lv2-results-section h2,
.lv2-root .lv2-contact-section h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.34;
}

.lv2-root .lv2-section-heading > p:last-child {
  margin: 24px auto 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.85;
}

.lv2-root .lv2-card-grid {
  width: min(1180px, 100%);
  margin: 62px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lv2-root .lv2-issue-card {
  position: relative;
  min-height: 342px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 24, 27, 0.035);
}

.lv2-root .lv2-card-number {
  position: absolute;
  right: 24px;
  top: 18px;
  color: #eceef1;
  font-size: 66px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.lv2-root .lv2-issue-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
}

.lv2-root .lv2-issue-icon-negative {
  background: #fff0f0;
  color: #df5d61;
}

.lv2-root .lv2-issue-icon-positive {
  background: var(--blue-pale);
  color: var(--blue);
}

.lv2-root .lv2-issue-card h3 {
  position: relative;
  margin: 56px 0 16px;
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.lv2-root .lv2-issue-card p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.85;
}

.lv2-root .lv2-section-conclusion {
  margin: 48px auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
}

.lv2-root .lv2-section-conclusion strong {
  font-weight: 850;
}

.lv2-root .lv2-benefit-card {
  border-color: #dfe5ff;
  background: linear-gradient(145deg, #fff, #f7f9ff);
}

.lv2-root .lv2-solution-section {
  padding: 126px 24px;
  overflow: hidden;
  background: #173ab9;
  color: var(--white);
}

.lv2-root .lv2-solution-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 76px;
}

.lv2-root .lv2-section-label-light {
  color: #b7c5ff;
}

.lv2-root .lv2-solution-copy h2 {
  font-size: clamp(38px, 3.3vw, 48px);
  letter-spacing: -0.055em;
}

.lv2-root .lv2-work-list {
  margin: 32px 0 40px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 750;
}

.lv2-root .lv2-work-list span {
  white-space: nowrap;
}

.lv2-root .lv2-work-list i {
  color: #96aaff;
  font-style: normal;
}

.lv2-root .lv2-solution-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 3.2vw, 50px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.3;
}

.lv2-root .lv2-solution-copy > p:not(.lv2-section-label) {
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.9;
}

.lv2-root .lv2-button-white {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 10px 28px rgba(9, 27, 92, 0.22);
}

.lv2-root .lv2-button-white:hover {
  background: #f3f5ff;
  color: var(--blue-dark);
}

.lv2-root .lv2-solution-visual {
  position: relative;
  padding: 40px 10px 32px;
}

.lv2-root .lv2-solution-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 40px 80px rgba(4, 18, 73, 0.36);
  transform: rotate(1.5deg);
}

.lv2-root .lv2-window-bar {
  height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #eceef3;
  background: #f7f8fa;
}

.lv2-root .lv2-window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9dbe1;
}

.lv2-root .lv2-window-bar small {
  margin-left: auto;
  color: #838690;
  font-size: 9px;
  font-weight: 800;
}

.lv2-root .lv2-solution-window img {
  width: 100%;
}

.lv2-root .lv2-floating-stat {
  position: absolute;
  z-index: 2;
  width: 170px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(4, 18, 73, 0.28);
}

.lv2-root .lv2-floating-stat-top {
  right: -14px;
  top: 2px;
}

.lv2-root .lv2-floating-stat-bottom {
  left: -24px;
  bottom: 0;
}

.lv2-root .lv2-floating-stat small,
.lv2-root .lv2-floating-stat span {
  display: block;
  color: #777a83;
  font-size: 10px;
  font-weight: 700;
}

.lv2-root .lv2-floating-stat strong {
  display: block;
  margin: 3px 0 2px;
  color: var(--blue);
  font-size: 32px;
  letter-spacing: -0.04em;
}

.lv2-root .lv2-features-section {
  padding-bottom: 80px;
}

.lv2-root .lv2-features-heading {
  margin-bottom: 95px;
}

.lv2-root .lv2-feature-list {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.lv2-root .lv2-feature-row {
  padding: 76px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 85px;
}

.lv2-root .lv2-feature-reverse {
  grid-template-columns: 1.16fr 0.84fr;
}

.lv2-root .lv2-feature-row:last-child {
  border-bottom: 1px solid var(--line);
}

.lv2-root .lv2-feature-reverse .lv2-feature-copy {
  order: 2;
}

.lv2-root .lv2-feature-reverse .lv2-product-shot {
  order: 1;
}

.lv2-root .lv2-feature-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.lv2-root .lv2-feature-kicker span {
  color: #a7b6f7;
  font-size: 12px;
}

.lv2-root .lv2-feature-copy h3 {
  margin: 14px 0 28px;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.lv2-root .lv2-feature-copy h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.lv2-root .lv2-feature-copy > p {
  margin: 16px 0 24px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.85;
}

.lv2-root .lv2-feature-copy ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
  font-size: 13px;
  font-weight: 750;
}

.lv2-root .lv2-feature-copy li::before {
  content: "✓";
  width: 19px;
  height: 19px;
  margin-right: 10px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 10px;
}

.lv2-root .lv2-product-shot {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 26px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: #f0f3fd;
}

.lv2-root .lv2-product-shot img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #e1e4ec;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(35, 45, 84, 0.16);
}

.lv2-root .lv2-shot-accent {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 45%;
  height: 45%;
  border-radius: 50%;
  background: rgba(65, 101, 232, 0.15);
  filter: blur(35px);
}

.lv2-root .lv2-results-section {
  padding: 120px 24px;
  background: var(--ink);
  color: var(--white);
}

.lv2-root .lv2-results-intro {
  margin: 0 0 8px;
  color: #c7c8cd;
  font-size: 16px;
}

.lv2-root .lv2-results-section h2 {
  font-size: clamp(48px, 5vw, 70px);
}

.lv2-root .lv2-results-grid {
  width: min(1120px, 100%);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-root .lv2-results-grid article {
  padding: 12px 48px;
  text-align: center;
}

.lv2-root .lv2-results-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.lv2-root .lv2-results-grid article > p:first-child {
  margin: 0 0 12px;
  color: #b8bbc4;
  font-size: 13px;
  font-weight: 750;
}

.lv2-root .lv2-results-grid strong {
  display: block;
  color: #6f8cff;
  font-size: clamp(66px, 7vw, 94px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.05;
}

.lv2-root .lv2-results-grid strong small {
  margin-right: 3px;
  font-size: 40px;
}

.lv2-root .lv2-results-grid strong span {
  font-size: 27px;
}

.lv2-root .lv2-results-grid article > p:last-child {
  margin: 22px auto 0;
  color: #b8bbc4;
  font-size: 13px;
  line-height: 1.75;
}

.lv2-root .lv2-results-note {
  margin: 45px 0 0;
  color: #898c94;
  text-align: center;
  font-size: 11px;
}

.lv2-root .lv2-proof-section {
  background: var(--muted);
}

.lv2-root .lv2-proof-card {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 76px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 70px;
  background: var(--white);
  box-shadow: 0 12px 50px rgba(23, 24, 27, 0.06);
}

.lv2-root .lv2-proof-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.lv2-root .lv2-proof-copy > p:not(.lv2-section-label) {
  margin: 24px 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.9;
}

.lv2-root .lv2-proof-numbers {
  display: grid;
  gap: 18px;
}

.lv2-root .lv2-proof-numbers > div {
  padding: 28px 32px;
  border-radius: 20px;
  background: var(--blue-pale);
}

.lv2-root .lv2-proof-numbers span {
  color: #5c6380;
  font-size: 12px;
  font-weight: 750;
}

.lv2-root .lv2-proof-numbers strong {
  display: block;
  margin: 5px 0;
  color: var(--blue);
  font-size: 58px;
  letter-spacing: -0.06em;
}

.lv2-root .lv2-proof-numbers strong small {
  margin-left: 5px;
  font-size: 18px;
}

.lv2-root .lv2-proof-numbers p {
  margin: 0;
  color: #70758a;
  font-size: 11px;
}

.lv2-root .lv2-pricing-section {
  background: #fff;
}

.lv2-root .lv2-pricing-card {
  width: min(950px, 100%);
  margin: 60px auto 0;
  padding: 52px 60px;
  border: 1px solid #dfe4f7;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 46px;
  background: linear-gradient(145deg, #fff, #f8faff);
  box-shadow: 0 22px 60px rgba(49, 72, 150, 0.1);
}

.lv2-root .lv2-price-block {
  text-align: center;
}

.lv2-root .lv2-price-block p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.lv2-root .lv2-price-block strong {
  display: block;
  margin: 4px 0;
  color: var(--blue);
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.2;
}

.lv2-root .lv2-price-block strong small {
  margin-left: 5px;
  color: var(--ink);
  font-size: 21px;
  letter-spacing: -0.03em;
}

.lv2-root .lv2-price-block > span {
  color: #747780;
  font-size: 11px;
}

.lv2-root .lv2-price-divider {
  width: 1px;
  height: 110px;
  background: #dfe2ea;
}

.lv2-root .lv2-pricing-card > ul {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px 32px;
  display: flex;
  justify-content: center;
  gap: 42px;
  border-radius: 12px;
  background: var(--white);
  list-style: none;
  color: #555963;
  font-size: 12px;
  font-weight: 750;
}

.lv2-root .lv2-pricing-card > ul li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue);
}

.lv2-root .lv2-pricing-card > .lv2-button {
  grid-column: 1 / -1;
  width: max-content;
  margin: 0 auto;
}

.lv2-root .lv2-faq-section {
  padding-top: 105px;
}

.lv2-root .lv2-faq-section .lv2-section-heading h2 {
  font-size: 46px;
}

.lv2-root .lv2-faq-list {
  width: min(900px, 100%);
  margin: 50px auto 0;
  border-top: 1px solid var(--line);
}

.lv2-root .lv2-faq-list details {
  border-bottom: 1px solid var(--line);
}

.lv2-root .lv2-faq-list summary {
  min-height: 86px;
  padding: 22px 4px;
  list-style: none;
  display: grid;
  grid-template-columns: 42px 1fr 32px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.lv2-root .lv2-faq-list summary::-webkit-details-marker {
  display: none;
}

.lv2-root .lv2-faq-list summary span {
  color: var(--blue);
  font-size: 22px;
}

.lv2-root .lv2-faq-list summary i {
  color: var(--blue);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.lv2-root .lv2-faq-list details[open] summary i {
  transform: rotate(45deg);
}

.lv2-root .lv2-faq-list details > p {
  margin: -2px 0 0;
  padding: 0 48px 28px 58px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.9;
  white-space: pre-line;
}

.lv2-root .lv2-contact-section {
  padding: 125px 24px 145px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 85% 80%, rgba(112, 140, 255, 0.28), transparent 30%),
    #173ab9;
  color: var(--white);
}

.lv2-root .lv2-contact-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.lv2-root .lv2-contact-inner > p:not(.lv2-section-label) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.lv2-root .lv2-contact-buttons {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.lv2-root .lv2-outline-button {
  min-height: 60px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  transition: background 0.2s ease;
}

.lv2-root .lv2-outline-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lv2-root .lv2-contact-assurance {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.lv2-root .lv2-contact-assurance li::before {
  content: "✓";
  margin-right: 7px;
  color: #adc0ff;
}

.lv2-root .lv2-site-footer {
  padding: 80px 0 104px;
  background: #f5f5f7;
}

.lv2-root .lv2-site-footer__inner,
.lv2-root .lv2-site-footer__bottom {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.lv2-root .lv2-site-footer__inner {
  display: grid;
  grid-template-columns: minmax(230px, 286px) repeat(5, minmax(112px, 1fr));
  align-items: start;
  gap: clamp(28px, 3.15vw, 61px);
}

.lv2-root .lv2-site-footer__logo {
  display: inline-flex;
}

.lv2-root .lv2-site-footer__logo img {
  width: 124px;
  height: auto;
}

.lv2-root .lv2-site-footer__description {
  max-width: 286px;
  margin: 22px 0 0;
  color: #6e6e73;
  font-size: 14.72px;
  font-weight: 500;
  line-height: 1.8;
}

.lv2-root .lv2-site-footer__column {
  display: block;
}

.lv2-root .lv2-site-footer__column > span {
  display: block;
  margin-bottom: 19px;
  color: #86868b;
  font-size: 11.2px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
}

.lv2-root .lv2-site-footer__column > a {
  display: block;
  margin-top: 13px;
  color: #1d1d1f;
  font-size: 14.4px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.lv2-root .lv2-site-footer__column > span + a {
  margin-top: 0;
}

.lv2-root .lv2-site-footer__column > a:hover,
.lv2-root .lv2-site-footer__bottom a:hover {
  color: var(--blue);
}

.lv2-root .lv2-site-footer__bottom {
  margin-top: 67px;
  padding-top: 25px;
  border-top: 1px solid #dedee2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lv2-root .lv2-site-footer__copyright {
  margin: 0;
  color: #7d828d;
  font-size: 12.8px;
  line-height: 1.6;
}

.lv2-root .lv2-site-footer__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6e6e73;
  font-size: 13.12px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lv2-root .lv2-site-footer__bottom a span {
  width: 26px;
  height: 26px;
  border: 1px solid #d3d3d7;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
}

.lv2-root .lv2-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  min-height: 72px;
  padding: 10px max(24px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 -12px 34px rgba(23, 24, 27, 0.06);
}

.lv2-root .lv2-sticky-cta > p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.lv2-root .lv2-sticky-cta > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lv2-root .lv2-sticky-cta > div > a:first-child {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .lv2-root .lv2-site-nav {
    gap: 18px;
    font-size: 12px;
  }

  .lv2-root .lv2-header-main {
    gap: 26px;
  }

  .lv2-root .lv2-header-actions {
    gap: 10px;
  }

  .lv2-root .lv2-hero {
    padding-top: 80px;
  }

  .lv2-root .lv2-hero-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
  }

  .lv2-root .lv2-hero h1 {
    font-size: 54px;
  }

  .lv2-root .lv2-phone-stage {
    height: 410px;
  }

  .lv2-root .lv2-solution-inner {
    gap: 45px;
  }

  .lv2-root .lv2-feature-row {
    gap: 55px;
  }

  .lv2-root .lv2-site-footer__inner {
    grid-template-columns: 1.35fr repeat(3, 1fr);
    column-gap: 32px;
    row-gap: 44px;
  }

  .lv2-root .lv2-site-footer__brand {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  .lv2-root .lv2-site-header {
    min-height: 71px;
    padding: 13.5px 16px;
  }

  .lv2-root .lv2-site-header + main {
    padding-top: 71px;
  }

  .lv2-root .lv2-logo-link img {
    width: 106px;
  }

  .lv2-root .lv2-site-nav,
  .lv2-root .lv2-login-link,
  .lv2-root .lv2-download-link {
    display: none;
  }

  .lv2-root .lv2-header-actions {
    gap: 8px;
  }

  .lv2-root .lv2-header-actions .lv2-button-small {
    min-height: 44px;
    padding: 0 13px;
    border-radius: 10px;
    font-size: 12px;
  }

  .lv2-root .lv2-mobile-menu {
    display: block;
  }

  .lv2-root .lv2-hero {
    padding: 64px 0 58px;
  }

  .lv2-root .lv2-hero-inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .lv2-root .lv2-hero-copy {
    text-align: center;
  }

  .lv2-root .lv2-hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .lv2-root .lv2-hero-buttons,
  .lv2-root .lv2-assurance,
  .lv2-root .lv2-meta-note {
    justify-content: center;
  }

  .lv2-root .lv2-phone-stage {
    width: min(680px, 100%);
    height: 430px;
    margin: 0 auto;
  }

  .lv2-root .lv2-brands {
    margin-top: 38px;
  }

  .lv2-root .lv2-brand-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 34px;
  }

  .lv2-root .lv2-brand-row img:last-child {
    display: none;
  }

  .lv2-root .lv2-section {
    padding: 96px 24px;
  }

  .lv2-root .lv2-card-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .lv2-root .lv2-issue-card {
    min-height: 0;
  }

  .lv2-root .lv2-solution-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .lv2-root .lv2-solution-copy {
    max-width: 680px;
  }

  .lv2-root .lv2-solution-visual {
    width: min(680px, 96%);
    margin: 0 auto;
  }

  .lv2-root .lv2-feature-row,
  .lv2-root .lv2-feature-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lv2-root .lv2-feature-reverse .lv2-feature-copy,
  .lv2-root .lv2-feature-reverse .lv2-product-shot {
    order: initial;
  }

  .lv2-root .lv2-results-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .lv2-root .lv2-results-grid article {
    padding: 45px 30px;
  }

  .lv2-root .lv2-results-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .lv2-root .lv2-proof-card {
    padding: 54px;
    grid-template-columns: 1fr;
  }

  .lv2-root .lv2-sticky-cta > p {
    display: none;
  }

  .lv2-root .lv2-sticky-cta {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .lv2-root .lv2-hero {
    padding-top: 48px;
  }

  .lv2-root .lv2-hero-eyebrow {
    min-height: auto;
    padding: 8px 12px;
    font-size: 10px;
  }

  .lv2-root .lv2-hero h1 {
    font-size: clamp(39px, 12vw, 52px);
    line-height: 1.2;
  }

  .lv2-root .lv2-hero-description {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.85;
  }

  .lv2-root .lv2-hero-buttons {
    width: 100%;
    margin-top: 26px;
    flex-direction: column;
    gap: 18px;
  }

  .lv2-root .lv2-hero-buttons .lv2-button {
    width: 100%;
  }

  .lv2-root .lv2-assurance {
    gap: 8px 14px;
    font-size: 10px;
  }

  .lv2-root .lv2-meta-note {
    text-align: left;
  }

  .lv2-root .lv2-phone-stage {
    height: 300px;
  }

  .lv2-root .lv2-phone {
    width: 35%;
  }

  .lv2-root .lv2-phone-left {
    left: -3%;
    top: 42px;
  }

  .lv2-root .lv2-phone-center {
    left: 32.5%;
    top: 10px;
  }

  .lv2-root .lv2-phone-right {
    right: -3%;
    top: 44px;
  }

  .lv2-root .lv2-brands {
    width: calc(100% - 34px);
    margin-top: 30px;
  }

  .lv2-root .lv2-brands > p {
    font-size: 10px;
  }

  .lv2-root .lv2-brand-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 28px;
  }

  .lv2-root .lv2-brand-row img:nth-last-child(-n + 2) {
    display: none;
  }

  .lv2-root .lv2-section,
  .lv2-root .lv2-solution-section {
    padding: 78px 20px;
  }

  .lv2-root .lv2-section-heading h2,
  .lv2-root .lv2-solution-copy h2,
  .lv2-root .lv2-contact-section h2 {
    font-size: 34px;
    line-height: 1.4;
  }

  .lv2-root .lv2-section-heading h2 br,
  .lv2-root .lv2-solution-copy h2 br {
    display: none;
  }

  .lv2-root .lv2-section-heading > p:last-child {
    font-size: 14px;
  }

  .lv2-root .lv2-card-grid {
    margin-top: 42px;
  }

  .lv2-root .lv2-issue-card {
    padding: 28px;
  }

  .lv2-root .lv2-card-number {
    font-size: 54px;
  }

  .lv2-root .lv2-issue-card h3 {
    margin-top: 42px;
    font-size: 20px;
  }

  .lv2-root .lv2-section-conclusion {
    font-size: 14px;
  }

  .lv2-root .lv2-work-list {
    padding: 16px 12px;
    display: flex;
    gap: 7px;
    text-align: center;
    font-size: 11px;
  }

  .lv2-root .lv2-work-list span:last-child {
    grid-column: auto;
  }

  .lv2-root .lv2-solution-copy h3 {
    font-size: 36px;
  }

  .lv2-root .lv2-solution-visual {
    width: 100%;
    padding-top: 32px;
  }

  .lv2-root .lv2-solution-window {
    border-radius: 14px;
  }

  .lv2-root .lv2-floating-stat {
    width: 134px;
    padding: 13px;
  }

  .lv2-root .lv2-floating-stat strong {
    font-size: 24px;
  }

  .lv2-root .lv2-floating-stat-top {
    right: -8px;
  }

  .lv2-root .lv2-floating-stat-bottom {
    left: -8px;
  }

  .lv2-root .lv2-features-heading {
    margin-bottom: 55px;
  }

  .lv2-root .lv2-feature-row {
    padding: 55px 0;
    gap: 34px;
  }

  .lv2-root .lv2-feature-copy h3 {
    margin-bottom: 20px;
    font-size: 44px;
  }

  .lv2-root .lv2-feature-copy h4 {
    font-size: 20px;
  }

  .lv2-root .lv2-product-shot {
    padding: 13px;
    border-radius: 18px;
  }

  .lv2-root .lv2-results-section {
    padding: 80px 20px;
  }

  .lv2-root .lv2-results-grid {
    margin-top: 38px;
  }

  .lv2-root .lv2-proof-card {
    padding: 34px 24px;
    gap: 42px;
  }

  .lv2-root .lv2-proof-copy h2 {
    font-size: 34px;
  }

  .lv2-root .lv2-proof-numbers strong {
    font-size: 48px;
  }

  .lv2-root .lv2-pricing-card {
    padding: 36px 22px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .lv2-root .lv2-price-divider {
    width: 100%;
    height: 1px;
  }

  .lv2-root .lv2-pricing-card > ul {
    display: grid;
    gap: 12px;
    padding: 20px;
  }

  .lv2-root .lv2-pricing-card > .lv2-button {
    width: 100%;
  }

  .lv2-root .lv2-faq-list summary {
    grid-template-columns: 34px 1fr 24px;
    font-size: 14px;
  }

  .lv2-root .lv2-faq-list details > p {
    padding-right: 18px;
    padding-left: 46px;
  }

  .lv2-root .lv2-contact-section {
    padding: 80px 20px 115px;
  }

  .lv2-root .lv2-contact-buttons {
    flex-direction: column;
  }

  .lv2-root .lv2-contact-buttons > a {
    width: 100%;
  }

  .lv2-root .lv2-contact-assurance {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .lv2-root .lv2-site-footer {
    padding: 64px 20px 92px;
  }

  .lv2-root .lv2-site-footer__inner,
  .lv2-root .lv2-site-footer__bottom {
    width: 100%;
  }

  .lv2-root .lv2-site-footer__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .lv2-root .lv2-site-footer__brand {
    grid-row: auto;
    margin-bottom: 8px;
  }

  .lv2-root .lv2-site-footer__description {
    max-width: 270px;
  }

  .lv2-root .lv2-site-footer__bottom {
    margin-top: 52px;
    padding-top: 26px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .lv2-root .lv2-sticky-cta {
    min-height: 64px;
    padding: 8px 12px;
  }

  .lv2-root .lv2-sticky-cta > div {
    width: 100%;
    gap: 10px;
  }

  .lv2-root .lv2-sticky-cta > div > a {
    flex: 1;
    text-align: center;
  }

  .lv2-root .lv2-sticky-cta .lv2-button-small {
    min-height: 46px;
  }
}

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

  .lv2-root *,
  .lv2-root *::before,
  .lv2-root *::after {
    transition-duration: 0.01ms !important;
  }
}
