:root {
  --lp-background: #ffffff;
  --lp-foreground: #172033;
  --lp-card: #ffffff;
  --lp-primary: #2563eb;
  --lp-primary-dark: #1d4ed8;
  --lp-primary-foreground: #ffffff;
  --lp-secondary: #f6f8fb;
  --lp-muted: #f2f4f7;
  --lp-muted-foreground: #667085;
  --lp-accent: #e9f7fb;
  --lp-accent-foreground: #155e75;
  --lp-accent-cyan: #5ee1ee;
  --lp-border: #e4e8ef;
  --lp-input: #d9dee8;
  --lp-danger: #b42318;
  --lp-danger-bg: #fef3f2;
  --lp-danger-border: #fecdca;
  --lp-radius: 12px;
  --lp-shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.04);
  --lp-shadow-md: 0 8px 18px rgba(16, 24, 40, 0.08);
  --lp-shadow-xl: 0 20px 44px rgba(37, 99, 235, 0.10);
  --lp-container: 1152px;
}

html {
  scroll-behavior: smooth;
}

body.ai-agent-lp-page {
  margin: 0;
  background: var(--lp-background);
  color: var(--lp-foreground);
}

body.ai-agent-lp-page #wpadminbar {
  position: fixed;
}

.ai-agent-lp,
.ai-agent-lp *,
.ai-agent-lp *::before,
.ai-agent-lp *::after {
  box-sizing: border-box;
}

.ai-agent-lp {
  min-width: 0;
  overflow-x: clip;
  background: var(--lp-background);
  color: var(--lp-foreground);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.ai-agent-lp img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ai-agent-lp a {
  color: inherit;
  text-decoration: none;
}

.ai-agent-lp button,
.ai-agent-lp input,
.ai-agent-lp textarea {
  font: inherit;
}

.ai-agent-lp button {
  border: 0;
}

.ai-agent-lp h1,
.ai-agent-lp h2,
.ai-agent-lp h3,
.ai-agent-lp p,
.ai-agent-lp dl,
.ai-agent-lp dd,
.ai-agent-lp ol,
.ai-agent-lp ul {
  margin: 0;
}

.ai-agent-lp ol,
.ai-agent-lp ul {
  padding: 0;
  list-style: none;
}

.lp-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.lp-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  display: inline-block;
  stroke: currentColor;
}

.lp-container {
  width: min(100% - 32px, var(--lp-container));
  margin-inline: auto;
}

.lp-container--narrow {
  max-width: 896px;
}

.lp-container--faq {
  max-width: 768px;
}

.lp-section {
  position: relative;
  padding-block: 96px;
  border-bottom: 1px solid var(--lp-border);
  scroll-margin-top: 80px;
}

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

.lp-center {
  display: flex;
  justify-content: center;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(228, 232, 239, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.admin-bar .lp-header {
  top: 32px;
}

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

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
}

.lp-brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--lp-primary);
  color: var(--lp-primary-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-brand__mark .lp-icon {
  width: 20px;
  height: 20px;
}

.lp-brand__name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-nav a {
  color: var(--lp-muted-foreground);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.lp-nav a:hover,
.lp-nav a:focus-visible {
  color: var(--lp-foreground);
}

.lp-button {
  min-height: 48px;
  padding: 11px 24px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

.lp-button:focus-visible,
.ai-agent-lp a:focus-visible,
.ai-agent-lp button:focus-visible,
.ai-agent-lp input:focus-visible,
.ai-agent-lp textarea:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.24);
  outline-offset: 2px;
}

.lp-button--small {
  min-height: 40px;
  padding: 8px 16px;
}

.lp-button--primary {
  background: var(--lp-primary);
  color: var(--lp-primary-foreground);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.16);
}

.lp-button--primary:hover {
  background: var(--lp-primary-dark);
}

.lp-button--outline {
  border-color: var(--lp-border);
  background: var(--lp-card);
  color: var(--lp-foreground);
}

.lp-button--outline:hover {
  background: var(--lp-secondary);
}

.lp-button--outline .lp-icon {
  color: var(--lp-primary);
}

.lp-heading {
  max-width: 768px;
}

.lp-heading--center {
  margin-inline: auto;
  text-align: center;
}

.lp-eyebrow {
  display: inline-block;
  color: var(--lp-primary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.lp-eyebrow--pill {
  padding: 5px 12px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.05);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.lp-eyebrow--cyan {
  color: var(--lp-accent-cyan);
}

.lp-heading h2,
.lp-training h2 {
  margin-top: 12px;
  color: var(--lp-foreground);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lp-heading > p {
  margin-top: 20px;
  color: var(--lp-muted-foreground);
  line-height: 1.85;
  text-wrap: pretty;
}

.lp-hero {
  overflow: hidden;
  padding-block: 0;
  background: var(--lp-background);
}

.lp-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(233, 247, 251, 0.8) 0%, rgba(255, 255, 255, 0.88) 44%, #ffffff 100%);
}

.lp-hero__grid {
  position: relative;
  min-height: 650px;
  padding-block: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.lp-hero h1 {
  margin-top: 24px;
  color: var(--lp-foreground);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.045em;
  text-wrap: pretty;
}

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

.lp-lead {
  max-width: 620px;
  margin-top: 24px !important;
  color: var(--lp-muted-foreground);
  line-height: 1.9;
  text-wrap: pretty;
}

.lp-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-info-grid {
  margin-top: 40px !important;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lp-info-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--lp-border);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.76);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lp-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: var(--lp-accent);
  color: var(--lp-accent-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.lp-info-card dt {
  color: var(--lp-muted-foreground);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.lp-info-card dd {
  margin-top: 2px;
  color: var(--lp-foreground);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.lp-note {
  margin-top: 24px !important;
  color: var(--lp-muted-foreground);
  font-size: 12px;
  line-height: 1.8;
}

.lp-hero__visual {
  overflow: hidden;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: var(--lp-card);
  box-shadow: var(--lp-shadow-xl);
}

.lp-hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lp-card-grid {
  margin-top: 48px;
  display: grid;
  gap: 20px;
}

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

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

.lp-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-card);
  box-shadow: var(--lp-shadow-sm);
}

.lp-card--content {
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.lp-card--content:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-md);
}

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

.lp-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--lp-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-card__icon .lp-icon {
  width: 24px;
  height: 24px;
}

.lp-card__icon--cyan {
  background: var(--lp-accent);
  color: var(--lp-accent-foreground);
}

.lp-card__number,
.lp-flow-card__step {
  color: var(--lp-muted-foreground);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  font-weight: 600;
}

.lp-card h3 {
  margin-top: 16px;
  color: var(--lp-foreground);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.lp-card p {
  margin-top: 8px;
  color: var(--lp-muted-foreground);
  font-size: 14px;
  line-height: 1.8;
}

.lp-cta-box {
  margin-top: 48px;
  padding: 32px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--lp-radius);
  background: rgba(37, 99, 235, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.lp-cta-box p {
  color: var(--lp-foreground);
  font-size: 18px;
  font-weight: 800;
  text-wrap: balance;
}

.lp-check-grid {
  margin-top: 40px !important;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lp-check-grid li {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--lp-border);
  border-radius: 9px;
  background: var(--lp-card);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--lp-shadow-sm);
  color: var(--lp-foreground);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.lp-check {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--lp-primary);
  color: var(--lp-primary-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.lp-check .lp-icon {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.lp-body-copy {
  margin-top: 32px !important;
  color: var(--lp-muted-foreground);
  line-height: 1.9;
}

.lp-flow-grid {
  margin-top: 48px !important;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.lp-flow-card {
  position: relative;
  min-width: 0;
  min-height: 206px;
  padding: 20px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-card);
  box-shadow: var(--lp-shadow-sm);
}

.lp-flow-card__step {
  color: var(--lp-primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-flow-card h3 {
  margin-top: 8px;
  color: var(--lp-foreground);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.lp-flow-card p {
  margin-top: 8px;
  color: var(--lp-muted-foreground);
  font-size: 14px;
  line-height: 1.75;
}

.lp-flow-card__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  background: var(--lp-background);
  color: var(--lp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-flow-card__arrow .lp-icon {
  width: 14px;
  height: 14px;
}

.lp-training {
  background: var(--lp-foreground);
  color: var(--lp-background);
}

.lp-training__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 48px;
}

.lp-training h2 {
  color: var(--lp-background);
}

.lp-training > .lp-container > div > p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.lp-training > .lp-container > div > p + p {
  margin-top: 16px;
}

.lp-pillar-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lp-pillar-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.05);
}

.lp-pillar-card > span {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(94, 225, 238, 0.18);
  color: var(--lp-accent-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-pillar-card h3 {
  margin-top: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.lp-pillar-card p {
  margin-top: 6px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 12px;
  line-height: 1.75;
}

.lp-training__visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.lp-training__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lp-instructor {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-card);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--lp-shadow-sm);
}

.lp-instructor img {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
  object-position: top center;
}

.lp-instructor__label {
  color: var(--lp-primary);
  font-size: 12px;
  font-weight: 800;
}

.lp-instructor h3 {
  margin-top: 4px;
  color: var(--lp-foreground);
  font-size: 18px;
  font-weight: 800;
}

.lp-instructor__role {
  margin-top: 2px !important;
  color: var(--lp-muted-foreground);
  font-size: 14px;
  font-weight: 600;
}

.lp-instructor div > p:last-child {
  margin-top: 12px;
  color: var(--lp-muted-foreground);
  font-size: 14px;
  line-height: 1.8;
}

.lp-overview {
  margin-top: 40px !important;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-card);
  box-shadow: var(--lp-shadow-sm);
}

.lp-overview > div {
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
}

.lp-overview > div + div {
  border-top: 1px solid var(--lp-border);
}

.lp-overview dt {
  color: var(--lp-muted-foreground);
  font-size: 14px;
  font-weight: 800;
}

.lp-overview dd {
  color: var(--lp-foreground);
  font-size: 14px;
  font-weight: 600;
}

.lp-overview__note {
  margin-top: 24px !important;
  margin-bottom: 32px !important;
  color: var(--lp-muted-foreground);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

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

.lp-faq-item {
  overflow: hidden;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-card);
  box-shadow: var(--lp-shadow-sm);
}

.lp-faq-item h3 {
  margin: 0;
}

.lp-faq-item button {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  color: var(--lp-foreground);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.lp-faq-item button > span:first-child {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.lp-faq-item__toggle {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--lp-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.lp-faq-icon {
  width: 16px;
  height: 16px;
}

.lp-faq-icon--minus {
  display: none;
}

.lp-faq-item button[aria-expanded="true"] .lp-faq-icon--plus {
  display: none;
}

.lp-faq-item button[aria-expanded="true"] .lp-faq-icon--minus {
  display: block;
}

.lp-faq-item__panel {
  padding: 0 20px 20px;
}

.lp-faq-item__panel p {
  color: var(--lp-muted-foreground);
  font-size: 14px;
  line-height: 1.85;
}

.lp-signup__success {
  padding: 40px;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: var(--lp-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--lp-shadow-sm);
}

.lp-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--lp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-success-icon .lp-icon {
  width: 36px;
  height: 36px;
}

.lp-signup__success h2 {
  margin-top: 24px;
  color: var(--lp-foreground);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
}

.lp-signup__success > p {
  max-width: 600px;
  margin-top: 16px;
  color: var(--lp-muted-foreground);
  line-height: 1.9;
}

.lp-signup__success .lp-signup__closing {
  color: var(--lp-foreground);
  font-size: 14px;
  font-weight: 700;
}

.lp-form {
  margin-top: 40px;
  padding: 32px;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: var(--lp-card);
  display: grid;
  gap: 20px;
  box-shadow: var(--lp-shadow-sm);
}

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

.lp-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-field label {
  color: var(--lp-foreground);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.lp-badge {
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--lp-muted);
  color: var(--lp-muted-foreground);
  font-size: 10px;
  font-weight: 800;
  vertical-align: middle;
}

.lp-badge--required {
  background: rgba(37, 99, 235, 0.1);
  color: var(--lp-primary);
}

.lp-field input,
.lp-field textarea {
  width: 100%;
  border: 1px solid var(--lp-input);
  border-radius: 7px;
  background: var(--lp-background);
  color: var(--lp-foreground);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-field input {
  height: 44px;
  padding: 0 12px;
}

.lp-field textarea {
  min-height: 112px;
  padding: 10px 12px;
  resize: vertical;
}

.lp-field input::placeholder,
.lp-field textarea::placeholder {
  color: #98a2b3;
}

.lp-field input:focus,
.lp-field textarea:focus {
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
  outline: 0;
}

.lp-field input[aria-invalid="true"],
.lp-field textarea[aria-invalid="true"] {
  border-color: var(--lp-danger);
}

.lp-date-box {
  padding: 12px 16px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 7px;
  background: rgba(37, 99, 235, 0.05);
}

.lp-date-box span {
  display: block;
  color: var(--lp-muted-foreground);
  font-size: 12px;
  font-weight: 800;
}

.lp-date-box strong {
  display: block;
  margin-top: 2px;
  color: var(--lp-foreground);
  font-size: 14px;
  line-height: 1.6;
}

.lp-checkbox-card {
  padding: 16px;
  border: 1px solid var(--lp-input);
  border-radius: 7px;
  background: var(--lp-background);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.lp-checkbox-card input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--lp-primary);
  flex: 0 0 auto;
}

.lp-checkbox-card strong {
  display: block;
  color: var(--lp-foreground);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.lp-checkbox-card small {
  display: block;
  margin-top: 2px;
  color: var(--lp-muted-foreground);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
}

.lp-checkbox-card a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-form__error {
  padding: 12px 16px;
  border: 1px solid var(--lp-danger-border);
  border-radius: 7px;
  background: var(--lp-danger-bg);
  color: var(--lp-danger);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.lp-button--submit {
  width: 100%;
  margin-top: 8px;
}

.lp-button--submit:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

.lp-form__privacy-note {
  color: var(--lp-muted-foreground);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.lp-footer {
  padding-block: 48px;
  background: var(--lp-foreground);
  color: var(--lp-background);
}

.lp-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.lp-brand--footer {
  color: #ffffff;
}

.lp-footer__top > div > p {
  max-width: 480px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.lp-footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.52);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}

.lp-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.lp-footer__bottom a {
  transition: color 0.2s ease;
}

.lp-footer__bottom a:hover {
  color: #ffffff;
}

[hidden] {
  display: none !important;
}

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

  .lp-hero__grid,
  .lp-training__grid {
    grid-template-columns: 1fr;
  }

  .lp-hero__grid {
    min-height: 0;
  }

  .lp-hero__visual,
  .lp-training__visual {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

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

  .lp-flow-card__arrow {
    display: none;
  }

  .lp-flow-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  body.admin-bar .lp-header {
    top: 46px;
  }

  .lp-container {
    width: min(100% - 32px, var(--lp-container));
  }

  .lp-section {
    padding-block: 64px;
    scroll-margin-top: 72px;
  }

  .lp-header__inner {
    height: 60px;
  }

  .lp-brand__name {
    font-size: 17px;
  }

  .lp-header .lp-button--small {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .lp-hero__grid {
    padding-block: 64px;
    gap: 40px;
  }

  .lp-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .lp-desktop-break {
    display: none;
  }

  .lp-actions {
    flex-direction: column;
  }

  .lp-actions .lp-button {
    width: 100%;
  }

  .lp-info-grid,
  .lp-card-grid--3,
  .lp-card-grid--content,
  .lp-check-grid,
  .lp-flow-grid,
  .lp-pillar-grid,
  .lp-form__grid {
    grid-template-columns: 1fr;
  }

  .lp-card-grid,
  .lp-flow-grid {
    margin-top: 36px;
  }

  .lp-card-grid--content .lp-card:nth-child(5) {
    grid-column: auto;
  }

  .lp-cta-box {
    padding: 24px 20px;
  }

  .lp-training__grid {
    gap: 40px;
  }

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

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

  .lp-form {
    padding: 24px 20px;
  }

  .lp-footer__top,
  .lp-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  .lp-header .lp-brand__name {
    display: none;
  }

  .lp-header__inner {
    gap: 10px;
  }

  .lp-header .lp-button--small {
    padding-inline: 11px;
  }

  .lp-hero h1 {
    font-size: 33px;
  }

  .lp-heading h2,
  .lp-training h2 {
    font-size: 26px;
  }

  .lp-info-card {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ai-agent-lp *,
  .ai-agent-lp *::before,
  .ai-agent-lp *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
