.lp {
  min-height: 100vh;
  background: var(--bg);
  overflow-x: hidden;
}

.lp-header {
  padding: 28px 0;
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.lp-header .brand-lockup {
  display: flex;
  align-items: center;
  height: 56px;
}

.lp-header .brand-lockup__logo {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
}

.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lp-header__inner > .lang-switch {
  margin-left: 22px;
}

.lp-burger,
.lp-nav__close {
  display: none;
}

.lp-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: flex;
  justify-content: center;
}

.lp-consent[hidden] {
  display: none;
}

.lp-consent__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 720px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.lp-consent__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-2);
}

.lp-consent__text a {
  color: var(--text);
  text-decoration: underline;
}

.lp-consent__actions {
  display: flex;
  gap: 10px;
}

.lp-consent__btn {
  min-width: 116px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: var(--surface);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.lp-consent__btn:hover {
  border-color: var(--faint-2);
  background: var(--surface-2);
}

.lp-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(16, 16, 18, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.36s cubic-bezier(0.33, 1, 0.68, 1),
    visibility 0.36s cubic-bezier(0.33, 1, 0.68, 1);
}

.lang-switch {
  position: relative;
}

.lang-switch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: var(--surface);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.lang-switch__toggle::-webkit-details-marker {
  display: none;
}

.lang-switch__toggle:hover {
  border-color: var(--faint-2);
}

.lang-switch__code {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-2);
}

.lang-switch__caret {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--faint);
  border-bottom: 1.5px solid var(--faint);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.15s ease;
}

.lang-switch[open] .lang-switch__caret {
  transform: rotate(-135deg) translateY(-1px);
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  min-width: 168px;
  display: flex;
  flex-direction: column;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.lang-switch__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  white-space: nowrap;
}

.lang-switch__link:hover {
  color: var(--text);
  background: var(--surface-2);
}

.lang-switch__link.is-active {
  color: var(--text);
  background: var(--surface-3);
}

.lang-switch__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--faint);
}

.lp-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: var(--faint-3);
  font-family: var(--font-display);
}

.lp-footer__legal a {
  color: var(--faint-3);
  text-decoration: none;
}

.lp-footer__legal a:hover {
  color: var(--text-2);
}

.lp-footer__sep {
  color: var(--faint-3);
}

.lp-legal {
  padding-top: 48px;
  padding-bottom: 72px;
  max-width: 720px;
}

.lp-legal__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 12px;
}

.lp-legal__meta,
.lp-legal__updated {
  font-size: 13px;
  color: var(--faint);
  margin: 0 0 12px;
}

.lp-legal__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 28px;
}

.lp-legal__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-legal__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
}

.lp-legal__h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 20px 0 0;
}

.lp-legal__list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-legal__list li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
}

.lp-legal__provider {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.lp-legal__provider-label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

.lp-legal__entity {
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}

.lp-legal__provider--main .lp-legal__entity {
  font-size: 15.5px;
  color: var(--text);
}

.lp-legal__entity span:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: var(--faint-2);
}

.nav-link.is-active {
  color: var(--text);
}

.lp-faq {
  padding-top: 56px;
  padding-bottom: 72px;
  max-width: 760px;
}

.lp-faq__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--text);
}

.lp-faq__lead {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
}

.lp-faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
}

.lp-faq__item {
  border-bottom: 1px solid var(--line-soft);
}

.lp-faq__q {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  padding: 18px 28px 18px 0;
  color: var(--text);
  position: relative;
}

.lp-faq__q::-webkit-details-marker {
  display: none;
}

.lp-faq__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-weight: 600;
  color: var(--faint);
}

.lp-faq__item[open] .lp-faq__q::after {
  content: "-";
}

.lp-faq__a {
  padding: 0 0 20px;
}

.lp-faq__a p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 42rem;
}

.lp-about {
  padding-top: 48px;
  padding-bottom: 72px;
  max-width: 720px;
}

.lp-about__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--text);
}

.lp-about__lead {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
}

.lp-about__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-about__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
}

.lp-about__contact {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.lp-about__contact-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.lp-about__contact a {
  color: var(--text);
  text-decoration: none;
}

.lp-about__contact a:hover {
  color: var(--accent-dark);
}

.lp-compare {
  padding-top: 48px;
  padding-bottom: 72px;
  max-width: 760px;
}

.lp-compare__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--text);
}

.lp-compare__lead {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
}

.lp-compare__meta {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--faint);
}

.lp-compare__back {
  margin: 0 0 24px;
}

.lp-compare__back a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
}

.lp-compare__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-compare__card {
  display: block;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
}

.lp-compare__card:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.lp-compare__card-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.lp-compare__card-lead {
  margin: 0;
  color: var(--text-2);
  line-height: 1.55;
  font-size: 15px;
}

.lp-compare__table-wrap {
  overflow-x: auto;
  margin: 0 0 36px;
}

.lp-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.lp-compare__table caption {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.lp-compare__table th,
.lp-compare__table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.lp-compare__table thead th {
  font-family: var(--font-display);
  font-weight: 700;
}

.lp-compare__section {
  margin-bottom: 28px;
}

.lp-compare__section h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}

.lp-compare__section p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
}

.lp-compare__note {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  line-height: 1.6;
  color: var(--faint);
}

.lp-compare__cta {
  margin-top: 28px;
}

.lp-blog {
  padding-top: 48px;
  padding-bottom: 72px;
  max-width: 760px;
}

.lp-blog__title,
.lp-article__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 12px;
}

.lp-blog__lead {
  margin: 0 0 36px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
}

.lp-blog__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-blog__card {
  display: block;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
}

.lp-blog__card:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.lp-blog__card-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.lp-blog__card-excerpt {
  margin: 0 0 8px;
  color: var(--text-2);
  line-height: 1.55;
}

.lp-blog__card-meta,
.lp-article__meta,
.lp-blog__empty {
  font-size: 13px;
  color: var(--faint);
}

.lp-article {
  padding-top: 40px;
  padding-bottom: 72px;
  max-width: 720px;
}

.lp-article__preview {
  margin: 0 0 20px;
  padding: 12px 14px;
  border: 1px dashed var(--accent-ui-border);
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13.5px;
}

.lp-article__back {
  margin: 0 0 24px;
}

.lp-article__back a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
}

.lp-article__cover {
  width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: var(--r-lg);
}

.lp-article__body {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}

.lp-article__body h2,
.lp-article__body h3 {
  font-family: var(--font-display);
  margin: 1.6em 0 0.6em;
}

.lp-article__body p {
  margin: 0 0 1em;
}

.lp-article__body ul,
.lp-article__body ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.lp-article__body img {
  display: block;
  max-width: 100%;
  max-height: 720px;
  width: auto;
  height: auto;
  margin: 24px auto;
  border-radius: var(--r-lg);
}

.lp-article__body table {
  width: 100%;
  margin: 0 0 1.4em;
  border-collapse: collapse;
  font-size: 15px;
}

.lp-article__body th,
.lp-article__body td {
  padding: 9px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}

.lp-article__body th {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-2);
}

.lp-article__body blockquote {
  margin: 0 0 1.2em;
  padding: 2px 0 2px 16px;
  border-left: 3px solid var(--accent-ui-border);
  color: var(--text-2);
}

.lp-article__body code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--surface-3);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
}

.lp-article__body pre {
  margin: 0 0 1.4em;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--surface-3);
  overflow-x: auto;
}

.lp-article__body pre code {
  padding: 0;
  background: none;
}

.lp-article__sources {
  margin-top: 40px;
  padding-top: 8px;
}

.lp-article__sources-summary {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.01em;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.lp-article__sources-summary::-webkit-details-marker {
  display: none;
}

.lp-article__sources-summary::after {
  content: " ▾";
  font-size: 10px;
  opacity: 0.7;
}

.lp-article__sources[open] .lp-article__sources-summary::after {
  content: " ▴";
}

.lp-article__sources-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-article__sources-list a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.lp-article__sources-list a:hover {
  color: var(--text);
}

.lp-article__faq {
  margin-top: 28px;
  padding-top: 8px;
}

.lp-article__faq-summary {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.01em;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.lp-article__faq-summary::-webkit-details-marker {
  display: none;
}

.lp-article__faq-summary::after {
  content: " ▾";
  font-size: 10px;
  opacity: 0.7;
}

.lp-article__faq[open] .lp-article__faq-summary::after {
  content: " ▴";
}

.lp-article__faq-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-article__faq-item {
  border-top: 1px solid var(--border);
}

.lp-article__faq-q {
  font-size: 15px;
  font-weight: 600;
  padding: 12px 0;
  cursor: pointer;
  list-style: none;
}

.lp-article__faq-q::-webkit-details-marker {
  display: none;
}

.lp-article__faq-a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 0 12px;
}

.lp-article__faq-a p {
  margin: 0;
}

.lp-admin {
  padding: 40px 0 72px;
}

.lp-admin__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.lp-admin__bar h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
}

.lp-admin__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.lp-admin__table th,
.lp-admin__table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line-soft);
}

.lp-admin__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}

.lp-admin__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
}

.lp-admin__form input,
.lp-admin__form textarea,
.lp-admin__form select {
  font: inherit;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
}

.lp-admin__form--translate {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.lp-admin__hint {
  margin-top: 16px;
  font-size: 12px;
  color: var(--faint);
}

.lp-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.lp-hero__copy {
  flex: 1;
  min-width: 0;
  max-width: 520px;
}

.lp-hero__copy .pill {
  margin-bottom: 24px;
}

.lp-hero__title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--text);
  margin: 0 0 22px;
}

.lp-hero__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 34px;
  max-width: 440px;
}

.lp-hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}


.lp-phones {
  flex: 1;
  min-width: 0;
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-phones::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72%;
  height: 72%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(232, 122, 115, 0.16) 0%,
    rgba(232, 122, 115, 0.05) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }
  50% {
    transform: translateY(-10px) rotate(-7deg);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(0deg);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translateY(0) rotate(7deg);
  }
  50% {
    transform: translateY(-8px) rotate(7deg);
  }
}

.phone {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.phone--side {
  position: absolute;
  z-index: 1;
  width: 210px;
  height: 440px;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-phone);
}

.phone--side-left {
  left: 6%;
  top: 14%;
  animation: float1 6s ease-in-out infinite;
}

.phone--side-right {
  right: 4%;
  top: 18%;
  animation: float3 6s ease-in-out infinite 0.8s;
}

.phone--main {
  position: relative;
  z-index: 3;
  width: 250px;
  height: 520px;
  border-radius: 38px;
  box-shadow: var(--shadow-phone-main);
  padding: 22px 16px;
  gap: 8px;
  animation: float2 6s ease-in-out infinite 0.4s;
}

.phone__head {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.phone--main .phone__head {
  font-size: 18px;
}

.phone__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.phone__meta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--faint);
}

.phone-card {
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 10px 12px;
}

.phone-card--accent {
  border-color: var(--accent-ui-border);
  box-shadow: 0 2px 8px var(--accent-ui-glow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-card__title {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.phone-card__meta {
  font-size: 9px;
  font-weight: 500;
  color: #8a8a8a;
}

.phone-card__meta--block {
  display: block;
  margin-top: 4px;
  line-height: 1.4;
}

.phone-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.phone-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.phone-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 500;
  color: var(--faint);
}

.phone-progress-row__val {
  font-weight: 700;
  color: var(--text);
}

.phone-progress {
  background: #f0f0f0;
  border-radius: 6px;
  height: 5px;
  overflow: hidden;
}

.phone-progress__fill {
  background: var(--text);
  height: 100%;
  border-radius: 6px;
}

.phone-progress__fill--40 {
  width: 40%;
}

.phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
  border-radius: 11px;
  padding: 8px 0;
  text-align: center;
}

.phone-cta--accent {
  background: #fff;
  border: 1px solid var(--accent-ui-border);
  box-shadow: 0 2px 8px var(--accent-ui-glow);
}

.phone-cta--ghost {
  border: 1px solid #ececec;
  background: #fff;
  margin-top: auto;
}

.phone-cta--soft {
  background: #f2f2f2;
  margin-top: auto;
}

.phone-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.phone-chip {
  border: 1px solid #ececec;
  background: #fff;
  border-radius: 11px;
  padding: 9px 4px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  color: #8a8a8a;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.phone-chip--active {
  border-color: var(--accent-ui-border);
  color: var(--text);
  box-shadow: 0 2px 8px var(--accent-ui-glow);
}

.phone-chip--done {
  color: #5a8f66;
}

.phone-muscle {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 9.5px;
}

.phone-muscle__label {
  font-weight: 500;
  color: var(--faint);
  white-space: nowrap;
}

.phone-muscle__val {
  font-weight: 600;
  color: var(--text);
}

.phone-stats {
  display: flex;
  gap: 6px;
}

.phone-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.phone-stat__box {
  width: 100%;
  min-height: 40px;
  background: #f7f7f7;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.phone-stat__box--sm {
  font-size: 11px;
  font-weight: 700;
}

.phone-stat__label {
  font-size: 8px;
  font-weight: 600;
  color: var(--faint);
}

.phone-diary {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone-diary__item {
  border: 1px solid #ececec;
  border-radius: 11px;
  padding: 8px 11px;
}

.phone-diary__item--last {
  border-color: var(--accent-ui-border);
  box-shadow: 0 2px 8px var(--accent-ui-glow);
}

.phone-diary__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.lp-intro {
  padding-top: 40px;
  padding-bottom: 8px;
}

.lp-intro__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 16px;
}

.lp-intro__lead {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 14px;
}

.lp-features {
  padding-top: 60px;
  padding-bottom: 100px;
}

.lp-features__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 10px;
}

.lp-features__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--faint);
  margin: 0 0 28px;
}

.lp-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface-2);
  border-radius: var(--r-xl);
  padding: 28px 24px;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

.lp-footer {
  border-top: 1px solid var(--line-soft);
}

.lp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.lp-footer__copy {
  font-size: 12.5px;
  color: var(--faint-2);
  font-family: var(--font-display);
}

@media (max-width: 1024px) {
  .lp-header {
    padding: 20px 0;
  }

  .lp-hero {
    flex-direction: column;
    gap: 36px;
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .lp-hero__copy {
    max-width: none;
    text-align: center;
  }

  .lp-hero__title {
    font-size: 44px;
  }

  .lp-hero__sub {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-hero__cta {
    justify-content: center;
  }

  .lp-phones {
    width: 100%;
    max-width: 480px;
    height: 440px;
  }

  .phone--side {
    width: 170px;
    height: 360px;
    padding: 14px 11px;
  }

  .phone--side-left {
    left: 2%;
  }

  .phone--side-right {
    right: 2%;
  }

  .phone--main {
    width: 220px;
    height: 460px;
    padding: 18px 14px;
  }

  .phone__head {
    font-size: 14px;
  }

  .phone--main .phone__head {
    font-size: 15px;
  }

  .phone-card__title {
    font-size: 11.5px;
  }

  .lp-features {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .lp-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .lp-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: var(--r-full);
    background: var(--surface);
    cursor: pointer;
  }

  .lp-burger__bar {
    height: 1.5px;
    border-radius: 2px;
    background: var(--text-2);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease;
  }

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

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

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

  .lp-header__inner {
    gap: 10px;
  }

  .lp-header__inner > .lang-switch {
    margin-left: auto;
  }

  .lp-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 24px 32px;
    border-left: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-card);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .is-nav-open .lp-header__nav {
    transform: translateX(0);
    visibility: visible;
  }

  .lp-header__nav > * {
    opacity: 0;
    transform: translateX(14px);
    transition: opacity 0.26s ease, transform 0.26s ease;
  }

  .is-nav-open .lp-header__nav > * {
    opacity: 1;
    transform: translateX(0);
  }

  .is-nav-open .lp-header__nav > :nth-child(2) {
    transition-delay: 0.08s;
  }

  .is-nav-open .lp-header__nav > :nth-child(3) {
    transition-delay: 0.12s;
  }

  .is-nav-open .lp-header__nav > :nth-child(4) {
    transition-delay: 0.16s;
  }

  .is-nav-open .lp-header__nav > :nth-child(5) {
    transition-delay: 0.2s;
  }

  .is-nav-open .lp-header__nav > :nth-child(6) {
    transition-delay: 0.24s;
  }

  .is-nav-open .lp-header__nav > :nth-child(7) {
    transition-delay: 0.28s;
  }

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

  .lp-nav__close {
    display: block;
    position: relative;
    align-self: flex-end;
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: var(--r-full);
    background: var(--surface);
    cursor: pointer;
  }

  .lp-nav__close::before,
  .lp-nav__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--text-2);
  }

  .lp-nav__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .lp-nav__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .lp-header__nav .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
  }

  .lp-header__nav .nav-link.is-active {
    color: var(--accent);
  }

  .is-nav-open,
  .is-nav-open body {
    overflow: hidden;
  }

  .lp-header__nav .btn--badge {
    align-self: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .lp-header {
    padding: 14px 0;
  }

  .lp-header__inner {
    min-height: 44px;
  }

  .lp-header .brand-lockup {
    height: 44px;
  }

  .lp-header .brand-lockup__logo {
    height: 26px;
  }

  .lp-header__nav {
    width: min(320px, 86vw);
    padding: 22px 22px 32px;
  }

  .lp-hero {
    gap: 28px;
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .lp-hero__copy .pill {
    margin-bottom: 16px;
  }

  .lp-hero__title {
    font-size: 34px;
    letter-spacing: -0.7px;
    margin-bottom: 14px;
  }

  .lp-hero__sub {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .lp-hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }

  .lp-hero__cta .btn {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    font-size: 13px;
  }

  .lp-phones {
    height: 390px;
    max-width: min(100%, 340px);
    margin-left: auto;
    margin-right: auto;
  }

  .lp-phones::before {
    width: 90%;
    height: 80%;
  }

  .phone--side {
    width: 132px;
    height: 280px;
    padding: 10px 8px;
    gap: 5px;
    opacity: 0.92;
  }

  .phone--side .phone-cta,
  .phone--side .phone-label,
  .phone--side .phone-progress-row,
  .phone--side .phone-progress {
    display: none;
  }

  .phone--side .phone-card--accent {
    gap: 4px;
  }

  .phone--side-left {
    left: 8px;
    top: 18%;
  }

  .phone--side-right {
    right: 8px;
    top: 22%;
  }

  .phone--main {
    width: 210px;
    height: 430px;
    padding: 16px 12px;
    gap: 6px;
  }

  .phone__head {
    font-size: 13px;
  }

  .phone--main .phone__head {
    font-size: 14px;
  }

  .phone-card {
    padding: 8px 10px;
  }

  .phone-card__title {
    font-size: 11px;
  }

  .phone-card__meta {
    font-size: 8px;
  }

  .phone-chip {
    min-height: 28px;
    padding: 6px 2px;
    font-size: 8px;
  }

  .phone-stat__box {
    min-height: 34px;
    font-size: 14px;
  }

  .phone-diary__title {
    font-size: 11px;
  }

  .lp-features {
    padding-top: 36px;
    padding-bottom: 56px;
  }

  .lp-features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .feature-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .feature-card__title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .feature-card__text {
    font-size: 12px;
    line-height: 1.45;
  }

  .lp-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .lp-footer__copy {
    order: 1;
  }

  .lp-footer__legal {
    gap: 10px 18px;
    font-size: 13px;
  }

  .lp-footer__legal a {
    color: var(--text-2);
  }

  .lp-footer__sep {
    display: none;
  }
}

@media (max-width: 480px) {
  .lp-hero__title {
    font-size: 30px;
  }

  .lp-phones {
    height: 400px;
    max-width: 260px;
  }

  .phone--side {
    display: none;
  }

  .phone--main {
    width: 100%;
    max-width: 240px;
    height: 480px;
  }
}

@media (max-width: 380px) {
  .lp-header .brand-lockup__logo {
    height: 23px;
  }

  .lp-hero__title {
    font-size: 28px;
  }

  .lp-phones {
    max-width: 230px;
    height: 380px;
  }

  .phone--main {
    max-width: 220px;
    height: 450px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .phone--side-left,
  .phone--side-right,
  .phone--main {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }

  .lp-header__nav,
  .lp-nav-backdrop,
  .lp-burger__bar {
    transition: none;
  }
}

.lp-page {
  padding-top: 40px;
  padding-bottom: 100px;
}

.lp-page__head {
  max-width: 720px;
  margin-bottom: 40px;
}

.lp-page__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 14px;
}

.lp-page__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

.lp-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.page-card {
  background: var(--surface-2);
  border-radius: var(--r-xl);
  padding: 28px 24px;
}

.page-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 12px;
}

.page-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 12px;
}

.page-card__text:last-child {
  margin-bottom: 0;
}

.page-card__list {
  margin: 14px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-card__list li {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

.lp-page__cta {
  margin: 36px 0 0;
}

.lp-qa {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lp-qa__item {
  background: var(--surface-2);
  border-radius: var(--r-xl);
  padding: 24px 22px;
}

.lp-qa__q {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 10px;
}

.lp-qa__a {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

.lp-faq__more {
  margin: 22px 0 0;
}

.lp-faq__more a,
.lp-legal__body a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.lp-faq__more a:hover,
.lp-legal__body a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .lp-page__grid,
  .lp-qa {
    grid-template-columns: 1fr;
  }

  .lp-page__title {
    font-size: 32px;
  }

  .lp-page {
    padding-bottom: 72px;
  }
}
