/* Chatengage landing page — standalone export from web/components/landing */


:root {
  --text: #37352f;
  --text-muted: rgba(55, 53, 47, 0.70);
  --text-faint: rgba(55, 53, 47, 0.70);
  --border: rgba(55, 53, 47, 0.09);
  --border-strong: rgba(55, 53, 47, 0.16);
  --surface: #f7f6f3;
  --white: #ffffff;
  --accent: #1565ad;
  --accent-soft: rgba(35, 131, 226, 0.08);
  --accent-border: rgba(35, 131, 226, 0.15);
  --accent-bg: rgba(35, 131, 226, 0.1);
  --risk: #a85807;
  --risk-soft: rgba(217, 115, 13, 0.08);
  --risk-border: rgba(217, 115, 13, 0.2);
  --green: #448361;
  --btn-dark: #37352f;
  --btn-dark-hover: #2f2d28;
  --max-w: 1100px;
  --font-sans: "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-brand: "Merienda", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.lp-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-y: auto;
  background: var(--white);
}

.lp-container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.lp-section-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.lp-logo {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  line-height: 1.25;
}

.lp-logo-name {
  font-family: var(--font-brand);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lp-logo-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lp-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.lp-nav-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.lp-nav-link:hover {
  color: var(--text);
}

.lp-nav-mobile-btn {
  display: inline-flex;
}

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

  .lp-btn.lp-nav-mobile-btn {
    display: none;
  }
}

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  height: 2rem;
  padding-inline: 0.625rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.lp-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.lp-btn-primary {
  background: var(--btn-dark);
  color: var(--white);
}

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

.lp-btn-outline {
  background: var(--white);
  border-color: var(--border-strong);
  color: var(--text);
}

.lp-btn-outline:hover {
  background: var(--surface);
}

.lp-btn-lg {
  height: 2.5rem;
  padding-inline: 1.25rem;
  font-size: 0.9375rem;
}

.lp-btn-block {
  width: 100%;
  max-width: 280px;
}

/* Hero */
.lp-hero {
  padding: 3.5rem 1.5rem;
}

@media (min-width: 768px) {
  .lp-hero {
    padding-block: 5rem;
  }
}

.lp-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-w);
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: 1fr 1.05fr;
  }

  .lp-hero-copy {
    order: 1;
  }

  .lp-hero-visual {
    order: 2;
  }
}

.lp-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lp-lead {
  margin-bottom: 1.75rem;
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.625;
  color: var(--text-muted);
  text-wrap: pretty;
}

.lp-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .lp-hero-actions {
    flex-direction: row;
  }
}

/* Proof strip */
.lp-proof {
  border-block: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem;
  text-align: center;
}

.lp-proof-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 0.5rem;
}

.lp-proof-list li {
  font-size: 0.875rem;
}

.lp-proof-note {
  font-size: 0.8125rem;
  color: var(--text-faint);
}

/* Section defaults */
.lp-section {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .lp-section {
    padding-block: 6rem;
  }
}

.lp-section-narrow {
  max-width: 960px;
  margin-inline: auto;
}

.lp-section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.lp-section-header p:first-of-type {
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-muted);
}

.lp-section-title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.lp-section-title-lg {
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.lp-section-title-md {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.lp-section-desc {
  font-size: 1.0625rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.lp-section-desc-spaced {
  margin-bottom: 1.25rem;
}

/* Cards */
.lp-card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lp-card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-pain-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(15, 15, 15, 0.04);
  transition: box-shadow 0.15s;
}

.lp-pain-card:hover {
  box-shadow:
    0 4px 12px rgba(15, 15, 15, 0.06),
    0 0 0 1px var(--border);
}

.lp-pain-card .emoji {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.lp-pain-card h3 {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375;
  letter-spacing: -0.01em;
}

.lp-pain-card p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
}

/* How it works */
.lp-section-muted {
  background: var(--surface);
}

.lp-mechanism-intro {
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}

.lp-mechanism-intro .lp-section-desc {
  margin-top: 0.75rem;
}

.lp-package-box {
  max-width: 720px;
  margin-inline: auto;
}

.lp-package-inner {
  padding: 1.5rem;
  border: 1px solid var(--border-strong);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(15, 15, 15, 0.04);
}

.lp-package-label {
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lp-module-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .lp-module-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-module {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(15, 15, 15, 0.03);
}

.lp-module .icon {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.lp-module h3 {
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.lp-module > p {
  margin-bottom: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.lp-module ul li {
  font-size: 0.75rem;
  color: var(--text-faint);
}

.lp-module ul li::before {
  content: "· ";
}

.lp-guide-card {
  margin-top: 0;
  padding: 1.5rem;
  border: 1px solid rgba(35, 131, 226, 0.25);
  border-radius: 0.375rem;
  background: var(--white);
  box-shadow:
    0 4px 12px rgba(15, 15, 15, 0.06),
    0 0 0 1px var(--border);
}

.lp-guide-card .icon {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.lp-guide-card h3 {
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.lp-guide-card p {
  font-size: 0.8125rem;
  line-height: 1.625;
  color: var(--text-muted);
}

/* Flow veins SVG */
.lp-veins {
  position: relative;
  height: 72px;
  margin-block: -0.25rem;
  overflow: visible;
}

.lp-veins svg {
  width: 100%;
  height: 100%;
}

.lp-vein {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 6 10;
  opacity: 0.45;
  animation: veinFlow 1.8s linear infinite;
}

.lp-vein-delay-1 {
  animation-delay: 0.2s;
}

.lp-vein-delay-2 {
  animation-delay: 0.4s;
}

/* Use cases */
.lp-use-intro {
  max-width: 42rem;
  margin-inline: auto;
  padding: 5rem 1.5rem 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .lp-use-intro {
    padding-bottom: 2.5rem;
  }
}

.lp-use-case {
  padding: 3.5rem 1.5rem;
}

.lp-use-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-w);
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .lp-use-grid {
    grid-template-columns: 1fr 1.05fr;
  }

  .lp-use-grid-reverse .lp-use-copy {
    order: 2;
  }

  .lp-use-grid-reverse .lp-use-visual {
    order: 1;
  }
}

/* Detail list */
.lp-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.lp-detail-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.lp-detail-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--accent);
}

/* Features */
.lp-features-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-w);
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .lp-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.lp-feature-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.lp-feature-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--text-faint);
}

.lp-portal-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.lp-portal-tile {
  min-height: 100px;
  padding: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(15, 15, 15, 0.04);
}

.lp-portal-tile-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--text-faint);
}

.lp-portal-tile p {
  font-size: 0.625rem;
}

.lp-portal-tile .title {
  font-weight: 500;
}

.lp-portal-tile .muted {
  color: var(--text-muted);
}

.lp-skeleton {
  margin-top: 0.5rem;
  height: 4px;
  border-radius: 2px;
  background: #f1f1ef;
}

.lp-skeleton.short {
  width: 70%;
  margin-top: 0.25rem;
}

.lp-skeleton.long {
  width: 90%;
}

.lp-badge {
  display: inline-block;
  padding: 0.125rem 0.375rem;
  border-radius: 0.125rem;
  background: rgba(35, 131, 226, 0.12);
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--accent);
}

/* Privacy */
.lp-privacy-box {
  max-width: 800px;
  margin-inline: auto;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(15, 15, 15, 0.04);
}

@media (min-width: 768px) {
  .lp-privacy-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
}

.lp-privacy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--green);
}

@media (min-width: 768px) {
  .lp-privacy-icon {
    margin-bottom: 0;
  }
}

.lp-privacy-icon svg {
  width: 3.5rem;
  height: 3.5rem;
}

.lp-privacy-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-privacy-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--text-muted);
}

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

.lp-privacy-box .lp-section-desc {
  margin-bottom: 1.25rem;
}

/* Portal CTA */
.lp-cta-box {
  max-width: 560px;
  margin-inline: auto;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  text-align: center;
  box-shadow:
    0 4px 12px rgba(15, 15, 15, 0.06),
    0 0 0 1px var(--border);
}

@media (min-width: 768px) {
  .lp-cta-box {
    padding-inline: 2.5rem;
  }
}

.lp-cta-box h2 {
  margin-bottom: 1.75rem;
}

.lp-cta-list {
  max-width: 20rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  text-align: left;
}

.lp-cta-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.375;
  color: var(--text-muted);
}

.lp-cta-list li + li {
  margin-top: 0.625rem;
}

.lp-cta-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--green);
}

.lp-cta-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-faint);
}

/* Footer */
.lp-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 2.5rem 1.5rem;
}

.lp-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: var(--max-w);
  margin-inline: auto;
  text-align: center;
}

.lp-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}

.lp-footer-nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.lp-footer-nav a:hover {
  color: var(--text);
}

.lp-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-faint);
}

.lp-footer-meta .brand {
  font-weight: 600;
  color: var(--text-muted);
}

/* Share mock window */
.lp-mock {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow:
    0 12px 32px rgba(15, 15, 15, 0.08),
    0 0 0 1px var(--border);
}

.lp-mock.animate {
  animation: floatMock 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.lp-mock-titlebar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.lp-mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(55, 53, 47, 0.15);
}

.lp-mock-title {
  flex: 1;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-faint);
}

.lp-mock-body {
  display: flex;
  min-height: 380px;
}

.lp-mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 168px;
  flex-shrink: 0;
  padding: 0.5rem;
  border-right: 1px solid var(--border);
  background: var(--surface);
}

@media (min-width: 640px) {
  .lp-mock-sidebar {
    width: 200px;
  }
}

.lp-mock-sidebar-title {
  padding: 0 0.5rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.lp-mock-files-label {
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.lp-mock-files {
  padding-inline: 0.25rem;
}

.lp-mock-files li {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.6875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-mock-files li.active {
  background: var(--accent-bg);
  font-weight: 500;
  color: var(--accent);
}

.lp-mock-files li:not(.active) {
  color: var(--text-muted);
}

.lp-mock-guide-footer {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.lp-mock-guide-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline: 0.25rem;
  padding: 0.375rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
}

.lp-mock-guide-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.lp-mock-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 0.75rem;
  background: var(--white);
}

@media (min-width: 640px) {
  .lp-mock-main {
    padding: 1rem;
  }
}

.lp-mock-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.625rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.lp-mock-tab {
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.6875rem;
}

.lp-mock-tab.active {
  background: var(--surface);
  font-weight: 500;
}

.lp-mock-tab.inactive {
  color: var(--text-faint);
}

.lp-mock-pills {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
}

.lp-mock-pill {
  display: block;
  padding: 0.375rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  line-height: 1.375;
}

.lp-mock-pill.default {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
}

.lp-mock-pill.risk {
  border: 1px solid var(--risk-border);
  background: var(--risk-soft);
  color: var(--risk);
}

.lp-mock-chat {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.lp-mock-agent-label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.lp-mock-agent-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.lp-mock-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  background: var(--accent);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--white);
}

.lp-mock-agent-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
}

.lp-mock-agent-status {
  font-size: 0.625rem;
  color: var(--accent);
}

.lp-mock-messages {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.lp-mock-message {
  max-width: 95%;
  padding: 0.5rem 0.625rem;
  border: 1px solid var(--accent-border);
  border-radius: 0.25rem;
  background: var(--accent-soft);
  font-size: 0.6875rem;
  line-height: 1.625;
}

.lp-typing-dots {
  display: inline-flex;
  gap: 2px;
  margin-right: 0.25rem;
  vertical-align: middle;
}

.lp-typing-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  animation: bounce 1s infinite;
}

.lp-typing-dots span:nth-child(2) {
  animation-delay: 150ms;
}

.lp-typing-dots span:nth-child(3) {
  animation-delay: 300ms;
}

.lp-mock-suggestion {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.625rem;
  border: 1px solid var(--accent-border);
  border-radius: 0.25rem;
  background: var(--accent-soft);
}

.lp-mock-suggestion-label {
  display: block;
  margin-bottom: 0.125rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.lp-mock-suggestion p {
  font-size: 0.625rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.lp-mock-capture {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.625rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background: var(--surface);
}

.lp-mock-capture-label {
  display: block;
  margin-bottom: 0.125rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.lp-mock-capture p {
  font-size: 0.625rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.lp-mock-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.625rem;
  border: 1px solid var(--border-strong);
  border-radius: 0.25rem;
  background: var(--surface);
  font-size: 0.6875rem;
  color: var(--text-faint);
}

.lp-mock-input kbd {
  padding: 0.125rem 0.375rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background: var(--white);
  font-family: inherit;
  font-size: 0.625rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes floatMock {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes veinFlow {
  to {
    stroke-dashoffset: -32;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-mock.animate {
    animation: none;
  }

  .lp-vein {
    animation: none;
  }

  .lp-typing-dots span {
    animation: none;
  }
}
