/* Coach Y — public marketing landing (index.html) */
:root {
  --bg: #0a0516;
  --bg2: #0f0a1e;
  --bg3: #150d28;
  --purple: #7c3aed;
  --purple-soft: #a78bfa;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --white: #f4f0ff;
  --muted: #8b7aa8;
  --border: rgba(124, 58, 237, 0.22);
  --card: rgba(15, 10, 30, 0.88);
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background: var(--bg);
}

body.lp-body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 400;
  color: var(--muted);
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(124, 58, 237, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 90%, rgba(245, 158, 11, 0.07) 0%, transparent 55%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
}

main {
  background: transparent;
}

body.lp-body h1,
body.lp-body h2,
body.lp-body h3,
body.lp-body h4,
.lp-section-title,
.lp-feature-card h3,
.lp-faq summary,
.lp-testimonial cite strong {
  font-family: "Sora", system-ui, sans-serif;
  color: var(--white);
}

.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 5, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.lp-nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-brand {
  justify-self: start;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3);
}

.lp-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  justify-self: center;
}

.lp-nav-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.lp-nav-links a:hover {
  color: var(--purple-soft);
}

.lp-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: none;
  cursor: pointer;
  font: inherit;
  font-family: "DM Sans", sans-serif;
}

.lp-btn:active {
  transform: scale(0.98);
}

.lp-btn-primary {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3);
}

.lp-btn-primary:hover {
  box-shadow: 0 4px 32px rgba(124, 58, 237, 0.45);
}

.lp-btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

.lp-btn-ghost:hover {
  color: var(--purple-soft);
  border-color: rgba(124, 58, 237, 0.35);
}

.lp-btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1c1240;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.35);
}

.lp-btn-gold:hover {
  box-shadow: 0 4px 32px rgba(245, 158, 11, 0.45);
}

.lp-btn-gold.lp-btn-hero {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.lp-btn-hero {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.lp-btn-secondary {
  background: var(--bg2);
  color: var(--white);
  border: 1px solid var(--border);
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.lp-btn-secondary:hover {
  border-color: rgba(124, 58, 237, 0.45);
  color: var(--purple-soft);
}

.lp-btn-outline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.93rem 1.75rem;
  font-size: 1rem;
  box-shadow: none;
}

.lp-btn-outline:hover {
  border-color: rgba(124, 58, 237, 0.45);
  color: var(--purple-soft);
}

.lp-about-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.lp-about-grid p {
  color: var(--muted);
}

.lp-about-modules {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
}

.lp-about-modules h3 {
  color: var(--white);
}

.lp-about-modules li {
  color: var(--muted);
}

.lp-meet-coachy {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lp-meet-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.lp-meet-grid > div > p {
  color: var(--muted);
}

.lp-coachy-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.lp-coachy-mascot {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(124, 58, 237, 0.45));
  background: transparent;
  display: block;
}

.lp-coachy-quote {
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 4px solid var(--purple);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--purple-soft);
  line-height: 1.55;
}

.lp-hero {
  position: relative;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(124, 58, 237, 0.12) 0%, transparent 65%),
    transparent;
}

.lp-hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lp-hero-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: min(90vw, 720px);
  height: min(90vw, 720px);
}

.lp-hero-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.lp-hero-rings span:nth-child(1) { inset: 0; }
.lp-hero-rings span:nth-child(2) { inset: 8%; opacity: 0.85; }
.lp-hero-rings span:nth-child(3) { inset: 18%; opacity: 0.7; }
.lp-hero-rings span:nth-child(4) { inset: 28%; opacity: 0.55; }

.lp-hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.lp-hero-particle--purple {
  background: var(--purple-soft);
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.8);
}

.lp-hero-particle--gold {
  background: var(--gold-light);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
}

.lp-hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
}

.lp-hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--gold-light);
  background: rgba(21, 13, 40, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.lp-hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 18ch;
}

.lp-gold-text {
  color: var(--gold-light);
}

.lp-gradient-text {
  background: linear-gradient(90deg, var(--purple-soft), var(--gold-light), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-lede {
  margin: 0 0 2rem;
  max-width: 32rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0;
  justify-content: center;
}

.lp-hero-whisper {
  margin: 3.5rem auto 0;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(15, 10, 30, 0.75);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 22px;
  max-width: 420px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.2);
}

.lp-hero-whisper__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.35);
}

.lp-hero-whisper__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lp-hero-whisper__quote {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
}

.lp-hero-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.lp-mockup {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3);
  overflow: hidden;
}

.lp-mockup-bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.lp-mockup-bar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--muted);
}

.lp-mockup-body {
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.lp-mockup-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.lp-mockup-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(124, 58, 237, 0.5);
}

.lp-mockup-card {
  flex: 1;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.lp-mockup-card strong {
  color: var(--purple-soft);
}

.lp-mockup-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.lp-mockup-stat div {
  text-align: center;
  padding: 0.65rem;
  border-radius: 0.65rem;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--border);
}

.lp-mockup-stat strong {
  display: block;
  font-size: 1.1rem;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--purple-soft);
}

.lp-mockup-stat span {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-section {
  padding: 5rem 1.5rem;
  max-width: 71.25rem;
  margin: 0 auto;
}

.lp-anchor {
  position: relative;
  top: -5rem;
  visibility: hidden;
}

.lp-section-eyebrow {
  text-align: center;
  margin: 0 0 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: "Sora", system-ui, sans-serif;
}

.lp-section-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--purple-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-family: "Sora", system-ui, sans-serif;
}

.lp-section-title {
  text-align: center;
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lp-section-lede {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.98rem;
}

/* —— What We Offer —— */
.lp-offer {
  padding-top: 6rem;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(124, 58, 237, 0.06) 0%, transparent 70%),
    var(--bg);
}

.lp-offer-grid {
  display: grid;
  gap: 1rem;
}

.lp-offer-card {
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), 0 4px 24px rgba(124, 58, 237, 0.12);
  transition: border-color 0.2s, transform 0.2s;
}

.lp-offer-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-2px);
}

.lp-offer-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.lp-offer-icon--nclex { background: rgba(124, 58, 237, 0.2); }
.lp-offer-icon--coach { background: rgba(236, 72, 153, 0.15); }
.lp-offer-icon--wellness { background: rgba(34, 197, 94, 0.15); }
.lp-offer-icon--chart { background: rgba(245, 158, 11, 0.15); }
.lp-offer-icon--progress { background: rgba(59, 130, 246, 0.15); }
.lp-offer-icon--always { background: rgba(245, 158, 11, 0.12); }

.lp-offer-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--white);
}

.lp-offer-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

/* —— Coach Y showcase —— */
.lp-coachy-showcase {
  padding: 5rem 1.5rem 6rem;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 55% 45% at 75% 40%, rgba(124, 58, 237, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 60%),
    #0a0516;
}

.lp-coachy-showcase-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.lp-coachy-showcase-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--white);
}

.lp-coachy-intro {
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  max-width: 34rem;
}

.lp-coachy-intro strong {
  color: var(--white);
  font-weight: 500;
}

.lp-coachy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-coachy-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
}

.lp-coachy-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
  flex-shrink: 0;
}

.lp-coachy-showcase-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.lp-coachy-avatar {
  width: min(100%, 300px);
  height: auto;
  border-radius: 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.25),
    0 8px 40px rgba(124, 58, 237, 0.35),
    0 24px 64px rgba(0, 0, 0, 0.5);
}

.lp-chat-mockup {
  width: 100%;
  max-width: 22rem;
  border-radius: 1.1rem;
  background: rgba(10, 5, 22, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(124, 58, 237, 0.35), 0 16px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.lp-chat-mockup__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 10, 30, 0.8);
}

.lp-chat-mockup__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(124, 58, 237, 0.35);
  flex-shrink: 0;
}

.lp-chat-mockup__header strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  font-family: "Sora", system-ui, sans-serif;
}

.lp-chat-mockup__status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 400;
}

.lp-chat-mockup__status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
}

.lp-chat-mockup__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 11rem;
}

.lp-chat-mockup--sample {
  max-width: 19rem;
}

.lp-chat-mockup__body--sample {
  min-height: 0;
  padding: 0.85rem 1rem 1rem;
}

.lp-chat-bubble {
  max-width: 92%;
  padding: 0.65rem 0.85rem;
  border-radius: 0.85rem;
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 300;
}

.lp-chat-bubble--coach {
  align-self: flex-start;
  background: rgba(124, 58, 237, 0.28);
  border: 1px solid rgba(124, 58, 237, 0.32);
  color: #e9e0ff;
  border-bottom-left-radius: 0.25rem;
}

.lp-chat-bubble--user {
  align-self: flex-end;
  background: rgba(28, 22, 48, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.15);
  color: #b8adc9;
  border-bottom-right-radius: 0.25rem;
}

.lp-chat-mockup__input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: rgba(15, 10, 30, 0.6);
}

.lp-chat-mockup__input span {
  flex: 1;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
}

.lp-chat-mockup__input button {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 0.45rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1c1240;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: default;
  flex-shrink: 0;
}

.lp-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-bottom: 3rem;
  opacity: 0.85;
}

.lp-logo-pill {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px dashed var(--border);
}

.lp-testimonials {
  display: grid;
  gap: 1.25rem;
}

.lp-testimonial {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3);
}

.lp-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.lp-testimonial q {
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 1rem;
}

.lp-testimonial cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
}

.lp-testimonial cite strong {
  display: block;
  font-size: 0.9rem;
}

.lp-features {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lp-feature-grid {
  display: grid;
  gap: 1.25rem;
}

.lp-feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3);
}

.lp-feature-card:hover {
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-2px);
}

.lp-feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.lp-feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.lp-feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.lp-faq details {
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
  background: var(--card);
}

.lp-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.lp-faq p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.lp-cta-band {
  text-align: center;
  padding: 3.5rem 1.25rem;
  margin: 0 1.25rem 3rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(245, 158, 11, 0.12));
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3);
}

.lp-cta-band p {
  color: var(--muted);
}

.lp-cta-band a[href="login.html"] {
  color: var(--purple-soft);
  font-weight: 600;
}

.lp-footer {
  text-align: center;
  padding: 2rem 1.25rem 2.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #0a0516;
}

.lp-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.lp-mobile-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--muted);
  border-radius: 1px;
}

.lp-mobile-menu {
  display: none;
  position: fixed;
  top: 3.5rem;
  left: 0;
  right: 0;
  z-index: 45;
  background: rgba(15, 10, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.25rem;
  flex-direction: column;
  gap: 0.85rem;
}

.lp-mobile-menu.is-open {
  display: flex;
}

.lp-mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0;
}

.lp-mobile-menu a:hover {
  color: var(--purple-soft);
}

.hidden {
  display: none !important;
}

/* Override Tailwind slate utilities used in markup */
.lp-body .text-slate-300,
.lp-body .text-slate-400,
.lp-body .text-slate-500 {
  color: var(--muted);
}

@media (max-width: 767px) {
  .lp-coachy-showcase-copy h2 br {
    display: none;
  }

  .lp-coachy-avatar {
    width: min(100%, 260px);
  }

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

  .lp-nav-inner {
    display: flex;
    justify-content: space-between;
  }

  .lp-nav-links {
    display: none;
  }

  .lp-hero {
    padding-top: 6.5rem;
    min-height: auto;
  }

  .lp-hero h1 {
    max-width: none;
  }

  .lp-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 20rem;
  }

  .lp-hero-whisper {
    margin-top: 2.5rem;
  }
}

@media (min-width: 768px) {
  .lp-nav-links {
    display: flex;
  }

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

  .lp-offer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }

  .lp-coachy-showcase-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
  }

  .lp-coachy-showcase-visual {
    align-items: flex-end;
  }

  .lp-chat-mockup {
    max-width: 24rem;
  }

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

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

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

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

@media (min-width: 1024px) {
  .lp-hero {
    padding-top: 8rem;
  }
}

/* ============================================================
   Interactive Coach Y landing chat (live widget in showcase)
   ============================================================ */
.lp-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Let the message list grow but scroll once the conversation gets long. */
.lp-chat-mockup__body {
  max-height: 17rem;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 58, 237, 0.5) transparent;
}

.lp-chat-mockup__body::-webkit-scrollbar {
  width: 6px;
}

.lp-chat-mockup__body::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.45);
  border-radius: 999px;
}

/* Inline links inside Coach Y replies (login.html, contact_support.html …). */
.lp-chat-link {
  color: var(--gold, #fcd34d);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(252, 211, 77, 0.4);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.lp-chat-link:hover,
.lp-chat-link:focus-visible {
  color: #fff;
  border-bottom-color: var(--gold, #fcd34d);
}

/* Quick-reply chips — a gentle one-time nudge for first-time visitors. */
.lp-chat-mockup__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 0.85rem;
}

.lp-chat-chip {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #d8cdf0;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(124, 58, 237, 0.35);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lp-chat-chip:hover,
.lp-chat-chip:focus-visible {
  background: rgba(124, 58, 237, 0.3);
  border-color: rgba(167, 139, 250, 0.6);
  color: #fff;
  outline: none;
}

/* Live text input (replaces the static placeholder span). */
.lp-chat-mockup__input #lp-chat-input {
  flex: 1;
  min-width: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--white, #f4f0ff);
  background: rgba(10, 5, 22, 0.6);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 0.55rem;
  padding: 0.5rem 0.7rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lp-chat-mockup__input #lp-chat-input::placeholder {
  color: var(--muted, #8b7aa8);
  opacity: 0.85;
}

.lp-chat-mockup__input #lp-chat-input:focus {
  border-color: rgba(167, 139, 250, 0.7);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

/* Make the send button interactive (override mockup's cursor:default). */
.lp-chat-mockup__input #lp-chat-send {
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.lp-chat-mockup__input #lp-chat-send:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.lp-chat-mockup__input #lp-chat-send:active {
  transform: translateY(0);
}

/* "Coach Y is typing" dots. */
.lp-chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.lp-chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4b5fd;
  opacity: 0.5;
  animation: lp-chat-bounce 1.2s infinite ease-in-out;
}

.lp-chat-dot:nth-child(2) {
  animation-delay: 0.18s;
}

.lp-chat-dot:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes lp-chat-bounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-chat-dot {
    animation: none;
  }
  .lp-chat-mockup__body {
    scroll-behavior: auto;
  }
}
