/* AI内製化サポート デジ太朗 — LP / Auth / Members / Subscribe */

:root {
  --lp-bg: #ffffff;
  --lp-bg-soft: #f6f3ec;
  --lp-bg-tint: #fbf9f4;
  --lp-navy: #1c2845;
  --lp-navy-deep: #131c33;
  --lp-navy-soft: #2d3a5c;
  --lp-ink: #1c2845;
  --lp-ink-mid: #4a5168;
  --lp-ink-dim: #6c7287;
  --lp-ink-fade: #a3a8b8;
  --lp-accent: #c8704e;
  --lp-accent-deep: #b15c3a;
  --lp-accent-soft: #e4a088;
  --lp-accent-tint: #faece5;
  --lp-border: #e6dfd0;
  --lp-border-soft: #efe9dc;
  --lp-border-strong: #d8cbb8;
  --lp-ok: #6fa875;
  --lp-shadow-sm: 0 2px 8px rgba(28, 40, 69, 0.06);
  --lp-shadow-md: 0 6px 24px rgba(28, 40, 69, 0.10);
  --lp-shadow-lg: 0 16px 48px rgba(28, 40, 69, 0.14);
  --lp-radius: 14px;
  --lp-radius-lg: 22px;
  --lp-maru: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --lp-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --lp-mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ───────── Reset / Base ───────── */
.lp-page * { box-sizing: border-box; }
.lp-page {
  margin: 0;
  padding: 0;
  background: var(--lp-bg);
  color: var(--lp-ink);
  font-family: var(--lp-sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.lp-page h1, .lp-page h2, .lp-page h3, .lp-page h4 {
  font-family: var(--lp-maru);
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--lp-ink);
}
.lp-page p { margin: 0 0 1em; }
.lp-page a { color: inherit; text-decoration: none; }
.lp-page img { max-width: 100%; display: block; }
.lp-page .nobreak { display: inline-block; }

.lp-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ───────── Header ───────── */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lp-border-soft);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.lp-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--lp-maru);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--lp-navy);
}
.lp-logo-main { font-size: 17px; }
.lp-logo-sub {
  font-size: 10.5px;
  color: var(--lp-accent);
  letter-spacing: 0.22em;
  font-weight: 500;
  margin-top: 4px;
}
.lp-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.lp-nav a {
  font-size: 13.5px;
  color: var(--lp-ink-mid);
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color 0.15s ease;
}
.lp-nav a:hover { color: var(--lp-accent); }
.lp-nav-cta {
  padding: 9px 18px;
  border: 1.5px solid var(--lp-navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-navy) !important;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lp-nav-cta:hover {
  background: var(--lp-navy);
  color: #fff !important;
}
.lp-burger { display: none; }

/* ───────── Buttons ───────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--lp-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lp-btn.lp-btn-primary {
  background: var(--lp-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(200, 112, 78, 0.28);
}
.lp-btn.lp-btn-primary:hover {
  background: var(--lp-accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 112, 78, 0.34);
}
.lp-btn.lp-btn-ghost {
  background: transparent;
  color: var(--lp-navy);
  border-color: var(--lp-navy);
}
.lp-btn.lp-btn-ghost:hover {
  background: var(--lp-navy);
  color: #fff;
}
.lp-btn.lp-btn-navy {
  background: var(--lp-navy);
  color: #fff;
}
.lp-btn.lp-btn-navy:hover {
  background: var(--lp-navy-deep);
  transform: translateY(-2px);
}
.lp-btn.lp-btn-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.30);
}
.lp-btn.lp-btn-line:hover {
  background: #05a846;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.38);
}
.lp-nav-line {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background: #06C755;
  color: #fff !important;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.lp-nav-line:hover {
  background: #05a846;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.35);
}
.lp-plan-line-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: #06C755;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.15s ease;
}
.lp-plan-line-link:hover { color: #05a846; }
.line-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: #06C755;
  color: #fff !important;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.45), 0 2px 6px rgba(0,0,0,0.10);
  animation: line-fab-pulse 2.6s ease-in-out infinite;
}
.line-fab:hover {
  background: #05a846;
  transform: translateY(-2px);
}
.line-fab-icon { font-size: 18px; }
@keyframes line-fab-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(6, 199, 85, 0.45), 0 2px 6px rgba(0,0,0,0.10); }
  50% { box-shadow: 0 8px 24px rgba(6, 199, 85, 0.65), 0 0 0 8px rgba(6, 199, 85, 0.10); }
}
@media (max-width: 720px) {
  .line-fab {
    right: 14px;
    bottom: 14px;
    padding: 12px 18px;
    font-size: 13px;
  }
  .line-fab-label { display: inline; }
}
.lp-btn-block { width: 100%; }
.lp-btn-lg {
  padding: 18px 40px;
  font-size: 15px;
  letter-spacing: 0.1em;
}

/* ───────── Hero ───────── */
.lp-hero {
  position: relative;
  padding: 120px 0 136px;
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(200, 112, 78, 0.08), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(28, 40, 69, 0.05), transparent 60%),
    linear-gradient(180deg, #fbf9f4 0%, #ffffff 100%);
  overflow: hidden;
  text-align: center;
}
.lp-hero::after {
  content: '';
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  background-image: url("media/png1.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  mix-blend-mode: multiply;
  filter: contrast(1.8) brightness(1.15);
  pointer-events: none;
  z-index: 0;
}
.lp-hero > .lp-container {
  position: relative;
  z-index: 1;
}
.lp-hero-eyebrow {
  display: inline-block;
  font-family: var(--lp-mono);
  font-size: 11.5px;
  letter-spacing: 0.34em;
  color: var(--lp-accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 6px 16px;
  background: var(--lp-accent-tint);
  border-radius: 999px;
}
.lp-hero h1 {
  font-size: 54px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  color: var(--lp-navy);
}
.lp-hero h1 .accent { color: var(--lp-accent); }
.lp-hero-lead {
  font-size: 16px;
  line-height: 1.95;
  color: var(--lp-ink-mid);
  max-width: 680px;
  margin: 0 0 48px;
  display: inline-block;
  text-align: left;
  letter-spacing: 0.03em;
}
.lp-hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.lp-hero-note {
  margin-top: 72px;
  font-size: 12.5px;
  color: var(--lp-ink-dim);
  letter-spacing: 0.08em;
}
.lp-hero-note::before {
  content: '●';
  color: var(--lp-ok);
  margin-right: 8px;
  font-size: 9px;
  vertical-align: middle;
}

/* ───────── Sections ───────── */
.lp-section {
  padding: 120px 0;
  position: relative;
}
.lp-section-tint { background: var(--lp-bg-soft); }
.lp-section-navy {
  background: var(--lp-navy);
  color: #fff;
}
.lp-section-navy h2,
.lp-section-navy h3 { color: #fff; }
.lp-section-navy .lp-section-lead { color: rgba(255, 255, 255, 0.78); }

.lp-section-head {
  text-align: center;
  margin-bottom: 72px;
}
.lp-section-eyebrow {
  display: inline-block;
  font-family: var(--lp-mono);
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--lp-accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-section-head h2 {
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
p.lp-section-lead {
  font-size: 15.5px;
  color: var(--lp-ink-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.95;
  letter-spacing: 0.03em;
  text-align: center;
}
.lp-narrative {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: left;
}
.lp-narrative p {
  font-size: 15.5px;
  line-height: 2.1;
  color: var(--lp-ink-mid);
  margin: 0 0 1.6em;
  letter-spacing: 0.03em;
}
.lp-narrative p:last-child { margin-bottom: 0; }

/* ───────── Problem (課題提起) ───────── */
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.lp-problem-card {
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-md);
}
.lp-problem-num {
  display: inline-block;
  font-family: var(--lp-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--lp-accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.lp-problem-card h3 {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.lp-problem-card p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--lp-ink-mid);
  margin: 0;
}

.lp-shift {
  margin: 24px auto 0;
  max-width: 760px;
  padding: 40px 48px;
  background: var(--lp-navy);
  color: #fff;
  border-radius: var(--lp-radius-lg);
  display: flex;
  align-items: center;
  gap: 28px;
}
.lp-shift-icon {
  font-size: 32px;
  flex-shrink: 0;
  color: var(--lp-accent-soft);
}
.lp-shift-text {
  font-size: 15.5px;
  line-height: 1.95;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.03em;
}
.lp-shift-text strong {
  color: var(--lp-accent-soft);
  font-weight: 700;
}

/* ───────── Content cards (ジャンルカード) ───────── */
.lp-genre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-genre-card {
  position: relative;
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.lp-genre-card.available {
  border-color: var(--lp-accent-soft);
  box-shadow: 0 4px 14px rgba(200, 112, 78, 0.08);
}
.lp-genre-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lp-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.lp-genre-status.live {
  background: var(--lp-accent-tint);
  color: var(--lp-accent-deep);
}
.lp-genre-status.soon {
  background: #f0eee8;
  color: var(--lp-ink-dim);
}
.lp-genre-card h3 {
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--lp-navy);
}
.lp-genre-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--lp-ink-mid);
  margin: 0;
  flex-grow: 1;
}
.lp-genre-card-cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lp-accent);
  letter-spacing: 0.04em;
}
.lp-genre-card.available:hover .lp-genre-card-cta {
  color: var(--lp-accent-deep);
}
.lp-genre-card-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 18px;
  background: var(--lp-accent);
  color: #fff !important;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(200, 112, 78, 0.22);
}
.lp-card-btn:hover {
  background: var(--lp-accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 112, 78, 0.32);
}
.lp-card-btn-secondary {
  background: var(--lp-navy);
  box-shadow: 0 4px 12px rgba(28, 40, 69, 0.18);
}
.lp-card-btn-secondary:hover {
  background: var(--lp-navy-deep);
  box-shadow: 0 6px 16px rgba(28, 40, 69, 0.28);
}
.lp-card-btn-disabled {
  background: rgba(28, 40, 69, 0.16) !important;
  color: rgba(28, 40, 69, 0.45) !important;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  font-weight: 600;
}
.lp-card-btn-disabled:hover {
  background: rgba(28, 40, 69, 0.16) !important;
  transform: none;
  box-shadow: none;
}

/* Coming Soon カード全体のディム */
.lp-genre-card-coming {
  background: var(--lp-bg-soft);
  border-color: var(--lp-border-soft);
  position: relative;
}
.lp-genre-card-coming::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 40, 69, 0.04);
  border-radius: var(--lp-radius);
  pointer-events: none;
}
.lp-genre-card-coming h3 { color: var(--lp-ink-mid); }
.lp-genre-card-coming p,
.lp-genre-card-coming .lp-cost-value { color: var(--lp-ink-dim); }
.lp-genre-card-coming .lp-cost-label { color: var(--lp-ink-fade); }
.lp-genre-card-coming:hover {
  transform: none;
  box-shadow: none;
}
.lp-genre-card-cost {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-cost-label {
  font-family: var(--lp-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--lp-accent);
  text-transform: uppercase;
}
.lp-cost-value {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--lp-ink-mid);
  letter-spacing: 0.02em;
}

/* ───────── Update notice ───────── */
.lp-update-notice {
  margin-top: 56px;
  padding: 28px 36px;
  background: var(--lp-bg-tint);
  border: 1px dashed var(--lp-border-strong);
  border-radius: var(--lp-radius);
  text-align: center;
  font-size: 15px;
  line-height: 1.95;
  color: var(--lp-ink-mid);
}
.lp-update-notice strong { color: var(--lp-navy); }

/* ───────── Buyout block (LP main offering) ───────── */
.lp-buyout {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, var(--lp-bg-tint) 100%);
  border: 2.5px solid var(--lp-accent);
  border-radius: var(--lp-radius-lg);
  padding: 44px 48px;
  margin-bottom: 56px;
  box-shadow: var(--lp-shadow-md);
}
.lp-buyout-eyebrow {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 7px 22px;
  border-radius: 999px;
  white-space: nowrap;
}
.lp-buyout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-buyout-info h3 {
  font-family: var(--lp-maru);
  font-size: 28px;
  font-weight: 700;
  color: var(--lp-navy);
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}
.lp-buyout-tag {
  font-size: 14.5px;
  color: var(--lp-ink-mid);
  margin: 0 0 22px;
  line-height: 1.85;
}
.lp-buyout-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-buyout-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--lp-ink);
}
.lp-buyout-features li strong { color: var(--lp-accent-deep); font-weight: 700; }
.lp-buyout-price-block {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
}
.lp-buyout-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.lp-buyout-yen {
  font-family: var(--lp-maru);
  font-size: 30px;
  font-weight: 700;
  color: var(--lp-navy);
}
.lp-buyout-num {
  font-family: var(--lp-maru);
  font-size: 56px;
  font-weight: 700;
  color: var(--lp-navy);
  line-height: 1;
  letter-spacing: 0.01em;
}
.lp-buyout-unit {
  font-size: 13px;
  color: var(--lp-ink-dim);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.lp-buyout-note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--lp-ink-dim);
  text-align: left;
}

.lp-support-divider {
  position: relative;
  margin: 8px 0 32px;
  text-align: center;
}
.lp-support-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px dashed var(--lp-border-strong);
  z-index: 0;
}
.lp-support-divider span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 20px;
  background: var(--lp-bg);
  color: var(--lp-ink-dim);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
p.lp-support-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--lp-ink-mid);
  letter-spacing: 0.03em;
}

/* ───────── Pricing ───────── */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.lp-pricing-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 32px;
}
.lp-plan {
  position: relative;
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-plan:hover {
  box-shadow: var(--lp-shadow-md);
}
.lp-plan.featured {
  border: 2px solid var(--lp-accent);
  background: linear-gradient(180deg, #fff 0%, var(--lp-bg-tint) 100%);
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-8px);
}
.lp-plan.featured:hover {
  box-shadow: var(--lp-shadow-lg);
}
.lp-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.lp-plan-name {
  font-family: var(--lp-maru);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--lp-navy);
}
.lp-plan-tag {
  font-size: 13px;
  color: var(--lp-ink-dim);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.lp-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-plan-price-num {
  font-family: var(--lp-maru);
  font-size: 44px;
  font-weight: 700;
  color: var(--lp-navy);
  line-height: 1;
  letter-spacing: 0.02em;
}
.lp-plan-price-yen { font-size: 22px; color: var(--lp-navy); font-weight: 700; }
.lp-plan-price-unit {
  font-size: 13px;
  color: var(--lp-ink-dim);
  margin-left: 4px;
  letter-spacing: 0.05em;
}
.lp-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex-grow: 1;
}
.lp-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-ink);
  border-bottom: 1px dashed var(--lp-border-soft);
}
.lp-plan-features li:last-child { border-bottom: 0; }
.lp-plan-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lp-accent-tint);
  color: var(--lp-accent);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 4px;
}
.lp-plan-features .lp-plan-x {
  background: #f0eee8;
  color: var(--lp-ink-fade);
}
.lp-plan-features .muted {
  color: var(--lp-ink-fade);
  text-decoration: line-through;
}

/* ───────── How it works ───────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.lp-step {
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lp-navy);
  color: #fff;
  font-family: var(--lp-mono);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}
.lp-step h3 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--lp-navy);
}
.lp-step p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--lp-ink-mid);
  margin: 0;
}

/* ───────── FAQ ───────── */
.lp-faq {
  max-width: 820px;
  margin: 0 auto;
}
.lp-faq-item {
  border-bottom: 1px solid var(--lp-border);
}
.lp-faq-item:first-child { border-top: 1px solid var(--lp-border); }
.lp-faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--lp-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: 0.03em;
}
.lp-faq-q::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--lp-accent-tint);
  color: var(--lp-accent);
  border-radius: 50%;
  font-family: var(--lp-mono);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 12px;
}
.lp-faq-q-text { flex-grow: 1; }
.lp-faq-arrow {
  color: var(--lp-ink-dim);
  font-size: 14px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.lp-faq-item.open .lp-faq-arrow { transform: rotate(180deg); }
.lp-faq-a {
  display: none;
  padding: 0 4px 24px 44px;
  font-size: 14.5px;
  line-height: 2;
  color: var(--lp-ink-mid);
}
.lp-faq-item.open .lp-faq-a { display: block; }

/* ───────── About ───────── */
.lp-about {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.lp-about-card {
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 40px;
  box-shadow: var(--lp-shadow-sm);
}
.lp-about-card-eyebrow {
  font-family: var(--lp-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--lp-accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.lp-about-card h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.lp-about-card .lp-about-role {
  font-size: 13px;
  color: var(--lp-ink-dim);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.lp-about-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--lp-ink-mid);
}
.lp-about-meta li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--lp-border-soft);
  display: flex;
  gap: 12px;
}
.lp-about-meta li:last-child { border-bottom: 0; }
.lp-about-meta .label {
  flex-shrink: 0;
  width: 80px;
  color: var(--lp-ink-dim);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.lp-about-text h3 {
  font-size: 26px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.lp-about-text p {
  font-size: 15.5px;
  line-height: 2.05;
  color: var(--lp-ink-mid);
}
.lp-about-text p strong { color: var(--lp-navy); }

/* ───────── Final CTA ───────── */
.lp-final-cta {
  text-align: center;
}
.lp-final-cta h2 {
  font-size: 36px;
  line-height: 1.45;
  margin-bottom: 18px;
  color: #fff;
}
.lp-final-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
}
.lp-final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-final-cta .lp-btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.lp-final-cta .lp-btn-ghost:hover {
  background: #fff;
  color: var(--lp-navy);
}

/* ───────── Footer ───────── */
.lp-footer {
  background: var(--lp-navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 36px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.lp-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.lp-footer-brand .lp-logo-main { color: #fff; font-size: 18px; }
.lp-footer-brand .lp-logo-sub { color: var(--lp-accent-soft); }
.lp-footer-tagline {
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}
.lp-footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.lp-footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  font-family: var(--lp-mono);
  font-weight: 600;
}
.lp-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-footer-col li { padding: 4px 0; }
.lp-footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  transition: color 0.15s ease;
}
.lp-footer-col a:hover { color: var(--lp-accent-soft); }
.lp-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ───────── Works (制作実績) page ───────── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.works-card {
  display: block;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  box-shadow: var(--lp-shadow-sm);
}
.works-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-md);
}
.works-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--lp-bg-tint);
  display: block;
  border-bottom: 1px solid var(--lp-border-soft);
}
.works-info { padding: 28px 32px 32px; }
.works-tag {
  display: inline-block;
  font-family: var(--lp-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--lp-accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.works-info h3 {
  font-family: var(--lp-maru);
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 12px;
  color: var(--lp-navy);
  letter-spacing: 0.04em;
}
.works-info p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--lp-ink-mid);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.works-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lp-accent);
  letter-spacing: 0.05em;
  transition: color 0.15s ease;
}
.works-card:hover .works-cta { color: var(--lp-accent-deep); }
.works-url {
  display: block;
  font-family: var(--lp-mono);
  font-size: 11px;
  color: var(--lp-ink-fade);
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.works-note {
  margin: 56px auto 0;
  max-width: 760px;
  padding: 24px 28px;
  background: var(--lp-bg-tint);
  border-left: 3px solid var(--lp-accent);
  border-radius: 8px;
}
.works-note p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--lp-ink-mid);
}
.works-back {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .works-grid { grid-template-columns: 1fr; gap: 24px; }
  .works-info { padding: 24px 24px 28px; }
  .works-info h3 { font-size: 19px; }
}

/* ───────── Auth (login) page ───────── */
.lp-auth-page {
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(200, 112, 78, 0.08), transparent 60%),
    linear-gradient(180deg, #fbf9f4 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.lp-auth-wrap {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.lp-auth-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 48px 44px;
  box-shadow: var(--lp-shadow-md);
}
.lp-auth-head {
  text-align: center;
  margin-bottom: 36px;
}
.lp-auth-head h1 {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.lp-auth-head p {
  font-size: 14px;
  color: var(--lp-ink-dim);
  margin: 0;
}
.lp-form-field {
  margin-bottom: 20px;
}
.lp-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-ink);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.lp-form-field input,
.lp-form-field textarea,
.lp-form-field select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--lp-sans);
  font-size: 15px;
  color: var(--lp-ink);
  background: #fff;
  border: 1.5px solid var(--lp-border);
  border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lp-form-field input:focus,
.lp-form-field textarea:focus {
  outline: none;
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 3px rgba(200, 112, 78, 0.12);
}
.lp-form-field textarea {
  resize: vertical;
  min-height: 160px;
  font-family: var(--lp-sans);
  line-height: 1.85;
}
.form-required,
.form-optional {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 9px;
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.06em;
  vertical-align: 1px;
}
.form-required {
  background: var(--lp-accent-tint);
  color: var(--lp-accent-deep);
}
.form-optional {
  background: rgba(28, 40, 69, 0.06);
  color: var(--lp-ink-dim);
}
.form-counter {
  margin-top: 6px;
  text-align: right;
  font-size: 11.5px;
  color: var(--lp-ink-dim);
  font-family: var(--lp-mono);
  letter-spacing: 0.04em;
}
.form-error-banner {
  margin-top: 24px;
  padding: 14px 20px;
  background: #fff3ed;
  border: 1.5px solid #f1b69a;
  border-radius: 10px;
  color: #b15c3a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
/* ハニーポット：人には見えないがbotには入力されやすい場所に配置 */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* 送信中のボタン無効化スタイル */
.lp-btn:disabled,
.lp-btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
/* 本文中の LINE 緑テキストリンク */
.lp-line-text-link {
  color: #06C755 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.lp-line-text-link:hover { color: #05a846 !important; }

/* インライン本文リンク（運営者カードなど） */
.lp-link-inline {
  color: var(--lp-accent);
  text-decoration: underline;
  text-decoration-thickness: 1.2px;
  text-underline-offset: 2px;
  font-weight: 600;
}
.lp-link-inline:hover { color: var(--lp-accent-deep); }
.lp-auth-actions {
  margin-top: 28px;
}
.lp-auth-links {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.lp-auth-links a {
  color: var(--lp-ink-dim);
  transition: color 0.15s ease;
}
.lp-auth-links a:hover { color: var(--lp-accent); }

/* ───────── Members page ───────── */
.lp-members-page {
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(200, 112, 78, 0.05), transparent 60%),
    var(--lp-bg-tint);
  min-height: 100vh;
}
.lp-members-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lp-border-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}
.lp-members-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.lp-members-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-members-greet {
  font-size: 13.5px;
  color: var(--lp-ink-mid);
  letter-spacing: 0.04em;
}
.lp-members-greet strong { color: var(--lp-navy); }
.lp-logout {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-ink-dim);
  padding: 8px 14px;
  border: 1px solid var(--lp-border-strong);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.lp-logout:hover {
  color: var(--lp-accent);
  border-color: var(--lp-accent);
}
.lp-members-main {
  padding: 64px 0 100px;
}
.lp-members-welcome {
  margin-bottom: 56px;
}
.lp-members-welcome h1 {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.lp-members-welcome p {
  font-size: 15px;
  color: var(--lp-ink-mid);
  margin: 0;
}
.lp-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lp-member-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: all 0.2s ease;
  overflow: hidden;
}
.lp-member-card.available {
  cursor: pointer;
  border-color: var(--lp-accent-soft);
}
.lp-member-card.available:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-md);
  border-color: var(--lp-accent);
}
.lp-member-card.locked {
  cursor: not-allowed;
}
.lp-member-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lp-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.lp-member-card-status.live {
  background: var(--lp-accent-tint);
  color: var(--lp-accent-deep);
}
.lp-member-card-status.soon {
  background: #f0eee8;
  color: var(--lp-ink-dim);
}
.lp-member-card h2 {
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--lp-navy);
}
.lp-member-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--lp-ink-mid);
  margin: 0 0 20px;
  flex-grow: 1;
}
.lp-member-card-action {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lp-accent);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-member-card.locked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(1px);
  pointer-events: none;
}
.lp-member-card.locked .lp-locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.lp-member-card.locked .lp-locked-badge {
  background: var(--lp-navy);
  color: #fff;
  font-family: var(--lp-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: var(--lp-shadow-md);
}

/* ───────── Subscribe page ───────── */
.lp-subscribe-page {
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(200, 112, 78, 0.06), transparent 60%),
    linear-gradient(180deg, #fbf9f4 0%, #ffffff 100%);
  min-height: 100vh;
}
.lp-subscribe-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}
.lp-subscribe-head {
  text-align: center;
  margin-bottom: 44px;
}
.lp-subscribe-head h1 {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.lp-subscribe-head p {
  font-size: 14.5px;
  color: var(--lp-ink-mid);
  margin: 0;
}
.lp-plan-summary {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-plan-summary-name {
  font-family: var(--lp-maru);
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-navy);
  letter-spacing: 0.05em;
}
.lp-plan-summary-name .badge {
  display: inline-block;
  background: var(--lp-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 10px;
  vertical-align: middle;
}
.lp-plan-summary-price {
  font-family: var(--lp-maru);
  font-weight: 700;
  font-size: 18px;
  color: var(--lp-navy);
}
.lp-plan-summary-price small {
  font-size: 12px;
  color: var(--lp-ink-dim);
  font-weight: 500;
}
.lp-plan-summary-change a {
  font-size: 13px;
  color: var(--lp-ink-dim);
  text-decoration: underline;
}
.lp-plan-summary-change a:hover { color: var(--lp-accent); }

/* Plan selector (subscribe page) */
.lp-plan-selector {
  margin-bottom: 32px;
}
.lp-plan-selector-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-ink);
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.lp-plan-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-plan-option {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 22px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--lp-sans);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-plan-option:hover {
  border-color: var(--lp-accent-soft);
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-sm);
}
.lp-plan-option.selected {
  border-color: var(--lp-accent);
  background: var(--lp-accent-tint);
  box-shadow: 0 6px 18px rgba(200, 112, 78, 0.18);
}
.lp-plan-option.selected::after {
  content: '✓';
  position: absolute;
  top: 12px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lp-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-plan-option-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--lp-accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 3px 10px;
  border-radius: 999px;
}
.lp-plan-option-name {
  font-family: var(--lp-maru);
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-navy);
  letter-spacing: 0.04em;
}
.lp-plan-option-price {
  font-family: var(--lp-maru);
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-navy);
  letter-spacing: 0.02em;
}
.lp-plan-option-price small {
  font-size: 12px;
  color: var(--lp-ink-dim);
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0.04em;
}
.lp-plan-option-tag {
  font-size: 12.5px;
  color: var(--lp-ink-mid);
  line-height: 1.6;
  margin-top: 2px;
}
.lp-plan-selector-help {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--lp-ink-dim);
  text-align: right;
}
.lp-plan-selector-help a {
  color: var(--lp-accent);
  text-decoration: underline;
}
@media (max-width: 720px) {
  .lp-plan-options { grid-template-columns: 1fr; }
}

/* Featured (buyout) option in plan picker */
.lp-plan-options-2 {
  grid-template-columns: repeat(2, 1fr);
}
.lp-plan-options-buyout {
  margin-bottom: 18px;
}
.lp-plan-options-buyout .lp-plan-option {
  width: 100%;
  padding: 28px 24px;
  border-width: 2px;
}
.lp-plan-option-featured {
  background: linear-gradient(135deg, #fff 0%, var(--lp-bg-tint) 100%);
}
.lp-plan-option-featured .lp-plan-option-name { font-size: 20px; }
.lp-plan-option-featured .lp-plan-option-price { font-size: 28px; }

.lp-plan-options-divider {
  position: relative;
  margin: 8px 0 16px;
  text-align: center;
}
.lp-plan-options-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px dashed var(--lp-border-strong);
  z-index: 0;
}
.lp-plan-options-divider span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 16px;
  background: #fff;
  color: var(--lp-ink-dim);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.lp-form-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 40px 44px;
  box-shadow: var(--lp-shadow-sm);
}
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.lp-form-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--lp-bg-tint);
  border-left: 3px solid var(--lp-accent);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--lp-ink-mid);
}
.lp-subscribe-actions {
  margin-top: 32px;
  text-align: center;
}
.lp-subscribe-back {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--lp-ink-dim);
  text-decoration: underline;
}
.lp-subscribe-back:hover { color: var(--lp-accent); }

/* Done state */
.lp-done {
  text-align: center;
  padding: 64px 32px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-sm);
}
.lp-done-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--lp-accent-tint);
  color: var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}
.lp-done h1 {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.lp-done p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--lp-ink-mid);
  margin: 0 0 8px;
}
.lp-done-buttons {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───────── Responsive ───────── */
@media (max-width: 960px) {
  .lp-hero { padding: 170px 0 96px; }
  .lp-hero h1 { font-size: 36px; line-height: 1.5; margin-bottom: 32px; }
  .lp-hero-lead { font-size: 15px; line-height: 1.9; margin-bottom: 40px; }
  .lp-hero-note { margin-top: 56px; }
  .lp-hero::after {
    left: 50%;
    right: auto;
    top: 40px;
    bottom: auto;
    width: 160px;
    height: 160px;
    transform: translateX(-50%);
    background-size: contain;
    background-position: center;
    background-color: transparent;
    mix-blend-mode: darken;
    filter: grayscale(1) contrast(3) brightness(1.1);
    opacity: 1;
    z-index: 2;
  }
  .lp-section { padding: 88px 0; }
  .lp-section-head { margin-bottom: 56px; }
  .lp-section-head h2 { font-size: 26px; line-height: 1.55; }

  .lp-problem-grid,
  .lp-genre-grid,
  .lp-pricing-grid,
  .lp-members-grid {
    grid-template-columns: 1fr;
  }
  .lp-buyout { padding: 32px 24px; }
  .lp-buyout-grid { grid-template-columns: 1fr; gap: 28px; }
  .lp-buyout-info h3 { font-size: 23px; }
  .lp-buyout-num { font-size: 44px; }
  .lp-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-plan.featured { transform: translateY(0); }

  .lp-shift {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .lp-about {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lp-nav { gap: 8px; }
  .lp-nav a:not(.lp-nav-cta):not(.lp-nav-line) { display: none; }
  .lp-nav-line { padding: 6px 10px; font-size: 10.5px; letter-spacing: 0.02em; }
  .lp-nav-cta { padding: 6px 12px; font-size: 11px; letter-spacing: 0.04em; }

  .lp-form-row { grid-template-columns: 1fr; }
  .lp-form-card { padding: 32px 24px; }

  .lp-auth-card { padding: 36px 28px; }

  .lp-final-cta h2 { font-size: 26px; }
  .lp-final-cta-buttons { flex-direction: column; align-items: stretch; }

  .lp-footer-inner { flex-direction: column; gap: 28px; }
  .lp-footer-cols { gap: 32px; }
}

@media (max-width: 560px) {
  .lp-container { padding: 0 20px; }
  .lp-hero { padding: 150px 0 80px; }
  .lp-hero h1 { font-size: 28px; line-height: 1.55; margin-bottom: 28px; }
  .lp-hero-eyebrow { font-size: 10.5px; margin-bottom: 22px; }
  .lp-hero::after {
    top: 10px;
    width: 150px;
    height: 150px;
  }
  .lp-section-head h2 { font-size: 22px; }
  .lp-hero-ctas { flex-direction: column; align-items: stretch; gap: 14px; }
  .lp-hero-ctas .lp-btn { width: 100%; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-members-header-inner { height: 64px; }
  .lp-members-greet { font-size: 12px; }
  .lp-logo-main { font-size: 13px; }
  .lp-logo-sub { display: none; }
  .lp-nav { gap: 6px; }
  .lp-nav-cta { padding: 5px 10px; font-size: 10.5px; }
  .lp-nav-line { padding: 5px 9px; font-size: 10px; }
  .lp-nav-line .line-emoji-show { display: none; }
}
