/* ──────────────────────────────────────────────────────────
   Lemonsoft AI landing — Hero section styles
   Exported from erp-tekoaly.html. Drop into a HubSpot module or
   any host page. The HTML must use the same .hero / .wrap /
   .hero-title etc. classes as the source.
   ────────────────────────────────────────────────────────── */

:root {
  --lo-lemon:        #FFC907;
  --lo-yellow-hover: #FFD44F;
  --lo-slate-100:    #F8F8F8;
  --lo-slate-150:    #F9FAFA;
  --lo-slate-200:    #E6E9EA;
  --lo-slate-300:    #CED3D6;
  --lo-slate-600:    #5A666C;
  --lo-slate-700:    #464F54;
  --lo-slate-900:    #23343D;
  --lo-slate-950:    #1E2224;
  --lo-green:        #7DB43E;
}

/* The hero is full-bleed; the .wrap centers content inside it.
   If you already have a global .wrap in your host page, you can
   drop this rule. */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Buttons used in hero CTAs ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 4px;
  font: 700 13px/1 Lato, sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.btn-primary       { background: var(--lo-lemon); color: var(--lo-slate-950); }
.btn-primary:hover { background: var(--lo-yellow-hover); }
.btn-ghost         { background: transparent; color: var(--lo-slate-950); }
.btn-ghost:hover   { background: var(--lo-slate-100); }
.btn-lg            { padding: 14px 22px; font-size: 14px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--lo-slate-900);
  color: #fff;
  padding: 84px 0 110px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -220px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,7,.20) 0%, rgba(255,201,7,0) 60%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,160,206,.12) 0%, rgba(36,160,206,0) 60%);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Eyebrow pill above the headline */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 11px/1 Lato, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lo-lemon);
  padding: 8px 12px;
  border: 1px solid rgba(255,201,7,.4);
  border-radius: 999px;
  background: rgba(255,201,7,.08);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--lo-lemon);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}

/* Headline */
h1.hero-title {
  font: 900 60px/1.04 Lato, sans-serif;
  letter-spacing: -0.025em;
  margin: 24px 0 0;
}
h1.hero-title .accent {
  color: var(--lo-lemon);
}
h1.hero-title .stroke {
  -webkit-text-stroke: 1.5px var(--lo-lemon);
  color: transparent;
}

/* Lede paragraph */
.hero-lede {
  font: 400 18px/1.55 Lato, sans-serif;
  color: #C7CFD3;
  margin: 24px 0 32px;
  max-width: 560px;
}
.hero-lede strong {
  color: #fff;
  font-weight: 700;
}

/* CTA row */
.hero-ctas {
  display: flex;
  gap: 12px;
  margin: 32px 0 36px;
  flex-wrap: wrap;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-stats .stat .num {
  font: 900 32px/1 Lato, sans-serif;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-stats .stat .num .unit {
  font-size: 18px;
  color: var(--lo-lemon);
  margin-left: 2px;
}
.hero-stats .stat .lbl {
  font: 400 12px/1.3 Lato, sans-serif;
  color: #9CA9B0;
  margin-top: 6px;
  max-width: 140px;
}

/* ── MCP callout inside the hero ─────────────────────────── */
.hero-mcp {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,201,7,.25);
  max-width: 560px;
}
.hero-mcp .mcp-badge {
  font: 700 9px/1 Lato, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--lo-lemon);
  color: var(--lo-slate-950);
  padding: 5px 8px;
  border-radius: 3px;
  flex-shrink: 0;
}
.hero-mcp .mcp-body         { flex: 1; min-width: 0; }
.hero-mcp .mcp-title        { font: 700 14px/1.3 Lato, sans-serif; color: #fff; }
.hero-mcp .mcp-body .mcp-sub        { font: 400 12.5px/1.45 Lato, sans-serif; color: #9CA9B0; margin-top: 4px; }
.hero-mcp .mcp-body .mcp-sub a      { color: var(--lo-lemon); text-decoration: none; font-weight: 700; }
.hero-mcp .mcp-body .mcp-sub a:hover{ text-decoration: underline; }
.hero-mcp .logos {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.hero-mcp .logos span {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 900 12px/1 Lato, sans-serif;
  color: var(--lo-slate-950);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

/* ── Hero preview — stacked product cards ───────────────── */
.hero-preview { position: relative; height: 520px; }
.preview-card {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45), 0 6px 14px rgba(0,0,0,.25);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}

/* Card window chrome */
.pc-chrome {
  height: 30px;
  background: #F4F5F6;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid #E6E9EA;
}
.pc-chrome i.tl   { width: 9px; height: 9px; border-radius: 50%; background: #DADEE0; }
.pc-chrome i.tl.r { background: #FF6058; }
.pc-chrome i.tl.y { background: #FFBD2E; }
.pc-chrome i.tl.g { background: #28C940; }
.pc-chrome .url {
  margin-left: 14px;
  flex: 1;
  height: 18px;
  background: #fff;
  border: 1px solid #E6E9EA;
  border-radius: 3px;
  font: 400 10px/18px Lato, sans-serif;
  color: #5A666C;
  padding: 0 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Card 1 — LemonAI chat */
.pc-chat {
  width: 380px;
  height: 400px;
  right: 60px;
  top: 0;
  transform: rotate(-3deg);
  z-index: 3;
}
.pc-chat .pc-body { padding: 16px; }

.chat-row { display: flex; gap: 8px; margin-bottom: 12px; }
.chat-row.r { justify-content: flex-end; }
.chat-avatar {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: linear-gradient(180deg, #FFE06A 0%, #FFC907 60%, #E0A800 100%);
  color: var(--lo-slate-950);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
}
.chat-avatar.user {
  background: var(--lo-slate-150);
  color: var(--lo-slate-700);
  border-radius: 50%;
}

.bubble {
  padding: 8px 11px;
  border-radius: 10px 10px 10px 3px;
  background: var(--lo-slate-100);
  color: var(--lo-slate-950);
  font: 400 12px/1.45 Lato, sans-serif;
  max-width: 240px;
}
.bubble.user {
  background: var(--lo-slate-900);
  color: #fff;
  border-radius: 10px 10px 3px 10px;
  margin-left: auto;
}
.bubble.user + .chat-avatar { order: 2; }

/* Action card inside the chat */
.actcard {
  margin-top: 6px;
  border: 1px solid var(--lo-slate-200);
  border-radius: 5px;
  overflow: hidden;
}
.actcard .top {
  padding: 6px 10px;
  background: #EAF4DB;
  font: 700 10px/1.2 Lato, sans-serif;
  color: #3F6A1D;
  display: flex;
  align-items: center;
  gap: 6px;
}
.actcard .row {
  padding: 5px 10px;
  border-bottom: 1px solid var(--lo-slate-200);
  display: flex;
  gap: 10px;
  font: 400 10px/1.3 Lato, sans-serif;
}
.actcard .row:last-of-type { border-bottom: none; }
.actcard .row .k { width: 60px; color: var(--lo-slate-600); }
.actcard .row .v { color: var(--lo-slate-950); font-weight: 700; }
.actcard .foot {
  padding: 7px 10px;
  background: var(--lo-slate-100);
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}
.actcard .foot button {
  font: 700 10px/1 Lato, sans-serif;
  padding: 5px 9px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
}
.actcard .foot .ok     { background: var(--lo-green); color: #fff; }
.actcard .foot .cancel {
  background: #fff;
  color: var(--lo-slate-950);
  border: 1px solid var(--lo-slate-300);
}

/* Card 2 — Marketplace */
.pc-market {
  width: 380px;
  height: 260px;
  right: 0;
  bottom: 0;
  transform: rotate(2.5deg);
  z-index: 2;
}
.pc-market .pc-body {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.agent-tile {
  padding: 9px;
  border: 1px solid var(--lo-slate-200);
  border-radius: 5px;
}
.agent-tile .name {
  font: 700 11px/1.2 Lato, sans-serif;
  color: var(--lo-slate-950);
  display: flex;
  gap: 6px;
  align-items: center;
}
.agent-tile .name i { font-size: 10px; }
.agent-tile .desc {
  font: 400 10px/1.3 Lato, sans-serif;
  color: var(--lo-slate-600);
  margin-top: 4px;
}
.agent-tile .pill {
  display: inline-block;
  margin-top: 6px;
  font: 700 9px/1 Lato, sans-serif;
  padding: 3px 6px;
  border-radius: 2px;
}
.pill.blue   { background: #E8F5FB; color: #1A6FA8; }
.pill.green  { background: #EAF4DB; color: #3F6A1D; }
.pill.orange { background: #FEE6CC; color: #A24315; }
.pill.lemon  { background: #FFF6D4; color: #7A5500; }
.pill.purple { background: #EFE3FB; color: #5B2A8A; }

/* Card 3 — Outlook teaser */
.pc-outlook {
  width: 260px;
  height: 200px;
  left: -30px;
  bottom: 80px;
  transform: rotate(-6deg);
  z-index: 1;
}
.pc-outlook .pc-body { padding: 10px 12px; }
.ol-line {
  height: 6px;
  background: var(--lo-slate-150);
  border-radius: 2px;
  margin-bottom: 6px;
}
.ol-line.w70 { width: 70%; }
.ol-line.w90 { width: 90%; }
.ol-line.w50 { width: 50%; background: var(--lo-lemon); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 820px) {
  .hero .wrap          { grid-template-columns: 1fr; }
  .hero-preview        { height: 420px; }
  h1.hero-title        { font-size: 42px; }
}
