:root {
  --brand-navy: #112162;
  --brand-blue: #0B7ED0;
  --brand-teal: #0BB1A6;
  --brand-orange: #F39B0F;
  --brand-red: #F85C4D;
  --text-main: #172033;
  --text-muted: #667085;
  --surface: #FFFFFF;
  --surface-soft: #F5F8FC;
  --border-soft: #E3EAF4;
  --radius-card: 24px;
  --radius-button: 999px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--text-main);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", Meiryo, system-ui, sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  color: inherit;
}

.lp-page {
  overflow-x: hidden;
}

.lp-shell {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
}

.lp-shell--narrow {
  width: calc(100% - 40px);
  max-width: 860px;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(227, 234, 244, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

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

.lp-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.lp-logo img {
  display: block;
  width: 212px;
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 0;
  color: var(--brand-navy);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.lp-nav a {
  border-radius: var(--radius-button);
  padding: 8px 2px;
}

.lp-nav a:hover {
  color: var(--brand-blue);
}

.lp-mobile-menu {
  display: none;
}

.lp-mobile-menu__button {
  display: inline-flex;
  width: 46px;
  height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(11, 126, 208, 0.32);
  border-radius: 15px;
  background: #fff;
  list-style: none;
  box-shadow: 0 12px 26px rgba(17, 33, 98, 0.08);
}

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

.lp-mobile-menu__button::marker {
  content: "";
}

.lp-mobile-menu__button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-navy);
}

.lp-mobile-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  width: min(320px, calc(100vw - 32px));
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  padding: 16px;
  box-shadow: 0 24px 54px rgba(17, 33, 98, 0.16);
}

.lp-mobile-menu:not([open]) .lp-mobile-menu__panel {
  display: none;
}

.lp-mobile-menu__nav,
.lp-mobile-menu__actions {
  display: grid;
  gap: 8px;
}

.lp-mobile-menu__nav a {
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--brand-navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.lp-mobile-menu__nav a:hover {
  background: var(--surface-soft);
  color: var(--brand-blue);
}

.lp-mobile-menu__actions {
  margin-top: 12px;
  border-top: 1px solid var(--border-soft);
  padding-top: 12px;
}

.lp-header__actions,
.lp-hero__cta,
.lp-course-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  padding: 0 22px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-btn:focus-visible,
.lp-nav a:focus-visible,
.lp-link:focus-visible,
.lp-course-search input:focus-visible,
.lp-course-search select:focus-visible,
.lp-course-search button:focus-visible,
.lp-search-keywords a:focus-visible,
.lp-discovery-card:focus-visible,
.lp-demo-options button:focus-visible,
.lp-logo:focus-visible,
.lp-auth-logo:focus-visible,
.lp-mobile-menu__button:focus-visible,
.lp-mobile-menu__panel a:focus-visible,
.lp-faq summary:focus-visible,
.lp-auth-google:focus-visible,
.lp-auth-input:focus-visible {
  outline: 3px solid rgba(11, 126, 208, 0.28);
  outline-offset: 3px;
}

.lp-btn--primary {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 14px 28px rgba(17, 33, 98, 0.18);
}

.lp-btn--primary:hover {
  background: #0b184c;
}

.lp-btn--ghost,
.lp-btn--outline {
  border-color: rgba(11, 126, 208, 0.45);
  background: var(--surface);
  color: var(--brand-navy);
}

.lp-btn--ghost:hover,
.lp-btn--outline:hover {
  border-color: var(--brand-blue);
  background: #F7FBFF;
}

.lp-btn--light {
  background: #fff;
  color: var(--brand-navy);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.lp-btn--large {
  min-height: 56px;
  padding-inline: 30px;
}

.lp-hero {
  padding: 72px 0 88px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 68%, var(--surface-soft) 100%);
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.74fr);
  gap: 72px;
  align-items: center;
}

.lp-hero__copy {
  min-width: 0;
}

.lp-kicker {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lp-hero h1,
.lp-section h2,
.lp-quality h2,
.lp-final h2 {
  margin: 0;
  color: var(--brand-navy);
  font-weight: 900;
  letter-spacing: 0;
}

.lp-hero h1 {
  font-size: 3.55rem;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.lp-hero h1 span {
  color: var(--brand-blue);
}

.lp-lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--brand-navy);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.95;
  overflow-wrap: anywhere;
}

.lp-hero-discovery {
  display: grid;
  gap: 20px;
}

.lp-hero-discovery__title {
  max-width: 720px;
}

.lp-hero-discovery__lead {
  max-width: 640px;
  margin: 0;
  color: var(--brand-navy);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.9;
}

.lp-course-search {
  display: grid;
  gap: 10px;
  width: min(100%, 720px);
  border: 1px solid rgba(11, 126, 208, 0.16);
  border-radius: 24px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 18px 46px rgba(17, 33, 98, 0.08);
}

.lp-course-search label {
  color: var(--brand-navy);
  font-size: 0.84rem;
  font-weight: 900;
}

.lp-course-search__row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.7fr) auto;
  gap: 10px;
  align-items: center;
}

.lp-course-search input,
.lp-course-search select {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--brand-navy);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0 14px;
}

.lp-course-search input::placeholder {
  color: #98A2B3;
}

.lp-course-search button {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  background: var(--brand-navy);
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 900;
  padding: 0 20px;
  white-space: nowrap;
}

.lp-search-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.lp-search-keywords__label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.lp-search-keywords a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(11, 126, 208, 0.18);
  border-radius: var(--radius-button);
  background: #F7FBFF;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 4px 12px;
}

.lp-hero__cta {
  flex-wrap: wrap;
  margin-top: 34px;
  min-width: 0;
  max-width: 100%;
}

.lp-proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.lp-proof-list li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--border-soft);
  color: var(--brand-navy);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.lp-proof-list li span:last-child {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.lp-proof-list li:last-child {
  border-right: 0;
}

.lp-discovery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.lp-discovery-card {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(11, 126, 208, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  padding: 14px;
  box-shadow: 0 14px 28px rgba(17, 33, 98, 0.06);
}

.lp-discovery-card strong,
.lp-discovery-card span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.lp-discovery-card strong {
  color: var(--brand-navy);
  font-size: 0.9rem;
}

.lp-discovery-card span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-proof-icon,
.lp-feature-mark,
.lp-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.lp-proof-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(11, 126, 208, 0.18);
  background: #F8FBFF;
  color: var(--brand-blue);
  font-size: 0.82rem;
}

.lp-proof-icon--abcd {
  word-break: break-all;
  padding: 12px;
  letter-spacing: 2px;
}

.lp-proof-icon--teal {
  border-color: rgba(11, 177, 166, 0.2);
  background: #F2FCFB;
  color: var(--brand-teal);
  font-size: 1.55rem;
}

.lp-proof-icon--orange {
  border-color: rgba(243, 155, 15, 0.22);
  background: #FFF9EF;
  color: var(--brand-orange);
  font-size: 1.4rem;
}

.lp-proof-icon--red {
  border-color: rgba(248, 92, 77, 0.22);
  background: #FFF6F5;
  color: var(--brand-red);
  font-size: 1.35rem;
}

.lp-phone {
  display: flex;
  justify-content: center;
  scroll-margin-top: 104px;
}

.lp-phone__frame {
  position: relative;
  width: min(100%, 356px);
  border: 10px solid #101318;
  border-radius: 44px;
  background: #101318;
  box-shadow: 0 28px 62px rgba(17, 33, 98, 0.22);
}

.lp-phone__speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 116px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #101318;
  transform: translateX(-50%);
  z-index: 2;
}

.lp-phone__screen {
  overflow: hidden;
  min-height: 612px;
  border-radius: 34px;
  background: #fff;
  padding: 46px 22px 24px;
}

.lp-phone__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.lp-phone__eyebrow {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1rem;
  font-weight: 900;
}

.lp-phone__progress {
  margin: 4px 0 0;
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.lp-phone__top span {
  border: 1px solid rgba(11, 126, 208, 0.28);
  border-radius: var(--radius-button);
  padding: 4px 10px;
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.lp-progress {
  overflow: hidden;
  height: 8px;
  margin: 12px 0 22px;
  border-radius: var(--radius-button);
  background: #E8EEF8;
}

.lp-progress span {
  display: block;
  width: 30%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand-navy);
}

.lp-phone h2 {
  margin: 0 0 18px;
  color: var(--brand-navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.65;
}

.lp-demo-options {
  display: grid;
  gap: 10px;
}

.lp-demo-options button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 50px;
  gap: 10px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: #fff;
  padding: 8px 10px;
  color: var(--brand-navy);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.lp-demo-options button:hover {
  border-color: rgba(11, 126, 208, 0.38);
  background: #F8FBFF;
}

.lp-demo-options button.is-selected {
  border-color: rgba(11, 126, 208, 0.52);
  background: #F7FBFF;
}

.lp-demo-options button.is-correct {
  border-color: rgba(11, 177, 166, 0.74);
  background: #F2FCFB;
}

.lp-demo-options button.is-wrong {
  border-color: rgba(248, 92, 77, 0.6);
  background: #FFF6F5;
}

.lp-answer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.lp-answer-label--a { background: var(--brand-blue); }
.lp-answer-label--b { background: var(--brand-teal); }
.lp-answer-label--c { background: var(--brand-orange); }
.lp-answer-label--d { background: var(--brand-red); }

.lp-demo-result {
  margin-top: 18px;
  border-radius: 16px;
  background: var(--surface-soft);
  padding: 16px;
}

.lp-demo-result__title {
  margin: 0 0 6px;
  color: var(--brand-teal);
  font-size: 0.9rem;
  font-weight: 900;
}

.lp-demo-result p:last-child {
  margin: 0;
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.7;
}

.lp-demo-note {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.lp-section {
  padding: 88px 0;
  background: #fff;
}

.lp-section--soft {
  background: var(--surface-soft);
}

.lp-section__head {
  max-width: 760px;
  margin-bottom: 38px;
}

.lp-section__head--split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.lp-section h2,
.lp-quality h2,
.lp-final h2 {
  font-size: 2rem;
  line-height: 1.45;
}

.lp-card-grid {
  display: grid;
  gap: 24px;
}

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

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

.lp-card,
.lp-feature-card,
.lp-course-card,
.lp-empty,
.lp-pricing article,
.lp-faq details {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: #fff;
}

.lp-card,
.lp-feature-card {
  min-width: 0;
  padding: 28px;
}

.lp-card--raised,
.lp-feature-card,
.lp-course-card,
.lp-pricing article {
  box-shadow: 0 18px 42px rgba(17, 33, 98, 0.06);
}

.lp-card h3,
.lp-feature-card h3,
.lp-course-card h3,
.lp-pricing h3 {
  margin: 18px 0 0;
  color: var(--brand-navy);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.55;
}

.lp-card p,
.lp-feature-card p,
.lp-course-card p,
.lp-pricing p,
.lp-quality p,
.lp-faq p,
.lp-final p,
.lp-empty p {
  color: var(--text-muted);
}

.lp-card p,
.lp-feature-card p,
.lp-pricing p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.lp-pricing .lp-pricing__price {
  color: var(--brand-navy);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.25;
}

.lp-card__icon {
  width: 52px;
  height: 52px;
  font-size: 0.85rem;
}

.lp-card__icon--blue {
  background: #EAF5FE;
  color: var(--brand-blue);
}

.lp-card__icon--teal {
  background: #E9FAF8;
  color: var(--brand-teal);
}

.lp-card__icon--orange {
  background: #FFF4E1;
  color: var(--brand-orange);
}

.lp-feature-mark {
  width: 54px;
  height: 54px;
  color: #fff;
  font-size: 1.1rem;
}

.lp-feature-mark--blue { background: var(--brand-blue); }
.lp-feature-mark--teal { background: var(--brand-teal); }
.lp-feature-mark--orange { background: var(--brand-orange); }
.lp-feature-mark--red { background: var(--brand-red); }

.lp-coach__lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
}

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

.lp-coach-card {
  min-width: 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: #fff;
  padding: 30px;
  box-shadow: 0 18px 42px rgba(17, 33, 98, 0.06);
}

.lp-coach-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-coach-avatar {
  display: inline-flex;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #fff;
  padding: 6px;
  box-shadow: 0 14px 28px rgba(17, 33, 98, 0.12);
}

.lp-coach-avatar--kun {
  border-color: #bde3f8;
}

.lp-coach-avatar--chan {
  border-color: #b7eae5;
}

.lp-coach-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-coach-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eaf7fd;
  padding: 7px 12px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.lp-coach-label--teal {
  background: #e7fbf8;
  color: #087a73;
}

.lp-coach-card h3 {
  margin: 22px 0 0;
  color: var(--brand-navy);
  font-size: 1.15rem;
  font-weight: 900;
}

.lp-coach-card p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.lp-coach-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: #fff;
  padding: 18px 20px;
}

.lp-coach-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

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

.lp-flow article {
  position: relative;
  min-width: 0;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: #fff;
  padding: 24px;
}

.lp-flow article:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: -14px;
  color: var(--brand-blue);
  font-weight: 900;
  transform: translateY(-50%);
}

.lp-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: #fff;
  font-weight: 900;
}

.lp-flow article:nth-child(2) span { background: var(--brand-teal); }
.lp-flow article:nth-child(3) span { background: var(--brand-orange); }
.lp-flow article:nth-child(4) span { background: var(--brand-red); }

.lp-flow h3 {
  margin: 18px 0 6px;
  color: var(--brand-navy);
  font-size: 1rem;
  font-weight: 900;
}

.lp-flow p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.lp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-blue);
  font-weight: 900;
}

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

.lp-course-card {
  display: flex;
  min-width: 0;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
}

.lp-course-card__meta,
.lp-course-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-course-card__topline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-course-card__visual {
  display: inline-flex;
  width: 54px;
  height: 54px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(11, 126, 208, 0.18);
  border-radius: 18px;
  background: #EAF5FE;
  color: var(--brand-navy);
  font-size: 1.1rem;
  font-weight: 900;
}

.lp-course-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-course-card__meta span,
.lp-course-card__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: var(--radius-button);
  padding: 4px 10px;
  font-size: 0.76rem;
  font-weight: 900;
}

.lp-course-card__meta span {
  background: #EAF5FE;
  color: var(--brand-blue);
}

.lp-course-card__meta .lp-course-card__owned {
  background: #E9FAF8;
  color: var(--brand-teal);
}

.lp-course-card__stats span {
  background: var(--surface-soft);
  color: var(--brand-navy);
}

.lp-course-card h3 {
  margin-top: 14px;
  font-size: 1.16rem;
}

.lp-course-card p {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.lp-course-card__actions {
  flex-wrap: wrap;
}

.lp-empty {
  padding: 38px;
  text-align: center;
}

.lp-empty h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1.2rem;
}

.lp-empty p {
  margin: 8px 0 0;
}

.lp-quality {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 38px;
  align-items: center;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: #fff;
  padding: 42px;
  box-shadow: 0 18px 42px rgba(17, 33, 98, 0.06);
}

.lp-quality p {
  margin: 18px 0 0;
  font-size: 0.94rem;
}

.lp-quality ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-quality li {
  border-radius: 16px;
  background: var(--surface-soft);
  padding: 13px 16px;
  color: var(--brand-navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.lp-quality li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand-teal);
}

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

.lp-pricing article {
  min-width: 0;
  padding: 26px;
}

.lp-pricing h3 {
  margin-top: 0;
}

.lp-faq {
  display: grid;
  gap: 12px;
}

.lp-faq details {
  overflow: hidden;
}

.lp-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--brand-navy);
  font-weight: 900;
}

.lp-faq p {
  margin: 0;
  border-top: 1px solid var(--border-soft);
  padding: 0 22px 20px;
  font-size: 0.94rem;
}

.lp-final {
  padding: 44px 0 78px;
  background: #fff;
}

.lp-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--radius-card);
  background: var(--brand-navy);
  padding: 36px 48px;
  color: #fff;
  box-shadow: 0 24px 52px rgba(17, 33, 98, 0.22);
}

.lp-final .lp-kicker,
.lp-final h2,
.lp-final p {
  color: #fff;
}

.lp-final p {
  margin: 8px 0 0;
  opacity: 0.92;
}

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

.lp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.lp-footer img {
  width: 168px;
}

.lp-footer__inner div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.lp-public-page,
.lp-auth-page {
  min-height: 100vh;
  background: #fff;
}

.lp-public-main {
  padding: 70px 0 92px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 52%, var(--surface-soft) 100%);
}

.lp-public-messages {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.lp-public-messages p {
  margin: 0;
  border: 1px solid rgba(243, 155, 15, 0.28);
  border-radius: 16px;
  background: #FFF9EF;
  padding: 12px 16px;
  color: #8A5700;
  font-size: 0.9rem;
  font-weight: 800;
}

.lp-legal-card {
  width: calc(100% - 40px);
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: #fff;
  padding: 40px;
  box-shadow: 0 18px 42px rgba(17, 33, 98, 0.06);
}

.lp-legal-head {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 26px;
}

.lp-legal-head h1 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.35;
}

.lp-legal-head p,
.lp-legal-section p,
.lp-legal-list,
.lp-legal-meta,
.lp-legal-table {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.lp-legal-head p {
  margin: 16px 0 0;
}

.lp-legal-section {
  margin-top: 30px;
}

.lp-legal-section h2 {
  margin: 0 0 12px;
  color: var(--brand-navy);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.45;
}

.lp-legal-section p {
  margin: 0;
}

.lp-legal-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.lp-legal-list li::marker {
  color: var(--brand-teal);
}

.lp-legal-placeholder {
  display: inline-flex;
  margin-top: 12px !important;
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 10px 14px;
  color: var(--brand-navy) !important;
  font-weight: 800;
}

.lp-legal-meta {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.lp-legal-meta div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 12px 14px;
}

.lp-legal-meta dt {
  color: var(--brand-navy);
  font-weight: 900;
}

.lp-legal-meta dd {
  margin: 0;
}

.lp-legal-table-wrap {
  overflow-x: auto;
}

.lp-legal-table {
  width: 100%;
  border-collapse: collapse;
}

.lp-legal-table tr {
  border-bottom: 1px solid var(--border-soft);
}

.lp-legal-table tr:last-child {
  border-bottom: 0;
}

.lp-legal-table th,
.lp-legal-table td {
  padding: 18px 0;
  text-align: left;
  vertical-align: top;
}

.lp-legal-table th {
  width: 210px;
  padding-right: 24px;
  color: var(--brand-navy);
  font-weight: 900;
}

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

.lp-public-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.2fr);
  gap: 28px;
  padding: 34px 0;
  color: var(--text-muted);
}

.lp-public-footer__brand {
  min-width: 0;
}

.lp-public-footer__brand img {
  width: 168px;
}

.lp-public-footer__brand p {
  max-width: 360px;
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.lp-public-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 12px 18px;
  font-size: 0.86rem;
  font-weight: 800;
}

.lp-public-footer__links a:hover {
  color: var(--brand-blue);
}

.lp-public-footer__copy {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.lp-auth-main {
  display: flex;
  min-height: 680px;
  align-items: center;
  justify-content: center;
  padding: 64px 0 86px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 48%, var(--surface-soft) 100%);
}

.lp-auth-card {
  width: calc(100% - 40px);
  max-width: 520px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: #fff;
  padding: 36px;
  box-shadow: 0 24px 54px rgba(17, 33, 98, 0.1);
}

.lp-auth-card__head {
  margin-bottom: 24px;
  text-align: center;
}

.lp-auth-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.lp-auth-logo img {
  display: block;
  width: min(220px, 72vw);
}

.lp-auth-card__head h1 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
}

.lp-auth-card__head p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.lp-auth-alert {
  margin-bottom: 18px;
  border: 1px solid rgba(248, 92, 77, 0.28);
  border-radius: 16px;
  background: #FFF6F5;
  padding: 12px 14px;
  color: #B93631;
  font-size: 0.9rem;
  font-weight: 800;
}

.lp-auth-google {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: #fff;
  color: var(--brand-navy);
  font-size: 0.94rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(17, 33, 98, 0.06);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.lp-auth-google:hover {
  border-color: rgba(11, 126, 208, 0.36);
  background: #F7FBFF;
  transform: translateY(-1px);
}

.lp-auth-google svg {
  width: 20px;
  height: 20px;
}

.lp-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.lp-auth-divider span {
  height: 1px;
  flex: 1;
  background: var(--border-soft);
}

.lp-auth-divider em {
  font-style: normal;
}

.lp-auth-form {
  display: grid;
  gap: 16px;
}

.lp-form-field {
  display: grid;
  gap: 7px;
}

.lp-form-field label {
  color: var(--brand-navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.lp-form-field p {
  margin: 0;
  color: #B93631;
  font-size: 0.82rem;
  font-weight: 800;
}

.lp-auth-input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: #fff;
  padding: 10px 13px;
  color: var(--brand-navy);
  font-size: 1rem;
  font-weight: 700;
}

.lp-auth-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(11, 126, 208, 0.12);
}

.lp-auth-submit {
  width: 100%;
  margin-top: 4px;
}

.lp-auth-helper,
.lp-auth-switch {
  margin: 0;
  text-align: center;
}

.lp-auth-helper {
  font-size: 0.88rem;
}

.lp-auth-switch {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.lp-auth-helper a,
.lp-auth-switch a {
  color: var(--brand-blue);
  font-weight: 900;
}

.lp-auth-helper a:hover,
.lp-auth-switch a:hover {
  color: var(--brand-navy);
}

@media (max-width: 1040px) {
  .lp-header__inner {
    gap: 18px;
  }

  .lp-logo img {
    width: 178px;
  }

  .lp-nav {
    gap: 16px;
    font-size: 0.84rem;
  }

  .lp-hero__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .lp-card-grid--4,
  .lp-flow,
  .lp-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lp-flow article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 1180px) {
  .lp-header__inner {
    flex-wrap: nowrap;
    min-height: 0;
    padding: 12px 0;
  }

  .lp-logo {
    width: auto;
    justify-content: flex-start;
  }

  .lp-logo img {
    width: 166px;
  }

  .lp-nav,
  .lp-header__actions {
    display: none;
  }

  .lp-mobile-menu {
    position: relative;
    display: block;
    flex: 0 0 auto;
  }
}

@media (max-width: 820px) {
  .lp-shell,
  .lp-shell--narrow {
    width: calc(100% - 28px);
  }

  .lp-header {
    position: static;
  }

  .lp-hero {
    padding: 50px 0 66px;
  }

  .lp-hero h1 {
    font-size: 2.42rem;
  }

  .lp-lead {
    font-size: 1rem;
  }

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

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

  .lp-course-search button {
    width: 100%;
  }

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

  .lp-proof-list li {
    border-right: 0;
  }

  .lp-card-grid--3,
  .lp-course-grid,
  .lp-coach-grid,
  .lp-quality {
    grid-template-columns: 1fr;
  }

  .lp-section {
    padding: 70px 0;
  }

  .lp-section h2,
  .lp-quality h2,
  .lp-final h2 {
    font-size: 1.6rem;
  }

  .lp-section__head--split {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .lp-phone__frame {
    width: min(100%, 338px);
  }

  .lp-quality,
  .lp-coach-note,
  .lp-final__inner {
    padding: 28px;
  }

  .lp-coach-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-final__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 0;
  }

  .lp-footer__inner div {
    justify-content: flex-start;
  }

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

  .lp-public-footer__links {
    justify-content: flex-start;
  }

  .lp-auth-main,
  .lp-public-main {
    padding: 54px 0 72px;
  }
}

@media (max-width: 560px) {
  .lp-shell,
  .lp-shell--narrow {
    width: calc(100% - 32px);
  }

  .lp-btn {
    width: 100%;
    min-width: 0;
    padding-inline: 18px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .lp-header__actions,
  .lp-hero__cta,
  .lp-course-card__actions {
    width: 100%;
  }

  .lp-hero__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-hero h1 {
    font-size: 1.9rem;
  }

  .lp-hero-discovery__lead {
    font-size: 0.98rem;
  }

  .lp-course-search {
    border-radius: 20px;
    padding: 14px;
  }

  .lp-search-keywords a {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

  .lp-discovery-card {
    padding: 12px 14px;
  }

  .lp-lead br {
    display: none;
  }

  .lp-card-grid--4,
  .lp-flow,
  .lp-pricing {
    grid-template-columns: 1fr;
  }

  .lp-card,
  .lp-feature-card,
  .lp-course-card,
  .lp-coach-card,
  .lp-coach-note,
  .lp-pricing article {
    padding: 22px;
  }

  .lp-phone__frame {
    width: min(100%, 300px);
    border-width: 8px;
    border-radius: 36px;
  }

  .lp-phone__screen {
    min-height: 0;
    border-radius: 28px;
    padding: 42px 16px 18px;
  }

  .lp-demo-options button {
    min-height: 48px;
    font-size: 0.78rem;
  }

  .lp-answer-label {
    width: 26px;
    height: 26px;
  }

  .lp-proof-list {
    gap: 20px 0;
  }

  .lp-proof-list li {
    padding: 0 6px;
    overflow-wrap: anywhere;
  }

  .lp-demo-options button span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .lp-legal-card,
  .lp-auth-card {
    width: calc(100% - 32px);
    padding: 24px;
  }

  .lp-legal-head h1,
  .lp-auth-card__head h1 {
    font-size: 1.55rem;
  }

  .lp-legal-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lp-legal-table-wrap {
    overflow-x: visible;
  }

  .lp-legal-table,
  .lp-legal-table tbody,
  .lp-legal-table tr,
  .lp-legal-table th,
  .lp-legal-table td {
    display: block;
    width: 100%;
  }

  .lp-legal-table th {
    padding: 16px 0 4px;
  }

  .lp-legal-table td {
    padding: 0 0 16px;
  }

  .lp-public-footer__links {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.lp-section__head--compact {
  max-width: 760px;
}

.lp-section__head--compact h1 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.lp-section__head--compact p:last-child {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.lp-catalog-search {
  margin-top: 1.5rem;
}

.lp-catalog-categories {
  margin: 1rem 0 0;
  padding: 0;
  border: 0;
}

.lp-catalog-categories legend {
  margin-bottom: 0.7rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.lp-catalog-categories div,
.lp-filter-chips,
.lp-course-badges,
.lp-course-detail-actions,
.lp-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.lp-catalog-categories label,
.lp-filter-chips a,
.lp-course-badges span,
.lp-result-count {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.25rem;
  border: 1px solid rgba(17, 33, 98, 0.12);
  border-radius: 999px;
  background: #fff;
  padding: 0.45rem 0.8rem;
  color: var(--brand-ink);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.lp-catalog-categories input {
  accent-color: var(--brand-blue);
}

.lp-filter-chips {
  margin-top: 1rem;
}

.lp-empty-state {
  grid-column: 1 / -1;
  border: 1px solid rgba(17, 33, 98, 0.1);
  border-radius: 18px;
  background: #fff;
  padding: 2rem;
  text-align: center;
}

.lp-empty-state h2 {
  margin: 0;
  color: var(--brand-ink);
  font-size: 1.25rem;
}

.lp-empty-state p {
  margin: 0.6rem 0 1.2rem;
  color: var(--text-muted);
}

.lp-pagination {
  justify-content: center;
  margin-top: 2rem;
}

.lp-course-card h3 a {
  color: inherit;
  text-decoration: none;
}

.lp-course-card h3 a:hover {
  text-decoration: underline;
}

.lp-prose {
  display: grid;
  gap: 2rem;
}

.lp-prose section {
  border-bottom: 1px solid rgba(17, 33, 98, 0.08);
  padding-bottom: 1.6rem;
}

.lp-prose section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.lp-prose h2,
.lp-course-side h2,
.lp-course-summary h2 {
  margin: 0 0 0.75rem;
  color: var(--brand-ink);
  font-size: 1.35rem;
  line-height: 1.4;
  letter-spacing: 0;
}

.lp-prose h3,
.lp-related-card h3 {
  margin: 0 0 0.4rem;
  color: var(--brand-ink);
  font-size: 1rem;
  line-height: 1.5;
}

.lp-prose p,
.lp-prose li,
.lp-course-side p,
.lp-course-side dd,
.lp-course-summary dd,
.lp-related-card p {
  color: var(--text-muted);
  line-height: 1.85;
}

.lp-prose ul,
.lp-prose ol {
  margin: 0.8rem 0 0;
  padding-left: 1.3rem;
}

.lp-faq-list,
.lp-course-side,
.lp-related-grid {
  display: grid;
  gap: 1rem;
}

.lp-faq-list article,
.lp-course-side section,
.lp-course-summary,
.lp-related-card {
  border: 1px solid rgba(17, 33, 98, 0.1);
  border-radius: 16px;
  background: #fff;
  padding: 1.1rem;
}

.lp-course-detail-hero,
.lp-course-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 2rem;
  align-items: start;
}

.lp-course-detail-hero h1 {
  margin: 1rem 0 0;
  color: var(--brand-ink);
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.lp-course-detail-hero p {
  max-width: 780px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
}

.lp-course-summary dl,
.lp-course-side dl {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.lp-course-summary div,
.lp-course-side dl div {
  display: grid;
  gap: 0.25rem;
}

.lp-course-summary dt,
.lp-course-side dt {
  color: #5f6b7d;
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-course-summary dd,
.lp-course-side dd {
  margin: 0;
  color: var(--brand-ink);
  font-weight: 800;
}

.lp-course-side .lp-btn {
  width: 100%;
}

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

.lp-related-card a {
  color: inherit;
  text-decoration: none;
}

.lp-related-card a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .lp-course-detail-hero,
  .lp-course-detail-grid,
  .lp-related-grid {
    grid-template-columns: 1fr;
  }
}
/* Public UI redesign 2026-06-24 */
:root {
  --brand-navy: #112162;
  --brand-blue: #0b7ed0;
  --brand-teal: #0aa99d;
  --brand-orange: #ee9814;
  --brand-coral: #ef5a4f;
  --brand-ink: #112162;
  --text-strong: #172033;
  --text-body: #344054;
  --text-muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --surface-brand: #f1f6fc;
  --border: #e3e9f2;
  --border-soft: #e3e9f2;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-card: 16px;
}

html {
  scroll-padding-top: 88px;
}

.lp-shell {
  max-width: 1200px;
}

.lp-shell--narrow {
  max-width: 760px;
}

.lp-section {
  padding: 92px 0;
}

.lp-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: none;
}

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

.lp-logo img {
  width: 176px;
}

.lp-nav a[aria-current="page"],
.lp-mobile-menu__nav a[aria-current="page"] {
  color: var(--brand-blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.lp-mobile-menu__button {
  width: auto;
  min-width: 104px;
  height: 46px;
  flex-direction: row;
  gap: 10px;
  box-shadow: none;
}

.lp-mobile-menu__button span {
  width: auto;
  height: auto;
  background: transparent;
}

.lp-mobile-menu__label {
  color: var(--brand-navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.lp-mobile-menu__lines {
  display: inline-flex !important;
  width: 20px !important;
  flex-direction: column;
  gap: 5px;
}

.lp-mobile-menu__lines span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-navy);
}

.lp-mobile-menu[open] .lp-mobile-menu__label::after {
  content: " 開く";
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.lp-btn {
  border-radius: var(--radius-sm);
}

.lp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.lp-catalog-page .lp-section {
  padding: 0;
}

.lp-catalog-form {
  background: var(--surface);
}

.lp-catalog-hero {
  padding: 82px 0 30px !important;
  background: var(--surface);
}

.lp-catalog-hero__inner {
  display: grid;
  gap: 30px;
  justify-items: center;
  text-align: center;
}

.lp-catalog-hero__copy {
  max-width: 760px;
}

.lp-catalog-hero h1,
.lp-about-hero h1 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.lp-catalog-hero p,
.lp-about-hero__copy p,
.lp-about-pricing p,
.lp-final-cta p {
  margin: 18px 0 0;
  color: var(--text-body);
  font-size: 1.04rem;
  line-height: 1.8;
}

.lp-catalog-searchbox {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  width: min(840px, 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 10px;
}

.lp-catalog-searchbox input,
.lp-filter-field select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-strong);
  font-size: 1rem;
}

.lp-catalog-searchbox input {
  border-color: transparent;
  padding: 0 14px;
}

.lp-catalog-searchbox button {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--brand-blue);
  padding: 0 26px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.lp-catalog-searchbox button:hover {
  background: var(--brand-navy);
}

.lp-catalog-filters {
  padding: 30px 0 44px !important;
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
}

.lp-catalog-filters__head,
.lp-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.lp-catalog-filters h2,
.lp-results-head h2,
.lp-about-page h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.35;
}

.lp-filter-reset {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0 14px;
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.lp-catalog-filters__grid {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(180px, 260px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.lp-filter-field label,
.lp-filter-categories legend {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.lp-filter-field select {
  padding: 0 12px;
}

.lp-filter-categories {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.lp-filter-categories div,
.lp-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-filter-categories label,
.lp-filter-chips a,
.lp-result-count {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0 12px;
  color: var(--text-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.lp-filter-categories input {
  width: 16px;
  height: 16px;
  accent-color: var(--brand-blue);
}

.lp-filter-chips {
  margin-top: 16px;
}

.lp-filter-chips a::after {
  content: "×";
  color: var(--text-muted);
}

.lp-catalog-results {
  padding: 64px 0 96px !important;
}

.lp-course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.lp-course-card {
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 22px;
  box-shadow: none;
}

.lp-course-card__category {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.lp-course-card h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.25rem;
  line-height: 1.45;
}

.lp-course-card h3 a:focus-visible,
.lp-course-card__actions a:focus-visible,
.lp-filter-reset:focus-visible,
.lp-catalog-searchbox input:focus-visible,
.lp-catalog-searchbox button:focus-visible,
.lp-filter-field select:focus-visible,
.lp-filter-categories input:focus-visible {
  outline: 3px solid rgba(11, 126, 208, 0.32);
  outline-offset: 3px;
}

.lp-course-card__meta-list,
.lp-course-card__facts {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.lp-course-card__meta-list div,
.lp-course-card__facts div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.lp-course-card dt {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.lp-course-card dd {
  min-width: 0;
  margin: 0;
  color: var(--text-strong);
  font-size: 0.92rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.lp-course-card__description {
  display: -webkit-box;
  margin: 16px 0 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.7;
}

.lp-course-card__actions {
  justify-content: flex-start;
  margin-top: 20px;
}

.lp-empty-state {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  padding: 40px;
  text-align: center;
}

.lp-empty-state h2 {
  color: var(--brand-navy);
}

.lp-about-hero {
  padding: 92px 0 !important;
  background: var(--surface);
}

.lp-about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 56px;
  align-items: center;
}

.lp-about-hero__actions,
.lp-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lp-study-preview {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  padding: 18px;
}

.lp-study-preview__label {
  margin: 0 0 12px;
  color: var(--brand-navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.lp-study-preview__screen {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 20px;
}

.lp-study-preview__screen h2 {
  font-size: 1.1rem;
}

.lp-study-preview__question {
  margin: 12px 0 16px;
  color: var(--text-strong);
  font-weight: 800;
}

.lp-study-preview__options {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-study-preview__options li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  color: var(--text-body);
}

.lp-study-preview__options li.is-correct {
  border-color: rgba(10, 169, 157, 0.6);
  background: #f0fbfa;
}

.lp-study-preview__options strong {
  color: var(--brand-teal);
  font-size: 0.78rem;
}

.lp-answer-label {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
}

.lp-answer-label--a { background: var(--brand-blue); }
.lp-answer-label--b { background: var(--brand-teal); }
.lp-answer-label--c { background: var(--brand-orange); }
.lp-answer-label--d { background: var(--brand-coral); }

.lp-study-preview__answer {
  margin-top: 14px;
  border-left: 4px solid var(--brand-teal);
  padding-left: 12px;
}

.lp-study-preview__answer p,
.lp-study-preview__note {
  margin: 0;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.7;
}

.lp-study-preview__note {
  margin-top: 12px;
  color: var(--text-muted);
}

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

.lp-feature-list article,
.lp-flow-steps li {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 22px;
}

.lp-feature-list h3,
.lp-flow-steps h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1.08rem;
}

.lp-feature-list p,
.lp-flow-steps p,
.lp-policy-panel p {
  margin: 10px 0 0;
  color: var(--text-body);
  line-height: 1.75;
}

.lp-learning-flow {
  background: var(--surface-soft);
}

.lp-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.lp-flow-steps span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--brand-navy);
  color: #fff;
  font-weight: 900;
}

.lp-publishing-policy {
  background: #fff;
}

.lp-policy-panel {
  border: 1px solid #d9e9f8;
  border-radius: var(--radius-lg);
  background: var(--surface-brand);
  padding: 36px;
}

.lp-about-pricing {
  text-align: center;
}

.lp-about-pricing .lp-btn {
  margin-top: 24px;
}

.lp-about-faq {
  background: var(--surface-soft);
  scroll-margin-top: 96px;
}

.lp-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.lp-faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0;
}

.lp-faq-list summary {
  min-height: 54px;
  cursor: pointer;
  padding: 16px 18px;
  color: var(--text-strong);
  font-weight: 900;
}

.lp-faq-list summary:focus-visible {
  outline: 3px solid rgba(11, 126, 208, 0.32);
  outline-offset: 3px;
}

.lp-faq-list details p {
  margin: 0;
  border-top: 1px solid var(--border);
  padding: 16px 18px 18px;
  color: var(--text-body);
}

.lp-final-cta {
  text-align: center;
}

.lp-final-cta__inner {
  max-width: 760px;
}

.lp-final-cta__actions {
  justify-content: center;
}

@media (max-width: 1180px) {
  .lp-header__actions {
    display: none;
  }

  .lp-mobile-menu {
    display: block;
    position: relative;
  }

  .lp-nav {
    display: none;
  }
}

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

@media (max-width: 900px) {
  .lp-section {
    padding: 68px 0;
  }

  .lp-catalog-filters__grid,
  .lp-about-hero__inner,
  .lp-feature-list,
  .lp-flow-steps {
    grid-template-columns: 1fr;
  }

  .lp-about-hero__inner {
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .lp-course-grid {
    grid-template-columns: 1fr;
  }

  .lp-course-card {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .lp-shell,
  .lp-shell--narrow {
    width: calc(100% - 40px);
  }

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

  .lp-logo img {
    width: 150px;
  }

  .lp-catalog-hero {
    padding-top: 60px !important;
  }

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

  .lp-catalog-searchbox button {
    width: 100%;
  }

  .lp-catalog-filters__head,
  .lp-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-course-card__meta-list div,
  .lp-course-card__facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .lp-study-preview__options li {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .lp-study-preview__options strong {
    grid-column: 2;
  }

  .lp-policy-panel,
  .lp-empty-state {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Public UI cleanup 2026-06-24 */
.lp-mobile-menu[open] .lp-mobile-menu__label::after {
  content: "";
  display: none;
}

.lp-course-card__thumbnail {
  display: block;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.lp-course-card__thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.lp-course-card__status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 12px 0 0;
  border-radius: 999px;
  background: #e8f7f2;
  padding: 6px 10px;
  color: #087a61;
  font-size: 0.78rem;
  font-weight: 900;
}

/* Modern LP/catalog redesign 2026-06-26 */
:root {
  --lp-modern-bg: #f8fafc;
  --lp-modern-surface: #ffffff;
  --lp-modern-text: #0f172a;
  --lp-modern-muted: #64748b;
  --lp-modern-primary: #4f46e5;
  --lp-modern-accent: #06b6d4;
  --lp-modern-success: #10b981;
  --lp-modern-warning: #f59e0b;
  --lp-modern-border: #e2e8f0;
  --lp-modern-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.lp-modern-page {
  overflow: hidden;
  background: var(--lp-modern-bg);
  color: var(--lp-modern-text);
}

.lp-modern-page h1,
.lp-modern-page h2,
.lp-modern-page h3,
.lp-modern-page p {
  letter-spacing: 0;
}

.lp-modern-page h1,
.lp-modern-page h2,
.lp-modern-page h3 {
  color: var(--lp-modern-text);
}

.lp-modern-page .lp-btn--primary {
  background: var(--lp-modern-primary);
  color: #fff;
  box-shadow: 0 16px 36px rgba(79, 70, 229, 0.22);
}

.lp-modern-page .lp-btn--primary:hover {
  background: #4338ca;
}

.lp-modern-page .lp-btn--ghost {
  border-color: rgba(100, 116, 139, 0.28);
  background: rgba(255, 255, 255, 0.86);
  color: var(--lp-modern-text);
}

.lp-modern-page .lp-btn--ghost:hover {
  border-color: rgba(79, 70, 229, 0.36);
  background: #fff;
}

.lp-modern-page .lp-btn--light {
  border-color: rgba(255, 255, 255, 0.42);
  background: #fff;
  color: var(--lp-modern-primary);
}

.lp-modern-hero {
  padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 112px);
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.10) 0%, rgba(6, 182, 212, 0.09) 34%, rgba(248, 250, 252, 1) 74%),
    #fff;
}

.lp-modern-hero__grid,
.lp-solution-layout,
.lp-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.lp-modern-kicker {
  margin: 0 0 12px;
  color: var(--lp-modern-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lp-modern-hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(2.45rem, 5.4vw, 5.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.lp-modern-lead,
.lp-modern-copy,
.lp-catalog-panel__head p {
  color: var(--lp-modern-muted);
  font-size: 1rem;
  line-height: 1.95;
}

.lp-modern-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #334155;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.lp-modern-badges,
.lp-modern-actions,
.lp-roadmap-tabs,
.lp-category-chips,
.lp-filter-actions,
.lp-course-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.lp-modern-badges {
  margin-top: 26px;
}

.lp-modern-badges span,
.lp-roadmap-tabs span,
.lp-category-chips a,
.lp-course-card__features li {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 12px;
}

.lp-modern-actions {
  margin-top: 32px;
}

.lp-modern-actions--center {
  justify-content: center;
}

.lp-product-mock {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--lp-modern-shadow);
}

.lp-product-mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--lp-modern-border);
  background: rgba(248, 250, 252, 0.82);
  padding: 14px 16px;
}

.lp-product-mock__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.lp-product-mock__bar span:first-child { background: #fb7185; }
.lp-product-mock__bar span:nth-child(2) { background: #fbbf24; }
.lp-product-mock__bar span:nth-child(3) { background: #34d399; }

.lp-product-mock__bar strong {
  margin-left: 8px;
  color: #475569;
  font-size: 0.78rem;
}

.lp-product-mock__content {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.lp-product-card {
  min-width: 0;
  border: 1px solid var(--lp-modern-border);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.lp-product-card--quiz {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.lp-product-card__head,
.lp-results-head--modern,
.lp-catalog-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.lp-product-card__head span,
.lp-product-label {
  color: var(--lp-modern-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-product-card__head strong {
  color: var(--lp-modern-primary);
  font-size: 0.82rem;
}

.lp-product-card p {
  margin: 12px 0 0;
  color: #1e293b;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.65;
}

.lp-product-options {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.lp-product-options span,
.lp-product-search div span {
  border: 1px solid var(--lp-modern-border);
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
  color: #475569;
  font-size: 0.83rem;
  font-weight: 800;
}

.lp-product-options .is-active {
  border-color: rgba(16, 185, 129, 0.45);
  background: #ecfdf5;
  color: #047857;
}

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

.lp-product-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--lp-modern-text);
  font-size: 2rem;
  line-height: 1;
}

.lp-product-metrics p {
  margin-top: 6px;
  color: var(--lp-modern-muted);
  font-size: 0.82rem;
}

.lp-product-search div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.lp-modern-section {
  background: #fff;
  padding: clamp(64px, 8vw, 104px) 0;
}

.lp-modern-section--soft,
.lp-modern-catalog {
  background: var(--lp-modern-bg);
}

.lp-section__head--center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.lp-modern-section h2,
.lp-modern-catalog h2,
.lp-final-modern h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.18;
}

.lp-problem-grid,
.lp-bento-grid,
.lp-planned-grid,
.lp-pricing-modern {
  display: grid;
  gap: 18px;
}

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

.lp-problem-grid article,
.lp-step-list li,
.lp-bento-grid article,
.lp-planned-grid article,
.lp-pricing-modern article,
.lp-quality-panel,
.lp-catalog-panel,
.lp-quiz-demo-card,
.lp-empty-state--modern {
  border: 1px solid var(--lp-modern-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
}

.lp-problem-grid article,
.lp-bento-grid article,
.lp-pricing-modern article {
  padding: 24px;
}

.lp-problem-grid span,
.lp-bento-grid span,
.lp-pricing-modern span {
  color: var(--lp-modern-primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-problem-grid h3,
.lp-bento-grid h3,
.lp-pricing-modern h3,
.lp-planned-grid h3 {
  margin: 14px 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.lp-problem-grid p,
.lp-bento-grid p,
.lp-pricing-modern p,
.lp-planned-grid p,
.lp-quality-panel p {
  margin: 10px 0 0;
  color: var(--lp-modern-muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.lp-solution-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
}

.lp-step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-step-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 18px;
}

.lp-step-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--lp-modern-primary);
  color: #fff;
  font-weight: 900;
}

.lp-step-list strong {
  color: var(--lp-modern-text);
  font-size: 1rem;
}

.lp-step-list p {
  margin: 0;
  color: var(--lp-modern-muted);
  font-size: 0.9rem;
}

.lp-demo-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
}

.lp-quiz-demo-card {
  padding: clamp(18px, 3vw, 28px);
}

.lp-quiz-demo-card__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.lp-quiz-demo-card__top span,
.lp-quiz-demo-card__top strong {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 900;
}

.lp-quiz-demo-card__top span {
  background: #eef2ff;
  color: var(--lp-modern-primary);
}

.lp-quiz-demo-card__top strong {
  background: #ecfeff;
  color: #0891b2;
}

.lp-quiz-demo-card h3 {
  margin: 0 0 18px;
  font-size: 1.12rem;
  line-height: 1.75;
}

.lp-quiz-demo-card .lp-demo-options button {
  border-color: var(--lp-modern-border);
  border-radius: 16px;
  font-size: 0.9rem;
}

.lp-quiz-demo-card .lp-demo-options button.is-correct {
  border-color: rgba(16, 185, 129, 0.62);
  background: #ecfdf5;
}

.lp-quiz-demo-card .lp-demo-options button.is-wrong {
  border-color: rgba(239, 68, 68, 0.48);
  background: #fef2f2;
}

.lp-demo-state {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.lp-demo-state li {
  border-radius: 12px;
  background: #fff;
  padding: 9px 11px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.lp-bento-card--wide {
  grid-column: span 2;
}

.lp-bento-card--accent {
  background: linear-gradient(135deg, #eef2ff 0%, #ecfeff 100%) !important;
}

.lp-roadmap-tabs {
  margin: 26px 0 20px;
}

.lp-roadmap-tabs span {
  background: #fff;
}

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

.lp-planned-grid article {
  padding: 20px;
}

.lp-planned-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.lp-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.76rem;
  font-weight: 900;
}

.lp-status--available {
  background: #ecfdf5;
  color: #047857;
}

.lp-status--planned {
  background: #fff7ed;
  color: #c2410c;
}

.lp-status--soon {
  background: #eef2ff;
  color: #4338ca;
}

.lp-status--request {
  background: #ecfeff;
  color: #0e7490;
}

.lp-quality-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
}

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

.lp-modern-catalog {
  padding: clamp(64px, 8vw, 104px) 0;
}

.lp-catalog-panel {
  padding: clamp(20px, 4vw, 36px);
}

.lp-catalog-panel__head {
  margin-bottom: 22px;
}

.lp-catalog-panel__head h2 {
  margin: 0;
}

.lp-catalog-panel__head p {
  max-width: 780px;
  margin: 14px 0 0;
}

.lp-modern-page .lp-catalog-form {
  display: grid;
  gap: 18px;
  background: transparent;
}

.lp-catalog-searchbox--command {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  border-color: rgba(79, 70, 229, 0.18);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.lp-catalog-searchbox--command > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eef2ff;
  color: var(--lp-modern-primary);
  font-size: 1.15rem;
  font-weight: 900;
}

.lp-catalog-searchbox--command input {
  min-height: 54px;
  font-size: 1.02rem;
}

.lp-catalog-searchbox--command button {
  min-width: 104px;
  background: var(--lp-modern-primary);
}

.lp-category-chips a {
  text-decoration: none;
}

.lp-category-chips a.is-active,
.lp-category-chips a:hover {
  border-color: rgba(79, 70, 229, 0.28);
  background: #eef2ff;
  color: var(--lp-modern-primary);
}

.lp-filter-drawer {
  border: 1px solid var(--lp-modern-border);
  border-radius: 18px;
  background: #fff;
  padding: 0;
}

.lp-filter-drawer summary {
  min-height: 54px;
  cursor: pointer;
  padding: 15px 18px;
  color: var(--lp-modern-text);
  font-weight: 900;
}

.lp-filter-drawer summary:focus-visible,
.lp-category-chips a:focus-visible,
.lp-quiz-demo-card button:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.28);
  outline-offset: 3px;
}

.lp-filter-drawer[open] summary {
  border-bottom: 1px solid var(--lp-modern-border);
}

.lp-filter-drawer .lp-catalog-filters__grid {
  grid-template-columns: minmax(180px, 240px) minmax(180px, 260px) minmax(0, 1fr);
  padding: 18px;
}

.lp-filter-actions {
  padding: 0 18px 18px;
}

.lp-filter-actions .lp-btn {
  min-height: 42px;
}

.lp-results-head--modern {
  margin: clamp(34px, 5vw, 56px) 0 18px;
}

.lp-results-head--modern h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.lp-course-grid--modern {
  align-items: stretch;
}

.lp-course-card--catalog {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-color: var(--lp-modern-border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
}

.lp-course-card--catalog .lp-course-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.lp-course-card--catalog .lp-course-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

.lp-course-card--catalog .lp-course-card__category {
  margin: 0;
  border-radius: 999px;
  background: #f1f5f9;
  padding: 5px 10px;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 900;
}

.lp-course-card--catalog h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.48;
}

.lp-course-card--catalog .lp-course-card__description {
  -webkit-line-clamp: 4;
  margin-top: 14px;
}

.lp-course-card__features {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.lp-course-card__features li {
  min-height: 30px;
  background: #f8fafc;
  font-size: 0.76rem;
  padding: 4px 10px;
}

.lp-course-card--catalog .lp-course-card__facts {
  margin-top: 18px;
}

.lp-course-card--catalog .lp-course-card__facts div {
  grid-template-columns: 68px minmax(0, 1fr);
}

.lp-course-card--catalog .lp-course-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.lp-course-card--catalog .lp-btn {
  min-height: 42px;
  padding-inline: 14px;
  white-space: normal;
}

.lp-empty-state--modern {
  max-width: none;
  padding: 42px;
}

.lp-empty-state__icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #eef2ff;
  color: var(--lp-modern-primary);
  font-size: 1.35rem;
  font-weight: 900;
}

.lp-final-modern {
  padding: clamp(64px, 8vw, 96px) 0;
  background: linear-gradient(135deg, #4f46e5 0%, #0891b2 100%);
  color: #fff;
  text-align: center;
}

.lp-final-modern .lp-modern-kicker,
.lp-final-modern h2 {
  color: #fff;
}

.lp-final-modern__inner {
  max-width: 820px;
}

@media (max-width: 1100px) {
  .lp-modern-hero__grid,
  .lp-solution-layout,
  .lp-demo-layout,
  .lp-quality-panel {
    grid-template-columns: 1fr;
  }

  .lp-product-mock,
  .lp-quiz-demo-card {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

  .lp-bento-grid,
  .lp-planned-grid,
  .lp-pricing-modern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-bento-card--wide {
    grid-column: span 1;
  }

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

@media (max-width: 900px) {
  .lp-modern-page .lp-section__head--split,
  .lp-catalog-panel__head,
  .lp-results-head--modern {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-filter-drawer .lp-catalog-filters__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .lp-modern-hero {
    padding-top: 44px;
  }

  .lp-modern-hero h1 {
    font-size: clamp(2.1rem, 13vw, 3.25rem);
  }

  .lp-modern-lead br {
    display: none;
  }

  .lp-problem-grid,
  .lp-bento-grid,
  .lp-planned-grid,
  .lp-pricing-modern,
  .lp-product-metrics {
    grid-template-columns: 1fr;
  }

  .lp-catalog-searchbox--command {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .lp-catalog-searchbox--command button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .lp-course-card--catalog .lp-course-card__actions {
    grid-template-columns: 1fr;
  }

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

  .lp-quality-panel,
  .lp-catalog-panel,
  .lp-empty-state--modern {
    padding: 24px;
  }

  .lp-product-mock {
    border-radius: 22px;
  }
}

/* LP browser QA adjustments 2026-06-26 */
.lp-modern-page .lp-btn {
  min-width: 0;
}

.lp-modern-page .lp-modern-hero {
  min-height: auto;
  padding: clamp(48px, 6vw, 82px) 0 clamp(52px, 7vw, 88px);
}

.lp-modern-page .lp-modern-actions {
  gap: 12px;
}

.lp-modern-page .lp-modern-actions .lp-btn {
  min-height: 50px;
}

.lp-modern-page .lp-product-mock,
.lp-modern-page .lp-quiz-demo-card,
.lp-modern-page .lp-catalog-panel,
.lp-modern-page .lp-course-card--catalog,
.lp-modern-page .lp-empty-state--modern {
  max-width: 100%;
}

.lp-modern-page .lp-product-options span,
.lp-modern-page .lp-product-search div span,
.lp-modern-page .lp-category-chips a,
.lp-modern-page .lp-roadmap-tabs span,
.lp-modern-page .lp-course-card__features li,
.lp-modern-page .lp-course-card--catalog h3,
.lp-modern-page .lp-course-card__facts dd {
  overflow-wrap: anywhere;
}

.lp-modern-page .lp-catalog-searchbox--command {
  min-width: 0;
}

.lp-modern-page .lp-catalog-searchbox--command input {
  min-width: 0;
}

.lp-modern-page .lp-category-chips {
  align-items: flex-start;
  gap: 8px;
}

.lp-modern-page .lp-category-chips a {
  min-height: 34px;
}

.lp-modern-page .lp-filter-drawer summary {
  border-radius: 18px;
}

.lp-modern-page .lp-filter-drawer summary:focus-visible,
.lp-modern-page .lp-course-card--catalog h3 a:focus-visible,
.lp-modern-page .lp-course-card--catalog .lp-btn:focus-visible,
.lp-modern-page .lp-modern-actions .lp-btn:focus-visible,
.lp-modern-page .lp-catalog-searchbox--command input:focus-visible,
.lp-modern-page .lp-catalog-searchbox--command button:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.34);
  outline-offset: 3px;
}

@media (min-width: 981px) {
  .lp-modern-page .lp-modern-hero__grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.78fr);
    gap: clamp(28px, 4vw, 54px);
  }

  .lp-modern-page .lp-modern-hero h1 {
    font-size: clamp(2.85rem, 4.7vw, 4.65rem);
  }

  .lp-modern-page .lp-product-mock__content {
    padding: 16px;
  }
}

@media (min-width: 1280px) {
  .lp-modern-page .lp-modern-hero__grid {
    align-items: center;
  }
}

@media (max-width: 980px) {
  .lp-modern-page .lp-modern-hero__grid {
    gap: 28px;
  }

  .lp-modern-page .lp-modern-hero__copy {
    max-width: 760px;
  }

  .lp-modern-page .lp-product-mock {
    margin-top: 4px;
  }
}

@media (max-width: 768px) {
  .lp-modern-page .lp-modern-section,
  .lp-modern-page .lp-modern-catalog {
    padding: 56px 0;
  }

  .lp-modern-page .lp-modern-hero {
    padding: 42px 0 52px;
  }

  .lp-modern-page .lp-modern-lead {
    margin-top: 18px;
    line-height: 1.8;
  }

  .lp-modern-page .lp-modern-badges {
    margin-top: 20px;
  }

  .lp-modern-page .lp-modern-actions {
    margin-top: 24px;
  }

  .lp-modern-page .lp-product-mock__content {
    gap: 12px;
    padding: 14px;
  }

  .lp-modern-page .lp-product-card {
    padding: 14px;
  }

  .lp-modern-page .lp-catalog-panel {
    padding: 22px;
  }

  .lp-modern-page .lp-course-card--catalog {
    padding: 18px;
  }

  .lp-modern-page .lp-course-card--catalog .lp-course-card__description {
    -webkit-line-clamp: 3;
  }

  .lp-modern-page .lp-course-card--catalog .lp-course-card__actions {
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .lp-modern-page .lp-shell {
    width: calc(100% - 32px);
  }

  .lp-modern-page .lp-modern-hero h1 {
    font-size: clamp(2rem, 12vw, 2.72rem);
    line-height: 1.1;
  }

  .lp-modern-page .lp-modern-lead,
  .lp-modern-page .lp-modern-copy,
  .lp-modern-page .lp-catalog-panel__head p {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .lp-modern-page .lp-modern-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lp-modern-page .lp-modern-actions .lp-btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 16px;
    white-space: normal;
  }

  .lp-modern-page .lp-modern-badges span,
  .lp-modern-page .lp-roadmap-tabs span,
  .lp-modern-page .lp-category-chips a,
  .lp-modern-page .lp-course-card__features li {
    min-height: 32px;
    font-size: 0.78rem;
  }

  .lp-modern-page .lp-product-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-modern-page .lp-product-metrics strong {
    font-size: 1.65rem;
  }

  .lp-modern-page .lp-catalog-searchbox--command {
    gap: 8px;
    padding: 12px;
  }

  .lp-modern-page .lp-catalog-searchbox--command > span {
    width: 38px;
    height: 38px;
  }

  .lp-modern-page .lp-catalog-searchbox--command input {
    min-height: 48px;
    font-size: 0.96rem;
  }

  .lp-modern-page .lp-catalog-searchbox--command button {
    min-height: 46px;
  }

  .lp-modern-page .lp-filter-drawer summary {
    min-height: 50px;
  }

  .lp-modern-page .lp-empty-state--modern {
    padding: 22px;
  }
}

@media (max-width: 380px) {
  .lp-modern-page .lp-modern-section,
  .lp-modern-page .lp-modern-catalog {
    padding: 48px 0;
  }

  .lp-modern-page .lp-modern-hero {
    padding-top: 36px;
  }

  .lp-modern-page .lp-product-metrics {
    grid-template-columns: 1fr;
  }

  .lp-modern-page .lp-course-card__features {
    gap: 7px;
  }
}
/* LP desktop first-view tightening 2026-06-26 */
@media (min-width: 981px) {
  .lp-modern-page .lp-shell {
    max-width: 1180px;
  }

  .lp-modern-page .lp-modern-hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  }

  .lp-modern-page .lp-modern-hero h1 {
    max-width: 760px;
    font-size: clamp(2.8rem, 4.25vw, 4.25rem);
  }

  .lp-modern-page .lp-modern-lead {
    max-width: 700px;
  }

  .lp-modern-page .lp-product-mock {
    justify-self: end;
    width: 100%;
    max-width: 460px;
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .lp-modern-page .lp-product-mock {
    max-width: 420px;
  }
}
/* Public keyboard focus fallback 2026-06-26 */
.lp-page .lp-header a:focus,
.lp-page .lp-footer a:focus,
.lp-page .lp-mobile-menu__button:focus,
.lp-page .lp-mobile-menu__panel a:focus,
.lp-page .lp-auth-card a:focus,
.lp-page .lp-auth-card button:focus,
.lp-page .lp-auth-card input:focus,
.lp-modern-page a:focus,
.lp-modern-page button:focus,
.lp-modern-page input:focus,
.lp-modern-page select:focus,
.lp-modern-page summary:focus {
  outline: 3px solid rgba(79, 70, 229, 0.34);
  outline-offset: 3px;
}
/* Public keyboard focus hardening 2026-06-26 */
.lp-page .lp-header a:focus,
.lp-page .lp-footer a:focus,
.lp-page .lp-mobile-menu__button:focus,
.lp-page .lp-mobile-menu__panel a:focus,
.lp-page .lp-auth-card a:focus,
.lp-page .lp-auth-card button:focus,
.lp-page .lp-auth-card input:focus,
.lp-modern-page a:focus,
.lp-modern-page button:focus,
.lp-modern-page input:focus,
.lp-modern-page select:focus,
.lp-modern-page summary:focus {
  outline-color: rgba(79, 70, 229, 0.42) !important;
  outline-style: solid !important;
  outline-width: 3px !important;
  outline-offset: 3px !important;
}
/* Public-page scoped focus baseline 2026-06-26 */
.lp-page a:focus,
.lp-page button:focus,
.lp-page input:focus,
.lp-page select:focus,
.lp-page summary:focus {
  outline-color: rgba(79, 70, 229, 0.42) !important;
  outline-style: solid !important;
  outline-width: 3px !important;
  outline-offset: 3px !important;
}