*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --lpc-ink: #14241f;
  --lpc-muted: #60746e;
  --lpc-soft: #f8fff7;
  --lpc-paper: rgba(255, 255, 250, 0.92);
  --lpc-paper-strong: rgba(255, 255, 250, 0.98);
  --lpc-line: rgba(198, 225, 205, 0.82);
  --lpc-gold: #e8be54;
  --lpc-green: #25cc78;
  --lpc-teal: #29b7aa;
  --lpc-pink: #e469ad;
  --lpc-violet: #9f83e8;
  --lpc-shadow: 0 24px 70px rgba(27, 68, 51, 0.16);
}

html {
  min-height: 100%;
  overflow-x: hidden;
  background: #effaf4;
  color: var(--lpc-ink);
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

body.lpc-site {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(240, 252, 244, 0.86), rgba(255, 250, 239, 0.88)),
    var(--lpc-fountain) center top / cover fixed,
    #effaf4;
  color: var(--lpc-ink);
}

body.lpc-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--lpc-fountain) center center / cover no-repeat;
  filter: saturate(1.05) brightness(1.02);
}

body.lpc-site::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(95, 218, 161, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 218, 161, 0.08) 1px, transparent 1px),
    rgba(245, 255, 248, 0.58);
  background-size: 32px 32px, 32px 32px, auto;
  pointer-events: none;
}

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

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

.lpc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(224, 190, 89, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 250, 0.82);
  box-shadow: 0 14px 44px rgba(28, 64, 52, 0.1);
  backdrop-filter: blur(18px);
}

.lpc-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--lpc-ink);
  font-weight: 800;
  text-decoration: none;
}

.lpc-brand__logo {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}

.lpc-brand__copy {
  display: block;
}

.lpc-brand small {
  display: block;
  margin-top: 2px;
  color: var(--lpc-muted);
  font-size: 11px;
  font-weight: 700;
}

.lpc-nav-toggle {
  display: none;
}

.lpc-nav-toggle span {
  display: block;
}

.lpc-menu {
  display: contents;
}

.lpc-nav {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.lpc-nav a,
.lpc-link-button,
.lpc-button {
  min-height: 42px;
  border-radius: 8px;
  font-weight: 800;
}

.lpc-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #25433a;
  font-size: 14px;
}

.lpc-nav a:hover,
.lpc-nav a.is-current {
  background: rgba(232, 190, 84, 0.16);
  color: #0d6f59;
}

.lpc-header__actions {
  display: inline-flex;
  gap: 10px;
  justify-content: flex-end;
}

.lpc-link-button,
.lpc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 204, 120, 0.28);
  padding: 0 18px;
  background: rgba(255, 255, 250, 0.86);
  color: #173129;
  box-shadow: 0 12px 30px rgba(22, 70, 48, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.lpc-button {
  border-color: rgba(232, 190, 84, 0.55);
  background: linear-gradient(135deg, var(--lpc-green), #9cea3f);
  color: #fffefa;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.lpc-button--small {
  min-height: 40px;
}

.lpc-link-button:hover,
.lpc-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(22, 70, 48, 0.14);
}

.lpc-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 56px;
}

.lpc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 26px;
  align-items: center;
  min-height: min(720px, calc(100svh - 126px));
  padding: 54px;
  border: 1px solid rgba(232, 190, 84, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(11, 56, 50, 0.78), rgba(16, 82, 74, 0.52)),
    var(--lpc-fountain) center center / cover no-repeat;
  box-shadow: var(--lpc-shadow);
  color: #fffefa;
}

.lpc-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--lpc-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lpc-hero h1,
.lpc-page-hero h1,
.lpc-auth h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lpc-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 250, 0.86);
  font-size: 18px;
  line-height: 1.9;
}

.lpc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lpc-hero__visual {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: end center;
}

.lpc-hero__visual img {
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(3, 33, 27, 0.34));
}

.lpc-hero__bubble,
.lpc-el-note {
  border: 1px solid rgba(232, 190, 84, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 250, 0.92);
  color: #1b332d;
  box-shadow: 0 16px 44px rgba(14, 51, 40, 0.16);
}

.lpc-hero__bubble {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: min(300px, 86%);
  padding: 16px;
  font-weight: 800;
  line-height: 1.7;
}

.lpc-section {
  margin-top: 30px;
}

.lpc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.lpc-price-card {
  display: grid;
  gap: 16px;
  align-content: start;
  border: 1px solid rgba(198, 225, 205, 0.86);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 250, 0.92);
  box-shadow: 0 18px 48px rgba(27, 68, 51, 0.1);
}

.lpc-price-card--featured {
  border-color: rgba(232, 190, 84, 0.78);
  background:
    linear-gradient(135deg, rgba(239, 255, 247, 0.96), rgba(255, 250, 231, 0.98)),
    rgba(255, 255, 250, 0.94);
  transform: translateY(-6px);
}

.lpc-price-card h2,
.lpc-price-card p,
.lpc-price-card ul {
  margin: 0;
}

.lpc-price-card h2 {
  font-size: 28px;
  line-height: 1.25;
}

.lpc-price-card p,
.lpc-price-card li {
  color: var(--lpc-muted);
  line-height: 1.75;
  font-weight: 700;
}

.lpc-price-card ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
}

.lpc-price-card__price {
  color: #0d6f59;
  font-size: 30px;
  line-height: 1;
}

.lpc-pricing-note {
  max-width: 880px;
  margin: 0 auto 26px;
  padding: 14px 16px;
  border: 1px solid rgba(2, 120, 64, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: var(--lpc-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

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

.lpc-card,
.lpc-info,
.lpc-band,
.lpc-page-hero,
.lpc-auth__guide,
.lpc-auth__panel {
  border: 1px solid var(--lpc-line);
  border-radius: 8px;
  background: var(--lpc-paper);
  box-shadow: 0 18px 56px rgba(34, 88, 64, 0.1);
  backdrop-filter: blur(16px);
}

.lpc-card {
  padding: 22px;
}

.lpc-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 14px;
}

.lpc-card h2,
.lpc-info h2,
.lpc-band h2 {
  margin: 0;
  color: #132a23;
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: 0;
}

.lpc-card p,
.lpc-info p,
.lpc-band p,
.lpc-page-hero p {
  margin: 10px 0 0;
  color: var(--lpc-muted);
  line-height: 1.8;
}

.lpc-showcase {
  padding: 30px;
  border: 1px solid rgba(232, 190, 84, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 250, 0.96), rgba(239, 255, 248, 0.9) 54%, rgba(255, 244, 251, 0.86)),
    var(--lpc-paper);
  box-shadow: 0 20px 60px rgba(34, 88, 64, 0.1);
  overflow: hidden;
}

.lpc-showcase__intro {
  max-width: 820px;
}

.lpc-showcase__intro h2,
.lpc-showcase__caption h3,
.lpc-feature-panel h3 {
  margin: 0;
  color: #132a23;
  line-height: 1.35;
  letter-spacing: 0;
}

.lpc-showcase__intro h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.lpc-showcase__intro p,
.lpc-showcase__caption p,
.lpc-feature-panel p {
  margin: 10px 0 0;
  color: var(--lpc-muted);
  line-height: 1.85;
}

.lpc-showcase__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
}

.lpc-showcase__screen,
.lpc-feature-panel__media {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(37, 204, 120, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 250, 0.96);
  box-shadow: 0 22px 50px rgba(23, 64, 50, 0.13);
  overflow: hidden;
}

.lpc-showcase__screen {
  aspect-ratio: 16 / 9;
}

.lpc-showcase__screen::before,
.lpc-feature-panel__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 250, 0.64);
  border-radius: inherit;
  pointer-events: none;
}

.lpc-showcase__screen img,
.lpc-feature-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lpc-showcase__caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(232, 190, 84, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 250, 0.94), rgba(255, 250, 232, 0.78));
}

.lpc-showcase__caption .lpc-link-button {
  width: max-content;
  margin-top: 18px;
}

.lpc-showcase__label,
.lpc-feature-panel__kicker {
  display: inline-flex;
  width: max-content;
  margin-bottom: 8px;
  color: #0e8f66;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.lpc-showcase__caption h3,
.lpc-feature-panel h3 {
  font-size: 24px;
}

.lpc-feature-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.lpc-feature-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--lpc-line);
  border-radius: 8px;
  background: rgba(255, 255, 250, 0.94);
  box-shadow: 0 18px 44px rgba(34, 88, 64, 0.08);
  overflow: hidden;
}

.lpc-feature-panel__media {
  aspect-ratio: 16 / 10;
  border-width: 0 0 1px;
  border-radius: 0;
  box-shadow: none;
}

.lpc-feature-panel__body {
  position: relative;
  display: grid;
  min-height: 230px;
  align-content: start;
  padding: 22px;
}

.lpc-feature-panel__icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 14px;
  padding: 8px;
  border: 1px solid rgba(232, 190, 84, 0.34);
  border-radius: 8px;
  background: rgba(244, 255, 239, 0.72);
  filter: drop-shadow(0 12px 18px rgba(34, 88, 64, 0.1));
}

.lpc-feature-panel:nth-child(2) .lpc-feature-panel__icon {
  background: rgba(255, 244, 251, 0.78);
}

.lpc-feature-panel:nth-child(3) .lpc-feature-panel__icon {
  background: rgba(241, 251, 255, 0.78);
}

.lpc-band {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
}

.lpc-page-hero {
  padding: 42px;
}

.lpc-page-hero h1 {
  font-size: clamp(32px, 4vw, 54px);
}

.lpc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lpc-info {
  padding: 24px;
}

.lpc-auth {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  min-height: min(740px, calc(100svh - 126px));
  border: 1px solid rgba(232, 190, 84, 0.42);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(237, 255, 238, 0.94), rgba(255, 250, 242, 0.96)),
    var(--lpc-fountain) center / cover no-repeat;
  box-shadow: var(--lpc-shadow);
}

.lpc-auth__guide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-width: 0 1px 0 0;
  border-radius: 0;
  padding: 36px;
  background: rgba(243, 255, 238, 0.76);
  box-shadow: none;
}

.lpc-auth__guide p {
  color: var(--lpc-muted);
  line-height: 1.85;
}

.lpc-auth__guide img {
  align-self: center;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(34, 88, 64, 0.15));
}

.lpc-el-note {
  padding: 14px 16px;
  font-weight: 800;
  line-height: 1.7;
}

.lpc-auth__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  border-radius: 0;
  padding: 44px;
  background: rgba(255, 255, 250, 0.9);
  box-shadow: none;
}

.lpc-form {
  display: grid;
  gap: 18px;
}

.lpc-social-auth {
  display: grid;
  gap: 14px;
}

.lpc-social-auth__button {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 13px 16px;
  border: 1px solid rgba(37, 204, 120, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 250, 0.96), rgba(239, 255, 246, 0.9));
  box-shadow: 0 18px 42px rgba(22, 70, 48, 0.1);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.lpc-social-auth__button:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 190, 84, 0.62);
  box-shadow: 0 22px 50px rgba(22, 70, 48, 0.14);
}

.lpc-social-auth__button strong,
.lpc-social-auth__button small {
  display: block;
}

.lpc-social-auth__button strong {
  color: #153027;
  font-size: 18px;
  line-height: 1.25;
}

.lpc-social-auth__button small {
  margin-top: 4px;
  color: var(--lpc-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.lpc-social-auth__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #fffefa;
  font-weight: 900;
  letter-spacing: 0;
}

.lpc-social-auth__button--google .lpc-social-auth__mark {
  background: linear-gradient(135deg, #fffefa, #eaf9ff);
  color: #246154;
  border: 1px solid rgba(37, 204, 120, 0.28);
}

.lpc-social-auth__button--line .lpc-social-auth__mark {
  background: linear-gradient(135deg, #06c755, #9cea3f);
  font-size: 11px;
}

.lpc-auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 22px 0;
  color: var(--lpc-muted);
  font-size: 12px;
  font-weight: 900;
}

.lpc-auth-divider::before,
.lpc-auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(198, 225, 205, 0.92);
}

.lpc-page-signup .lpc-auth-divider,
.lpc-page-signup .lpc-auth-divider + .lpc-form {
  display: none;
}

.lpc-oauth-email {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(37, 204, 120, 0.2);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(242, 255, 247, 0.96), rgba(255, 252, 236, 0.9));
  box-shadow: 0 16px 38px rgba(24, 74, 52, 0.08);
}

.lpc-oauth-email h2,
.lpc-oauth-email p {
  margin: 0;
}

.lpc-oauth-email h2 {
  font-size: 24px;
  line-height: 1.3;
}

.lpc-oauth-email p {
  color: var(--lpc-muted);
  line-height: 1.8;
}

.lpc-oauth-email-pending .lpc-social-auth {
  display: none;
}

.lpc-form__hint--center {
  text-align: center;
}

.lpc-admin-login-panel {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(232, 190, 84, 0.42);
  border-radius: 14px;
  background: rgba(255, 250, 238, 0.74);
}

.lpc-admin-login-panel__label {
  width: max-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(232, 190, 84, 0.18);
  color: #8b6321;
  font-size: 12px;
  font-weight: 900;
}

.lpc-admin-login-panel p {
  margin: 0;
  color: var(--lpc-muted);
  font-weight: 800;
  line-height: 1.7;
}

.lpc-form--admin-login .lpc-link-button {
  width: 100%;
}

.lpc-form label {
  display: grid;
  gap: 8px;
  color: #153027;
  font-size: 15px;
  font-weight: 900;
}

.lpc-form input[type="text"],
.lpc-form input[type="email"],
.lpc-form input[type="password"] {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(37, 204, 120, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 250, 0.86);
  color: var(--lpc-ink);
  font: inherit;
  font-size: 16px;
  padding: 0 16px;
  outline: none;
  box-shadow: 0 10px 30px rgba(22, 70, 48, 0.06);
}

.lpc-form input:focus {
  border-color: rgba(37, 204, 120, 0.86);
  box-shadow: 0 0 0 4px rgba(37, 204, 120, 0.12);
}

.lpc-check {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  align-items: center;
  gap: 9px !important;
}

.lpc-check input {
  width: 18px;
  height: 18px;
}

.lpc-form__hint,
.lpc-auth__links {
  margin: 0;
  color: var(--lpc-muted);
  line-height: 1.7;
}

.lpc-auth__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  font-weight: 800;
}

.lpc-auth__links--subtle {
  justify-content: center;
  color: var(--lpc-muted);
  font-size: 13px;
}

.lpc-message {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.7;
}

.lpc-message--ok {
  border: 1px solid rgba(37, 204, 120, 0.32);
  background: rgba(233, 255, 240, 0.88);
  color: #106545;
}

.lpc-message--error {
  border: 1px solid rgba(224, 84, 96, 0.32);
  background: rgba(255, 239, 241, 0.9);
  color: #9e2f41;
}

.lpc-message-band {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(232, 190, 84, 0.44);
  background: linear-gradient(135deg, rgba(255, 250, 236, 0.94), rgba(242, 255, 247, 0.9));
  color: #4e3b16;
}

.lpc-message-band p {
  margin: 0;
  color: var(--lpc-muted);
  font-weight: 800;
}

.lpc-consent-box {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(37, 204, 120, 0.24);
  border-radius: 14px;
  padding: 16px;
  background: rgba(242, 255, 247, 0.72);
  color: var(--lpc-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.lpc-consent-box p {
  margin: 0;
}

.lpc-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: #173128;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.7;
}

.lpc-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.lpc-consent a {
  margin: 0 2px;
}

.lpc-consent--form {
  margin: 2px 0 0;
  padding: 14px;
  border: 1px solid rgba(37, 204, 120, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 250, 0.74);
}

.lpc-consent-box.is-attention {
  animation: lpcConsentPulse 900ms ease;
}

.lpc-social-auth__button.is-disabled {
  opacity: 0.55;
  filter: grayscale(0.2);
}

.lpc-social-auth__button.is-disabled:hover {
  transform: none;
  border-color: rgba(37, 204, 120, 0.28);
  box-shadow: 0 18px 42px rgba(22, 70, 48, 0.1);
}

.lpc-legal {
  display: grid;
  gap: 22px;
}

.lpc-legal-list {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(198, 225, 205, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 250, 0.86);
}

.lpc-legal-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(198, 225, 205, 0.62);
}

.lpc-legal-row:last-child {
  border-bottom: 0;
}

.lpc-legal-row dt,
.lpc-legal-row dd {
  margin: 0;
  padding: 16px 18px;
  line-height: 1.8;
}

.lpc-legal-row dt {
  background: rgba(233, 255, 240, 0.72);
  color: #153027;
  font-weight: 900;
}

.lpc-legal-row dd {
  color: var(--lpc-muted);
  font-weight: 800;
}

.lpc-legal-updated {
  color: var(--lpc-muted);
  font-size: 13px;
  font-weight: 800;
}

.lpc-contact-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(232, 190, 84, 0.42);
  border-radius: 14px;
  padding: 24px;
  background: rgba(255, 250, 236, 0.72);
}

.lpc-contact-card__head {
  display: grid;
  gap: 8px;
}

.lpc-contact-card h2,
.lpc-contact-card p {
  margin: 0;
}

.lpc-contact-form {
  display: grid;
  gap: 16px;
}

.lpc-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lpc-contact-form label {
  display: grid;
  gap: 8px;
  color: #153027;
  font-size: 15px;
  font-weight: 900;
}

.lpc-contact-form input[type="text"],
.lpc-contact-form input[type="email"],
.lpc-contact-form input[type="url"],
.lpc-contact-form select,
.lpc-contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(37, 204, 120, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 250, 0.9);
  color: var(--lpc-ink);
  font: inherit;
  font-size: 16px;
  padding: 0 14px;
  outline: none;
  box-shadow: 0 10px 30px rgba(22, 70, 48, 0.06);
}

.lpc-contact-form textarea {
  min-height: 180px;
  padding-block: 12px;
  resize: vertical;
}

.lpc-contact-form input:focus,
.lpc-contact-form select:focus,
.lpc-contact-form textarea:focus {
  border-color: rgba(37, 204, 120, 0.86);
  box-shadow: 0 0 0 4px rgba(37, 204, 120, 0.12);
}

.lpc-contact-products {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lpc-contact-products label,
.lpc-contact-consent {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
}

.lpc-contact-products label {
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(37, 204, 120, 0.24);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 250, 0.82);
}

.lpc-contact-products input,
.lpc-contact-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.lpc-contact-consent {
  border: 1px solid rgba(37, 204, 120, 0.24);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255, 255, 250, 0.74);
  line-height: 1.7;
}

.lpc-contact-legacy {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(232, 190, 84, 0.52);
  border-radius: 12px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 250, 236, 0.9), rgba(239, 255, 246, 0.86));
  box-shadow: 0 18px 42px rgba(22, 70, 48, 0.08);
}

.lpc-contact-legacy[hidden] {
  display: none;
}

.lpc-contact-legacy__head {
  display: grid;
  gap: 8px;
}

.lpc-contact-legacy__head h3,
.lpc-contact-legacy__head p {
  margin: 0;
}

.lpc-contact-legacy__head h3 {
  color: #153027;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
}

.lpc-contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lpc-contact-status {
  min-height: 24px;
  color: var(--lpc-muted);
  font-weight: 800;
  line-height: 1.7;
}

.lpc-contact-status.is-success {
  color: #106545;
}

.lpc-contact-status.is-error {
  color: #9e2f41;
}

.lpc-thanks {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  border: 1px solid rgba(232, 190, 84, 0.42);
  border-radius: 14px;
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 250, 0.92), rgba(255, 255, 250, 0.42) 34%, rgba(239, 255, 246, 0.72) 100%),
    rgba(255, 250, 236, 0.76);
  box-shadow: 0 22px 70px rgba(22, 70, 48, 0.12);
}

.lpc-thanks__visual {
  display: grid;
  place-items: center;
  min-height: 260px;
  border-radius: 12px;
  background: rgba(255, 255, 250, 0.58);
  box-shadow: inset 0 0 0 1px rgba(37, 204, 120, 0.16);
}

.lpc-thanks__visual img {
  width: min(100%, 300px);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(22, 70, 48, 0.18));
}

.lpc-thanks__body {
  display: grid;
  gap: 18px;
}

.lpc-thanks__body h2,
.lpc-thanks__body p {
  margin: 0;
}

.lpc-thanks__body h2 {
  color: #153027;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.18;
}

.lpc-thanks__body > p {
  color: var(--lpc-muted);
  font-size: 18px;
  line-height: 1.9;
}

.lpc-thanks__note {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(232, 190, 84, 0.5);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 250, 236, 0.82);
}

.lpc-thanks__note strong {
  color: #7a4c10;
}

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

.lpc-thanks__steps article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(37, 204, 120, 0.22);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255, 255, 250, 0.7);
}

.lpc-thanks__steps span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #25cc78;
  color: #fff;
  font-weight: 900;
}

.lpc-thanks__steps h3 {
  margin: 0;
  color: #153027;
  font-size: 16px;
  line-height: 1.4;
}

.lpc-thanks__steps p {
  color: var(--lpc-muted);
  font-size: 14px;
  line-height: 1.7;
}

@keyframes lpcConsentPulse {
  0%,
  100% {
    box-shadow: none;
  }
  40% {
    box-shadow: 0 0 0 4px rgba(37, 204, 120, 0.16);
  }
}

.lpc-footer {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 24px;
  border: 1px solid rgba(198, 225, 205, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 250, 0.76);
  color: var(--lpc-muted);
  backdrop-filter: blur(14px);
}

.lpc-footer strong {
  color: #132a23;
}

.lpc-footer p {
  margin: 8px 0 0;
}

.lpc-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  font-weight: 800;
}

@media (max-width: 980px) {
  .lpc-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  .lpc-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
  }

  .lpc-nav-toggle span {
    height: 2px;
    border-radius: 2px;
    background: #1c4034;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .lpc-menu {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  .lpc-header.is-open .lpc-menu {
    display: flex;
  }

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

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

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

  .lpc-nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
  }

  .lpc-nav a {
    min-height: 48px;
  }

  .lpc-header__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-content: stretch;
  }

  .lpc-hero,
  .lpc-auth {
    grid-template-columns: 1fr;
  }

  .lpc-hero {
    padding: 34px;
  }

  .lpc-auth__guide {
    border-width: 0 0 1px;
  }

  .lpc-grid-3,
  .lpc-list,
  .lpc-pricing-grid,
  .lpc-feature-showcase {
    grid-template-columns: 1fr;
  }

  .lpc-price-card--featured {
    transform: none;
  }

  .lpc-showcase__stage {
    grid-template-columns: 1fr;
  }

  .lpc-band,
  .lpc-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .lpc-header,
  .lpc-main,
  .lpc-footer {
    width: min(100% - 20px, 1180px);
  }

  .lpc-header {
    margin-top: 10px;
    padding: 10px;
  }

  .lpc-brand small {
    display: none;
  }

  .lpc-header__actions {
    grid-template-columns: 1fr;
  }

  .lpc-nav a,
  .lpc-link-button,
  .lpc-button {
    min-height: 44px;
    padding-inline: 12px;
    white-space: nowrap;
  }

  .lpc-main {
    padding-top: 18px;
  }

  .lpc-hero,
  .lpc-showcase,
  .lpc-page-hero,
  .lpc-card,
  .lpc-info,
  .lpc-band,
  .lpc-auth__guide,
  .lpc-auth__panel {
    padding: 22px;
  }

  .lpc-showcase__stage {
    gap: 16px;
    margin-top: 18px;
  }

  .lpc-showcase__caption {
    padding: 18px;
  }

  .lpc-showcase__caption .lpc-link-button {
    width: 100%;
  }

  .lpc-feature-panel__body {
    min-height: auto;
    padding: 18px;
  }

  .lpc-hero {
    min-height: auto;
  }

  .lpc-hero h1,
  .lpc-page-hero h1,
  .lpc-auth h1 {
    font-size: 34px;
  }

  .lpc-hero p {
    font-size: 16px;
  }

  .lpc-actions,
  .lpc-auth__links {
    flex-direction: column;
  }

  .lpc-hero__visual {
    min-height: 260px;
  }

  .lpc-hero__visual img {
    max-height: 290px;
  }

  .lpc-hero__bubble {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .lpc-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }

  .lpc-card img {
    width: 70px;
    height: 70px;
    margin: 0;
  }

  .lpc-card h2,
  .lpc-card p {
    grid-column: 2;
  }

  .lpc-card h2 {
    font-size: 20px;
  }

  .lpc-auth__guide img {
    max-height: 260px;
  }

  .lpc-legal-row {
    grid-template-columns: 1fr;
  }

  .lpc-contact-grid {
    grid-template-columns: 1fr;
  }

  .lpc-thanks {
    grid-template-columns: 1fr;
  }

  .lpc-thanks__visual {
    min-height: 220px;
  }

  .lpc-thanks__visual img {
    max-height: 280px;
  }

  .lpc-thanks__steps {
    grid-template-columns: 1fr;
  }

  .lpc-legal-row dt,
  .lpc-legal-row dd {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.lpc-checkout-story {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 31, 25, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lpc-checkout-story.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lpc-checkout-story__panel {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(244, 189, 58, 0.46);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(151, 255, 209, 0.22), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(255, 226, 125, 0.18), transparent 32%),
    rgba(255, 255, 250, 0.98);
  color: var(--lpc-ink);
  box-shadow: 0 32px 90px rgba(8, 31, 25, 0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}

.lpc-checkout-story.is-visible .lpc-checkout-story__panel {
  transform: translateY(0) scale(1);
}

.lpc-checkout-story__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 143, 110, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 250, 0.94);
  color: var(--lpc-ink);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

.lpc-checkout-story__eyebrow {
  margin: 0 0 8px;
  color: var(--lpc-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lpc-checkout-story h2 {
  margin: 0 52px 12px 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.lpc-checkout-story p {
  margin: 0 0 18px;
  color: var(--lpc-muted);
  font-weight: 700;
  line-height: 1.9;
}

.lpc-checkout-story ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lpc-checkout-story li {
  position: relative;
  padding-left: 24px;
  font-weight: 850;
  line-height: 1.7;
}

.lpc-checkout-story li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22d77d, #f4bd3a);
  box-shadow: 0 0 0 4px rgba(34, 215, 125, 0.12);
}

.lpc-checkout-story__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--lpc-muted);
  font-size: 12px;
  font-weight: 900;
}

.lpc-checkout-story__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 143, 110, 0.18);
}

.lpc-checkout-story__dot.is-active {
  width: 30px;
  background: linear-gradient(135deg, #22d77d, #a9f34a);
  box-shadow: 0 8px 18px rgba(34, 215, 125, 0.22);
}

.lpc-checkout-story__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.lpc-checkout-story__button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(15, 143, 110, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 250, 0.95);
  color: var(--lpc-primary);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lpc-checkout-story__button--primary {
  border-color: rgba(244, 189, 58, 0.55);
  background: linear-gradient(135deg, #22d77d, #a9f34a);
  color: #fffefa;
  box-shadow: 0 16px 34px rgba(57, 216, 112, 0.26);
}

.lpc-checkout-story__button:disabled {
  cursor: wait;
  opacity: 0.68;
}

@media (max-width: 760px) {
  .lpc-checkout-story {
    align-items: end;
    padding: 0;
  }

  .lpc-checkout-story__panel {
    width: 100%;
    max-height: 88vh;
    overflow: auto;
    border-radius: 26px 26px 0 0;
  }

  .lpc-checkout-story__actions {
    display: grid;
  }

  .lpc-checkout-story__button {
    width: 100%;
  }
}
