/* Neo Card — public landing (card.neomentorai.com) */
:root {
  --forest: #1e4a7a;
  --forest-dark: #0b1f36;
  --forest-mid: #122c4a;
  --gold: #c5a059;
  --gold-bright: #d4af37;
  --gold-soft: #e8d5a8;
  --cream: #e8eef6;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #d0d9e4;
  --page: #f0f4f8;
  --white: #f8fafc;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.lp {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* —— Nav —— */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(240, 244, 248, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 31, 54, 0.06);
}

.lp-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest-dark);
}

.lp-nav-brand img {
  border-radius: 8px;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 500;
}

.lp-nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.lp-nav-links a:hover {
  color: var(--forest-dark);
}

/* —— Buttons —— */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

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

.lp-btn-primary {
  background: var(--gold-bright);
  color: var(--forest-dark);
}

.lp-btn-primary:hover {
  background: #e0bd4a;
  color: var(--forest-dark);
}

.lp-btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 230, 0.28);
}

.lp-btn-ghost:hover {
  border-color: rgba(245, 240, 230, 0.5);
  color: #fff;
}

.lp-btn-nav {
  background: var(--forest-dark);
  color: var(--cream) !important;
  padding: 8px 14px;
  font-size: 0.88rem;
}

.lp-btn-nav:hover {
  background: var(--forest);
  color: var(--cream) !important;
}

/* —— Hero —— */
.lp-hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest-dark);
  color: var(--cream);
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(197, 160, 89, 0.28), transparent 58%),
    radial-gradient(ellipse 50% 40% at 10% 80%, var(--hero-spot, rgba(30, 74, 122, 0.55)), transparent 50%),
    linear-gradient(155deg, var(--hero-grad-a, #070f1a) 0%, var(--forest-mid) 48%, var(--hero-grad-b, #16324f) 100%);
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 12vh, 120px) clamp(20px, 4vw, 48px) clamp(48px, 8vh, 80px);
  max-width: 640px;
}

.lp-brand-word {
  margin: 0 0 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
}

.lp-hero h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lp-hero-lead {
  margin: 22px 0 0;
  max-width: 34ch;
  font-size: 1.125rem;
  color: var(--hero-lead, #9bb0c9);
}

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

.lp-hero-card {
  position: absolute;
  right: clamp(24px, 6vw, 72px);
  bottom: clamp(40px, 8vh, 72px);
  z-index: 2;
  width: min(300px, 38vw);
  animation: lp-float 7s ease-in-out infinite;
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.lp-card {
  aspect-ratio: 1.62;
  border-radius: 18px;
  padding: 18px 20px;
  background: linear-gradient(145deg, var(--hero-card-a, #0f2740), var(--hero-card-b, #060c16));
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.lp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  font-weight: 600;
}

.lp-card-top img {
  opacity: 0.9;
  border-radius: 6px;
}

.lp-card-chip {
  width: 38px;
  height: 28px;
  margin: 26px 0 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #d4af37, #a8843a);
}

.lp-card-num {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: #fff;
  font-weight: 600;
}

.lp-card-bot {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 0.65rem;
  color: var(--card-meta, #7a93b0);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-card-bot strong {
  display: block;
  margin-top: 3px;
  font-size: 0.9rem;
  color: var(--cream);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.lp-card-pts {
  text-align: right;
}

.lp-card-pts strong {
  color: var(--gold-bright);
  font-size: 1.05rem;
}

/* —— Sections —— */
.lp-section {
  padding: clamp(56px, 10vh, 96px) clamp(20px, 4vw, 48px);
  max-width: 1100px;
  margin: 0 auto;
}

.lp-section-tint {
  max-width: none;
  background: linear-gradient(180deg, var(--section-tint-a, #e8eef5), var(--section-tint-b, #dde5f0));
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

.lp-section-tint > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.lp-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

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

.lp-section h2 {
  margin: 0 0 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--forest-dark);
  line-height: 1.15;
}

.lp-lede {
  margin: 0 0 28px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.lp-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
}

.lp-panel-customer { border-top: 4px solid var(--gold); }
.lp-panel-biz { border-top: 4px solid var(--forest); }

.lp-panel h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
}

.lp-who {
  margin: 6px 0 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.lp-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-panel li {
  padding-left: 18px;
  position: relative;
  font-size: 0.95rem;
}

.lp-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.lp-panel-biz li::before { background: var(--forest); }

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

.lp-text-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 74, 122, 0.35);
}

.lp-text-link:hover {
  border-bottom-color: var(--forest);
}

/* —— Steps —— */
.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.lp-steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.lp-step-n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--forest-dark);
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-steps strong {
  font-size: 0.92rem;
  color: var(--ink);
}

.lp-steps span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
}

/* —— Features —— */
.lp-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.lp-feats > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px;
}

.lp-feats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-dark);
  font-size: 0.98rem;
}

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

/* —— CTA band —— */
.lp-cta-band {
  margin: 0 clamp(20px, 4vw, 48px) 48px;
  padding: clamp(36px, 6vw, 52px);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(197, 160, 89, 0.25), transparent 55%),
    linear-gradient(135deg, var(--forest-dark), var(--forest-mid));
  color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-cta-band h2 {
  margin: 0 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--cream);
}

.lp-cta-band p {
  margin: 0;
  color: #a8b5a0;
  max-width: 36ch;
}

/* —— Footer —— */
.lp-foot {
  padding: 40px clamp(20px, 4vw, 48px) 56px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  background: #ebeee8;
}

.lp-foot-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lp-foot-brand img { border-radius: 8px; }

.lp-foot-brand strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
}

.lp-foot-brand span {
  font-size: 0.82rem;
  color: var(--muted);
}

.lp-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.lp-foot-k {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.lp-foot-links a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 74, 122, 0.25);
}

.lp-foot-links a:hover {
  border-bottom-color: var(--forest);
}

@media (max-width: 900px) {
  .lp-hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(280px, 86%);
    margin: 0 clamp(20px, 4vw, 48px) 48px;
    animation: none;
  }

  .lp-hero {
    align-items: start;
    min-height: 0;
  }

  .lp-hero-inner {
    padding-bottom: 36px;
  }

  .lp-split,
  .lp-feats,
  .lp-steps {
    grid-template-columns: 1fr;
  }

  .lp-nav-links a:not(.lp-btn) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-card { animation: none; }
  html { scroll-behavior: auto; }
}
