:root {
  --bg: #150911;
  --bg-2: #211018;
  --card: #2a1720;
  --card-2: #351c28;
  --line: rgba(251, 113, 133, .20);
  --line-2: rgba(245, 158, 11, .24);
  --text: #fff7ed;
  --muted: #c2a7ad;
  --dim: #82636d;
  --lime: #fb7185;
  --green: #f97316;
  --teal: #06b6d4;
  --amber: #f59e0b;
  --grad: linear-gradient(135deg, #fb7185 0%, #f97316 46%, #f59e0b 100%);
  --grad-cool: linear-gradient(135deg, #fb7185 0%, #06b6d4 100%);
  --shadow: 0 34px 90px rgba(0, 0, 0, .48);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; cursor: pointer; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 14px;
  border: 1px solid rgba(190, 242, 100, .13);
  border-radius: 999px;
  background: rgba(21, 9, 17, .84);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .32);
}
.topbar.scrolled { border-color: rgba(251, 113, 133, .34); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--grad);
  color: #19080f;
  font-family: Archivo, sans-serif;
  font-weight: 900;
  letter-spacing: -.08em;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: Archivo, sans-serif; font-size: 16px; font-weight: 900; letter-spacing: -.05em; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.nav { display: flex; align-items: center; gap: 3px; }
.nav a { padding: 10px 14px; border-radius: 999px; color: var(--muted); font-size: 14px; font-weight: 800; transition: .2s; }
.nav a:hover { background: rgba(255, 255, 255, .06); color: var(--text); }
.nav .nav-cta { background: var(--grad); color: #19080f; }
.menu-button { display: none; width: 42px; height: 42px; border-radius: 999px; background: rgba(255, 255, 255, .06); }
.menu-button i { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 999px; background: var(--text); }

h1, h2, h3 { margin: 0; font-family: Archivo, sans-serif; letter-spacing: -.055em; }
h1 { font-size: clamp(46px, 7vw, 92px); line-height: .9; }
h2 { font-size: clamp(34px, 4.7vw, 62px); line-height: .96; }
h3 { font-size: 24px; line-height: 1.1; }
p { margin: 0; }
.eyebrow { margin-bottom: 16px; display: inline-block; color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border-radius: 999px; font-weight: 900; transition: transform .18s, box-shadow .18s, background .18s; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #19080f; background: var(--grad); box-shadow: 0 18px 44px rgba(251, 113, 133, .25); }
.button.ghost { color: var(--text); border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .04); }

.hero { position: relative; overflow: hidden; min-height: 100vh; padding: 146px 0 92px; }
.mesh { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(251, 113, 133, .35) 1px, transparent 1px), linear-gradient(90deg, rgba(251, 113, 133, .35) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000 10%, transparent 90%); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 18%, rgba(251, 113, 133, .22), transparent 34%), radial-gradient(circle at 82% 24%, rgba(245, 158, 11, .18), transparent 30%), radial-gradient(circle at 48% 90%, rgba(6, 182, 212, .12), transparent 36%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; }
.hero-copy { max-width: 720px; }
.hero-text { margin-top: 24px; color: var(--muted); font-size: 19px; line-height: 1.75; max-width: 640px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.proof-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.proof-row span { padding: 8px 13px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 999px; background: rgba(255, 255, 255, .04); color: var(--muted); font-weight: 800; font-size: 13px; }

.app-card { display: grid; gap: 16px; }
.phone-shell { max-width: 430px; margin-left: auto; border: 1px solid rgba(251, 113, 133, .18); border-radius: 38px; padding: 18px; background: linear-gradient(145deg, rgba(42, 23, 32, .94), rgba(21, 9, 17, .92)); box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .08); }
.phone-top { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; font-weight: 800; }
.phone-top span { width: 62px; height: 6px; border-radius: 999px; background: rgba(255,255,255,.12); }
.phone-top em { font-style: normal; }
.status-pill { display: inline-flex; margin-top: 28px; padding: 7px 12px; border-radius: 999px; color: #19080f; background: var(--lime); font-size: 12px; font-weight: 900; }
.phone-shell h2 { margin-top: 18px; font-size: 38px; }
.phone-shell p { margin-top: 8px; color: var(--muted); }
.check-circle { width: 120px; height: 120px; display: grid; place-items: center; margin: 28px auto; border-radius: 999px; color: #19080f; background: var(--grad); font-size: 64px; font-weight: 900; box-shadow: 0 0 80px rgba(251, 113, 133, .22); }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.mini-grid article, .ops-panel div { border: 1px solid rgba(255, 255, 255, .08); border-radius: 18px; background: rgba(255, 255, 255, .04); padding: 15px; }
.mini-grid strong, .ops-panel strong { display: block; font-family: Archivo, sans-serif; font-size: 24px; letter-spacing: -.05em; }
.mini-grid span, .ops-panel span { color: var(--muted); font-size: 12px; font-weight: 800; }
.phone-shell button { width: 100%; min-height: 52px; margin-top: 18px; border-radius: 18px; background: var(--grad); color: #19080f; font-weight: 900; }
.ops-panel { max-width: 430px; margin-left: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.summary { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -52px; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: rgba(42, 23, 32, .92); box-shadow: var(--shadow); }
.summary article { padding: 26px; border-right: 1px solid rgba(255,255,255,.06); }
.summary article:last-child { border-right: 0; }
.summary strong { display: block; color: var(--lime); font-family: Archivo, sans-serif; font-size: 28px; }
.summary span { color: var(--muted); font-weight: 800; font-size: 14px; line-height: 1.45; }

.section { padding: 112px 0; }
.section-heading { max-width: 820px; margin-bottom: 48px; }
.section-heading p, .section-copy p, .security-card p, .contact-copy p { color: var(--muted); font-size: 17px; line-height: 1.75; margin-top: 18px; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; }
.feature-stack { display: grid; gap: 14px; }
.feature-stack article { border: 1px solid var(--line); border-radius: 22px; padding: 24px; background: linear-gradient(135deg, rgba(251, 113, 133, .08), rgba(245, 158, 11, .05)); }
.feature-stack b { display: block; font-family: Archivo, sans-serif; font-size: 24px; letter-spacing: -.04em; margin-bottom: 8px; }
.feature-stack span { color: var(--muted); line-height: 1.6; }

.modules-section, .implementation { background: var(--bg-2); }
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.module-card { min-height: 210px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 24px; padding: 24px; background: var(--card); transition: transform .22s, border-color .22s, box-shadow .22s; }
.module-card:hover { transform: translateY(-5px); border-color: rgba(251, 113, 133, .33); box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.module-card h3 { font-size: 22px; margin-bottom: 12px; }
.module-card p { color: var(--muted); line-height: 1.65; font-size: 15px; }

.security-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 18px; }
.security-card, .roadmap { border: 1px solid var(--line); border-radius: 28px; padding: 34px; background: linear-gradient(145deg, var(--card), var(--card-2)); box-shadow: var(--shadow); }
.security-card ul { padding: 0; list-style: none; display: grid; gap: 12px; margin: 24px 0 0; color: var(--text); font-weight: 700; }
.security-card li { display: flex; gap: 10px; }
.security-card li::before { content: ""; width: 7px; height: 7px; margin-top: 8px; border-radius: 50%; background: var(--lime); flex: none; }
.roadmap h3 { font-size: 34px; margin-bottom: 22px; }
.roadmap ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: steps; }
.roadmap li { display: grid; gap: 6px; padding: 18px; border-radius: 18px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07); }
.roadmap b { color: var(--lime); }
.roadmap span { color: var(--muted); line-height: 1.55; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan-card { border: 1px solid rgba(255,255,255,.08); border-radius: 26px; padding: 28px; background: var(--card); }
.plan-card.featured { border-color: rgba(251, 113, 133, .35); background: linear-gradient(145deg, rgba(190, 242, 100, .12), rgba(245, 158, 11, .07)); }
.plan-card span { color: var(--lime); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.plan-card h3 { margin-top: 18px; font-size: 32px; }
.plan-card p { color: var(--muted); line-height: 1.65; margin: 14px 0 24px; }
.plan-card a { color: var(--lime); font-weight: 900; }

.contact-section { background: #19080f; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 58px; align-items: start; }
.contact-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.contact-links a { padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--lime); background: rgba(251, 113, 133, .08); font-weight: 900; }
.lead-form { display: grid; gap: 14px; border: 1px solid var(--line); border-radius: 28px; padding: 28px; background: var(--card); box-shadow: var(--shadow); }
.lead-form label { display: grid; gap: 8px; color: rgba(244, 247, 242, .78); font-size: 14px; font-weight: 900; }
.lead-form input, .lead-form textarea, .lead-form select { width: 100%; border: 1.5px solid rgba(255, 255, 255, .09); border-radius: 16px; padding: 14px 16px; background: rgba(255, 255, 255, .04); color: var(--text); outline: none; }
.lead-form select option { background: #10211a; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { border-color: rgba(251, 113, 133, .55); box-shadow: 0 0 0 4px rgba(251, 113, 133, .11); }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: var(--dim); }
.mail-link { color: var(--lime); font-weight: 900; }
.form-status { min-height: 20px; color: var(--muted); font-size: 14px; font-weight: 700; }
.footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 24px 40px; background: var(--card); border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); }
.footer strong { color: var(--text); font-family: Archivo, sans-serif; }
.footer a { color: var(--lime); font-weight: 900; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1020px) {
  .hero-grid, .split, .security-grid, .contact-grid { grid-template-columns: 1fr; }
  .app-card, .phone-shell, .ops-panel { margin-left: 0; max-width: none; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .summary { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .topbar { top: 10px; width: calc(100% - 20px); border-radius: 24px; }
  .menu-button { display: block; }
  .nav { display: none; position: fixed; top: 66px; left: 10px; right: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 22px; background: rgba(21, 9, 17, .98); flex-direction: column; align-items: stretch; }
  body.menu-open .nav { display: flex; }
  .nav a { padding: 14px; border-radius: 14px; }
  .brand small { display: none; }
  .shell { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 124px; }
  h1 { font-size: clamp(42px, 16vw, 68px); }
  .summary, .module-grid, .plan-grid, .ops-panel { grid-template-columns: 1fr; }
  .summary article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .section { padding: 82px 0; }
  .footer { padding: 22px 18px; }
}

/* LaborCore AI additions */
.channels-section { background: var(--bg-2); }
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.channel-card {
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(42, 23, 32, .96), rgba(53, 28, 40, .76));
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.channel-card:hover { transform: translateY(-5px); border-color: rgba(251, 113, 133, .34); box-shadow: 0 24px 60px rgba(0, 0, 0, .24); }
.channel-card h3 { font-size: 24px; margin-bottom: 12px; }
.channel-card p { color: var(--muted); line-height: 1.65; font-size: 15px; }
@media (max-width: 1020px) { .channel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .channel-grid { grid-template-columns: 1fr; } }


/* AI identity */
.ai-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(251, 113, 133, .16), transparent 34%),
    radial-gradient(circle at 92% 28%, rgba(245, 158, 11, .12), transparent 30%),
    var(--bg);
}
.ai-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 18px; align-items: start; }
.ai-console {
  position: sticky;
  top: 104px;
  border: 1px solid rgba(251, 113, 133, .22);
  border-radius: 32px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(42, 23, 32, .96), rgba(21, 9, 17, .88));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.07);
}
.console-bar { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.console-bar span { width: 10px; height: 10px; border-radius: 999px; background: var(--lime); }
.console-bar span:nth-child(2) { background: var(--amber); }
.console-bar span:nth-child(3) { background: var(--teal); }
.console-bar strong { margin-left: 8px; }
.ai-message { border-radius: 22px; padding: 18px; margin-bottom: 12px; line-height: 1.55; }
.ai-message.user { margin-left: 42px; background: rgba(255, 255, 255, .07); color: var(--text); }
.ai-message.bot { margin-right: 32px; background: linear-gradient(135deg, rgba(251, 113, 133, .16), rgba(245, 158, 11, .09)); border: 1px solid rgba(251, 113, 133, .18); }
.ai-message b { display: block; margin-bottom: 6px; font-family: Archivo, sans-serif; font-size: 24px; letter-spacing: -.04em; }
.ai-message p { color: var(--muted); line-height: 1.65; }
.ai-signal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 14px; }
.ai-signal-grid article { border: 1px solid rgba(255, 255, 255, .08); border-radius: 18px; padding: 16px; background: rgba(255, 255, 255, .04); }
.ai-signal-grid strong { display: block; font-family: Archivo, sans-serif; font-size: 28px; letter-spacing: -.05em; color: var(--amber); }
.ai-signal-grid span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 900; }
.ai-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ai-feature {
  min-height: 210px;
  border: 1px solid rgba(251, 113, 133, .16);
  border-radius: 26px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(42, 23, 32, .96), rgba(53, 28, 40, .76));
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.ai-feature:hover { transform: translateY(-5px); border-color: rgba(245, 158, 11, .38); box-shadow: 0 26px 64px rgba(0,0,0,.28); }
.ai-feature h3 { font-size: 24px; margin-bottom: 12px; }
.ai-feature p { color: var(--muted); line-height: 1.67; font-size: 15px; }
@media (max-width: 1020px) { .ai-layout { grid-template-columns: 1fr; } .ai-console { position: relative; top: 0; } }
@media (max-width: 760px) { .ai-feature-grid, .ai-signal-grid { grid-template-columns: 1fr; } .ai-message.user, .ai-message.bot { margin-left: 0; margin-right: 0; } }
