: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-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__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-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-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__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-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-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;
  }
}
