/* Gimino landing (/home) — SaaS layout, light + dark */

:root {
  --lp-bg: #ffffff;
  --lp-band: #f4f6fa;
  --lp-surface: #ffffff;
  --lp-surface-2: #f7f9fc;
  --lp-ink: #0f0f13;
  --lp-muted: #5e5e61;
  --lp-soft: #a5a0a4;
  --lp-stroke: #e6e9f0;
  --lp-stroke-2: #eef1f6;
  --lp-grid: rgba(178, 186, 215, 0.35);
  --lp-glow: #dbe6fb;
  --lp-glow-2: #c9d9f6;
  --lp-blue: #2563c9;
  --lp-blue-2: #1a2f56;
  --lp-blue-soft: #e7eefb;
  --lp-blue-ink: #1f4f9e;
  --lp-btn: linear-gradient(180deg, #3a78d8 0%, #1f4f9e 100%);
  --lp-shadow: 0 1px 2px rgba(15, 15, 19, 0.04), 0 12px 32px rgba(26, 47, 86, 0.08);
  --lp-shadow-lg: 0 30px 80px rgba(26, 47, 86, 0.14);
  --lp-font: "IRANSansX", Tahoma, "Segoe UI", sans-serif;
  color-scheme: light;
}

html[data-theme="dark"] {
  --lp-bg: #0f0f13;
  --lp-band: #13151b;
  --lp-surface: #171a21;
  --lp-surface-2: #1c2029;
  --lp-ink: #f3f4f6;
  --lp-muted: #a5a0a4;
  --lp-soft: #6f6a6e;
  --lp-stroke: #262a34;
  --lp-stroke-2: #20242d;
  --lp-grid: rgba(81, 95, 140, 0.28);
  --lp-glow: rgba(37, 99, 201, 0.22);
  --lp-glow-2: rgba(81, 95, 140, 0.26);
  --lp-blue: #5b95ea;
  --lp-blue-2: #b6cdf4;
  --lp-blue-soft: #16243d;
  --lp-blue-ink: #9fc0f5;
  --lp-btn: linear-gradient(180deg, #3f7fe0 0%, #2455a8 100%);
  --lp-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 12px 32px rgba(0, 0, 0, 0.35);
  --lp-shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.5);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 104px; }
/* theme-store.js writes inline html/body background colors */
html, body {
  margin: 0;
  background: var(--lp-bg) !important;
  color: var(--lp-ink);
  font-family: var(--lp-font);
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font-family: inherit; }
.lp-wrap { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.lp-sr {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn-primary {
  background: var(--lp-btn);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 6px 16px rgba(31, 79, 158, .28);
}
.lp-btn-primary:hover { filter: brightness(1.06); }
.lp-btn-outline {
  background: var(--lp-surface);
  border-color: var(--lp-stroke);
  color: var(--lp-ink);
}
.lp-btn-outline:hover { background: var(--lp-surface-2); }
.lp-btn-lg { height: 48px; padding: 0 22px; font-size: 15px; }
.lp-btn-pill { border-radius: 999px; }

/* Floating nav */
.lp-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1200px, calc(100% - 48px));
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 14px 0 12px;
  border: 1px solid var(--lp-stroke);
  border-radius: 18px;
  background: color-mix(in srgb, var(--lp-surface) 86%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--lp-shadow);
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.lp-brand svg { display: block; }
.lp-links {
  display: flex;
  gap: 26px;
  margin-inline: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-muted);
}
.lp-links a:hover { color: var(--lp-ink); }
.lp-nav-actions { display: flex; align-items: center; gap: 8px; }
.lp-icon-btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--lp-stroke);
  background: var(--lp-surface);
  color: var(--lp-ink);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.lp-icon-btn:hover { background: var(--lp-surface-2); }
.lp-sun { display: none; }
html[data-theme="dark"] .lp-moon { display: none; }
html[data-theme="dark"] .lp-sun { display: inline; }
.lp-menu-btn { display: none; }
.lp-menu {
  display: none;
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 49;
  width: min(1200px, calc(100% - 48px));
  padding: 10px;
  border: 1px solid var(--lp-stroke);
  border-radius: 16px;
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow);
}
.lp-menu.is-open { display: grid; }
.lp-menu a {
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}
.lp-menu a:hover { background: var(--lp-surface-2); }

/* Hero frame */
.lp-hero {
  position: relative;
  width: calc(100% - 32px);
  margin: 14px auto 0;
  padding: 150px 0 0;
  border: 1px solid var(--lp-stroke);
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 28% 38% at 4% 40%, var(--lp-glow), transparent 70%),
    radial-gradient(ellipse 28% 38% at 96% 38%, var(--lp-glow), transparent 70%),
    linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-bg) 55%, var(--lp-glow-2) 100%);
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, var(--lp-grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--lp-grid) 1px, transparent 1px);
  background-size: calc(100% / 7) 150px;
  background-position: 0 -1px;
  mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 72%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 72%);
}
.lp-dot {
  position: absolute;
  z-index: -1;
  width: 9px;
  height: 9px;
  margin: -4.5px;
  border-radius: 50%;
  background: var(--lp-bg);
  border: 1.5px solid var(--lp-grid);
}
.lp-hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.lp-news {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 4px 10px 4px 4px;
  border: 1px solid var(--lp-stroke);
  border-radius: 999px;
  background: var(--lp-surface);
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-muted);
  box-shadow: 0 2px 8px rgba(26, 47, 86, .06);
}
.lp-news b {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--lp-btn);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.lp-news:hover { color: var(--lp-ink); }
.lp-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(34px, 5.6vw, 64px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.035em;
}
.lp-hero-sub {
  margin: 0 0 28px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--lp-muted);
}

/* Prompt box (hero + footer) */
.lp-ask {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(620px, 100%);
  padding: 6px;
  border: 1px solid var(--lp-stroke);
  border-radius: 16px;
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow);
}
.lp-ask input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--lp-ink);
  font-size: 15px;
}
.lp-ask input::placeholder { color: var(--lp-soft); }
.lp-ask:focus-within {
  border-color: color-mix(in srgb, var(--lp-blue) 55%, var(--lp-stroke));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--lp-blue) 14%, transparent), var(--lp-shadow);
}
.lp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.lp-chip {
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--lp-stroke);
  border-radius: 999px;
  background: var(--lp-surface);
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.lp-chip:hover { color: var(--lp-ink); border-color: color-mix(in srgb, var(--lp-blue) 40%, var(--lp-stroke)); }

/* App preview */
.lp-app {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  height: 440px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: 210px 1fr;
  border: 1px solid var(--lp-stroke);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  font-size: 12px;
}
.lp-app::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--lp-glow-2) 55%, transparent));
  pointer-events: none;
}
.lp-app-side {
  padding: 12px 10px;
  border-inline-end: 1px solid var(--lp-stroke-2);
  background: var(--lp-surface-2);
}
.lp-app-ws {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 10px;
  margin-bottom: 12px;
  border: 1px solid var(--lp-stroke);
  border-radius: 10px;
  background: var(--lp-surface);
  font-weight: 700;
}
.lp-app-ws svg { width: 16px; height: 16px; }
.lp-app-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  color: var(--lp-muted);
  font-weight: 500;
}
.lp-app-item i {
  width: 14px;
  font-style: normal;
  text-align: center;
  opacity: .8;
}
.lp-app-item.is-active {
  background: var(--lp-surface);
  color: var(--lp-ink);
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(15, 15, 19, .06);
}
.lp-app-label {
  margin: 14px 8px 6px;
  font-size: 11px;
  color: var(--lp-soft);
  font-weight: 600;
}
.lp-app-main { display: flex; flex-direction: column; min-width: 0; }
.lp-app-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid var(--lp-stroke-2);
  color: var(--lp-muted);
}
.lp-app-bar b { color: var(--lp-ink); }
.lp-app-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid var(--lp-stroke);
  border-radius: 8px;
  background: var(--lp-surface);
  color: var(--lp-ink);
  font-weight: 600;
}
.lp-app-pill img { width: 16px; height: 16px; border-radius: 4px; }
.lp-app-bar .lp-app-pill:first-of-type { margin-inline-start: auto; }
.lp-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px;
  background: var(--lp-surface-2);
  flex: 1;
}
.lp-col-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--lp-ink);
}
.lp-col-head span {
  padding: 0 6px;
  border-radius: 6px;
  background: var(--lp-stroke-2);
  color: var(--lp-muted);
  font-size: 10px;
  line-height: 18px;
}
.lp-col-head em {
  margin-inline-start: auto;
  font-style: normal;
  color: var(--lp-soft);
  letter-spacing: 2px;
}
.lp-task {
  margin-bottom: 10px;
  padding: 10px 11px;
  border: 1px solid var(--lp-stroke-2);
  border-radius: 10px;
  background: var(--lp-surface);
  box-shadow: 0 1px 2px rgba(15, 15, 19, .04);
}
.lp-task-top {
  display: flex;
  justify-content: space-between;
  color: var(--lp-soft);
  font-size: 10px;
  margin-bottom: 4px;
}
.lp-task h4 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
.lp-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 1px 7px;
  border-radius: 6px;
  border: 1px solid var(--lp-stroke-2);
  font-size: 10px;
  font-weight: 600;
  color: var(--lp-muted);
  background: var(--lp-surface);
}
.lp-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.lp-tag-pink { color: #d6368f; }
.lp-tag-blue { color: #2563c9; }
.lp-tag-teal { color: #0d9488; }
.lp-tag-amber { color: #c47d0e; }
.lp-tag-violet { color: #7c3aed; }
.lp-task-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-soft);
  font-size: 10px;
}
.lp-task-foot img {
  width: 18px;
  height: 18px;
  margin-inline-start: auto;
  border-radius: 50%;
  border: 1px solid var(--lp-stroke);
  background: var(--lp-surface);
  object-fit: cover;
}

/* Sections */
.lp-section { padding: 96px 0 0; }
.lp-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.lp-head h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.03em;
}
.lp-head p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 15px;
  line-height: 1.9;
}
.lp-head-start {
  margin-inline: 0;
  text-align: start;
}

/* Bento */
.lp-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 18px 18px 22px;
  border: 1px solid var(--lp-stroke);
  border-radius: 22px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--lp-glow) 55%, var(--lp-surface)) 0%, var(--lp-surface) 78%);
  overflow: hidden;
}
.lp-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: end;
  gap: 20px;
  min-height: 300px;
  background: linear-gradient(90deg, var(--lp-surface) 0%, color-mix(in srgb, var(--lp-glow) 60%, var(--lp-surface)) 100%);
}
.lp-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.lp-card p {
  margin: 0;
  max-width: 420px;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.85;
}
.lp-mock {
  position: relative;
  flex: 1;
  min-height: 180px;
  margin-bottom: 18px;
}
.lp-panel {
  position: absolute;
  border: 1px solid var(--lp-stroke);
  border-radius: 14px;
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow);
  padding: 12px;
  font-size: 12px;
}
.lp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 4px;
  border-bottom: 1px solid var(--lp-stroke-2);
  font-weight: 600;
}
.lp-row:last-child { border-bottom: 0; }
.lp-row img {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid var(--lp-stroke);
  object-fit: contain;
  background: var(--lp-surface);
}
.lp-row small {
  margin-inline-start: auto;
  color: var(--lp-soft);
  font-weight: 500;
  font-size: 10px;
}
.lp-bar {
  height: 10px;
  border-radius: 6px;
  background: var(--lp-stroke-2);
  margin-bottom: 8px;
}
.lp-cursor {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--lp-blue-2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  z-index: 3;
}
html[data-theme="dark"] .lp-cursor { color: #0f0f13; }
.lp-cursor::before {
  content: "";
  position: absolute;
  top: -8px;
  inset-inline-end: -6px;
  border: 6px solid transparent;
  border-bottom-color: var(--lp-blue-2);
  transform: rotate(-35deg);
}
.lp-swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.lp-swatches span {
  aspect-ratio: 1;
  border-radius: 8px;
}
.lp-file {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-file-ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}
.lp-file b { display: block; font-size: 13px; }
.lp-file small { color: var(--lp-soft); font-size: 11px; }
.lp-score {
  margin-inline-start: auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lp-blue-soft);
  color: var(--lp-blue-ink);
  font-weight: 800;
  font-size: 12px;
}
.lp-flow {
  position: absolute;
  inset: 50% 8% auto;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 12px;
  border: 1px solid var(--lp-stroke);
  border-radius: 999px;
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow);
}
.lp-flow::before {
  content: "";
  position: absolute;
  inset: 50% 48px auto;
  border-top: 1.5px dashed var(--lp-stroke);
}
.lp-flow > * { position: relative; z-index: 1; }
.lp-node {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--lp-stroke);
  background: var(--lp-surface);
  font-size: 14px;
}
.lp-node img { width: 22px; height: 22px; border-radius: 6px; }
.lp-hub {
  position: absolute;
  inset: 0;
}
.lp-hub svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.lp-hub-center {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -50%);
  padding: 7px 14px;
  border: 1px solid var(--lp-stroke);
  border-radius: 999px;
  background: var(--lp-surface);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--lp-shadow);
  white-space: nowrap;
}
.lp-hub-node {
  position: absolute;
  width: 38px;
  height: 38px;
  margin: -19px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--lp-stroke);
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow);
}
.lp-hub-node img { width: 24px; height: 24px; border-radius: 6px; }

/* Tool tag (mirrors the chat attach menu) */
.lp-tool {
  --tc: var(--lp-blue);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 3px 4px 3px 12px;
  border: 1px solid var(--lp-stroke);
  border-radius: 999px;
  background: var(--lp-surface);
  color: var(--tc);
  font-size: 12px;
  font-weight: 700;
}
.lp-tool i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--tc) 55%, #fff), var(--tc));
  color: #fff;
}
.lp-tool svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-theme="dark"] .lp-tool { color: color-mix(in srgb, var(--tc) 55%, #fff); }
.lp-tools-row { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-photo {
  display: flex;
  align-items: flex-end;
  gap: 8%;
  height: 110px;
  padding: 12px 10%;
  border-radius: 10px;
  background: linear-gradient(160deg, #eaf1fc, #c7dbf8);
}
.lp-photo i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, #3a78d8, #1f4f9e); }
html[data-theme="dark"] .lp-photo { background: linear-gradient(160deg, #16243d, #1a2f56); }
.lp-bubble {
  position: absolute;
  max-width: 62%;
  padding: 9px 12px;
  border: 1px solid var(--lp-stroke);
  border-radius: 14px;
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow);
  font-size: 12px;
  line-height: 1.7;
}
.lp-bubble-me {
  border-color: transparent;
  background: var(--lp-blue-soft);
  color: var(--lp-blue-ink);
  font-weight: 700;
}
.lp-li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 2px;
  font-weight: 600;
}
.lp-li b {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--lp-blue-soft);
  color: var(--lp-blue-ink);
  font-size: 11px;
}
.lp-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  margin-bottom: 4px;
  padding: 0 10px;
  border: 1px solid var(--lp-stroke);
  border-radius: 10px;
  background: var(--lp-surface-2);
  color: var(--lp-muted);
  font-weight: 600;
}
.lp-search span { color: var(--lp-soft); font-size: 15px; }
.lp-src {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, #0891b2 14%, var(--lp-surface));
  color: #0891b2;
  font-size: 11px;
  font-weight: 800;
}
.lp-think {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lp-stroke-2);
  color: #db2777;
  font-weight: 700;
}
html[data-theme="dark"] .lp-think { color: #f472b6; }
.lp-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 18%, transparent);
  animation: lp-pulse 1.6s ease-in-out infinite;
}
@keyframes lp-pulse { 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .lp-pulse { animation: none; } }

/* Mini features */
.lp-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.lp-mini-item {
  display: flex;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--lp-stroke);
  border-radius: 18px;
  background: var(--lp-surface);
}
.lp-mini-ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--lp-blue-soft);
  color: var(--lp-blue-ink);
  font-size: 16px;
}
.lp-mini-item h4 { margin: 0 0 4px; font-size: 14px; }
.lp-mini-item p { margin: 0; color: var(--lp-muted); font-size: 13px; line-height: 1.75; }

/* Use-case carousel */
.lp-band {
  margin-top: 96px;
  padding: 44px 0 40px;
  background: var(--lp-band);
  border-block: 1px solid var(--lp-stroke-2);
}
.lp-track {
  display: flex;
  gap: 16px;
  padding: 0 max(20px, calc((100% - 1240px) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(20px, calc((100% - 1240px) / 2));
  scrollbar-width: none;
}
.lp-track::-webkit-scrollbar { display: none; }
.lp-quote {
  position: relative;
  flex: 0 0 min(360px, 82vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--lp-stroke);
  border-radius: 18px;
  background: var(--lp-surface);
  overflow: hidden;
}
.lp-quote h3 { margin: 0 0 10px; font-size: 18px; letter-spacing: -.02em; }
.lp-quote p { margin: 0 0 22px; color: var(--lp-muted); font-size: 13px; line-height: 1.85; max-width: 290px; }
.lp-quote::after {
  content: "”";
  position: absolute;
  inset-inline-end: 18px;
  bottom: -38px;
  font-size: 150px;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--lp-stroke-2);
  pointer-events: none;
}
.lp-who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.lp-who-ico {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lp-blue-soft);
  color: var(--lp-blue-ink);
  font-size: 16px;
}
.lp-who b { display: block; font-size: 13px; }
.lp-who small { color: var(--lp-soft); font-size: 11px; }
.lp-track-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.lp-round {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--lp-stroke);
  background: var(--lp-surface);
  color: var(--lp-ink);
  cursor: pointer;
  font-size: 16px;
}
.lp-round.is-primary {
  border-color: transparent;
  background: var(--lp-btn);
  color: #fff;
}

/* Pricing (mirrors /pricing cards + compare table) */
.lp-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}
.lp-plan {
  display: flex;
  flex-direction: column;
  padding: 20px 18px 18px;
  border: 1px solid var(--lp-stroke);
  border-radius: 20px;
  background: var(--lp-surface);
}
.lp-plan.is-rec {
  border-color: color-mix(in srgb, var(--lp-blue) 35%, var(--lp-stroke));
  background: linear-gradient(180deg, var(--lp-surface) 0%, color-mix(in srgb, var(--lp-glow) 75%, var(--lp-surface)) 100%);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--lp-blue) 14%, transparent);
}
.lp-plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 24px;
  margin-bottom: 14px;
}
.lp-plan-label { font-size: 13px; font-weight: 700; }
.lp-plan-badge {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--lp-blue-soft);
  color: var(--lp-blue-ink);
  font-size: 10px;
  font-weight: 700;
}
.lp-plan-badge.is-ordinary { background: #f1e8ff; color: #7c3aed; }
.lp-plan-badge.is-boss { background: #e3f7ec; color: #15803d; }
html[data-theme="dark"] .lp-plan-badge.is-ordinary { background: #2a1f45; color: #c4a5ff; }
html[data-theme="dark"] .lp-plan-badge.is-boss { background: #173325; color: #7ee2a6; }
.lp-plan-name {
  margin: 0 0 10px;
  min-height: 2.9em;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.02em;
}
.lp-plan-desc {
  margin: 0 0 18px;
  min-height: 3.6em;
  color: var(--lp-muted);
  font-size: 12.5px;
  line-height: 1.8;
}
.lp-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.lp-plan-price b { font-size: 28px; font-weight: 800; letter-spacing: -.03em; }
.lp-plan-price span { color: var(--lp-muted); font-size: 12px; }
.lp-plan-cta { width: 100%; margin-bottom: 18px; }
.lp-btn-dark { background: var(--lp-ink); color: var(--lp-bg); }
.lp-btn-dark:hover { filter: brightness(1.15); }
.lp-plan-feats {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.lp-plan-feats li { display: flex; align-items: flex-start; gap: 8px; line-height: 1.6; }
.lp-plan-feats i {
  flex-shrink: 0;
  width: 18px;
  font-style: normal;
  text-align: center;
  font-size: 12px;
  color: var(--lp-blue);
}
.lp-plans-note {
  margin: 18px 0 0;
  text-align: center;
  color: var(--lp-muted);
  font-size: 12px;
}
.lp-plans-note a { color: var(--lp-blue); font-weight: 700; }

.lp-compare { margin-top: 44px; }
.lp-compare-title {
  margin: 0 0 16px;
  text-align: center;
  font-size: 22px;
  letter-spacing: -.02em;
}
.lp-compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--lp-stroke);
  border-radius: 18px;
  background: var(--lp-surface);
}
.lp-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13px;
}
.lp-table thead th {
  padding: 14px 12px;
  background: var(--lp-band);
  font-weight: 700;
  text-align: center;
}
.lp-table thead th:first-child { text-align: start; }
.lp-table tbody th,
.lp-table td {
  padding: 12px;
  border-top: 1px solid var(--lp-stroke-2);
  text-align: center;
}
.lp-table tbody th { text-align: start; font-weight: 500; color: var(--lp-muted); }
.lp-table .is-hl { background: color-mix(in srgb, var(--lp-blue) 6%, transparent); }
.lp-table thead th.is-hl { color: var(--lp-blue); }
.lp-cmp-name { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.lp-cmp-name img { width: 20px; height: 20px; border-radius: 6px; object-fit: contain; }
.lp-cmp-name small {
  padding: 1px 7px;
  border-radius: 6px;
  background: var(--lp-band);
  color: var(--lp-soft);
  font-size: 10px;
}
.lp-cmp-head th {
  padding: 12px;
  background: var(--lp-surface-2);
  color: var(--lp-ink) !important;
  font-weight: 800 !important;
}
.lp-table tr.is-extra { display: none; }
.lp-yes { color: var(--lp-blue); font-weight: 800; }
.lp-x { color: #d1453b; opacity: .75; }
.lp-no { color: var(--lp-soft); }
.lp-val { color: var(--lp-ink); font-weight: 600; }
.lp-val.is-hl { color: var(--lp-blue); background: none; }
.lp-compare-more { display: flex; margin: 16px auto 0; }
.lp-compare-more[hidden], .lp-compare[hidden] { display: none; }

/* New models (news) */
.lp-news-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.lp-news-head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.03em;
}
.lp-news-head p { margin: 0; max-width: 460px; color: var(--lp-muted); font-size: 14px; line-height: 1.85; }
.lp-posts {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.lp-post-img {
  position: relative;
  display: grid;
  place-items: center;
  height: 220px;
  margin-bottom: 12px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--lp-band);
}
.lp-post-img img {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 15, 19, .25);
  transition: transform .25s ease;
}
.lp-post:hover .lp-post-img img { transform: scale(1.06) rotate(-3deg); }
.lp-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: var(--lp-soft);
  font-size: 12px;
}
.lp-post-meta span {
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--lp-band);
  color: var(--lp-muted);
  font-weight: 600;
  font-size: 11px;
}
.lp-post h3 { margin: 0; font-size: 17px; line-height: 1.55; letter-spacing: -.01em; }

/* FAQ */
.lp-faq-band {
  margin-top: 96px;
  padding: 72px 0;
  background: var(--lp-band);
}
.lp-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.lp-faq-col { display: grid; gap: 12px; }
.lp-faq details {
  border: 1px solid var(--lp-stroke-2);
  border-radius: 14px;
  background: var(--lp-surface);
  padding: 0 16px;
}
.lp-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "⌄";
  font-size: 16px;
  color: var(--lp-muted);
  transition: transform .2s ease;
}
.lp-faq details[open] summary::after { transform: rotate(180deg); }
.lp-faq details p {
  margin: -4px 0 16px;
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.9;
}

/* CTA */
.lp-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  min-height: 360px;
  margin-top: 96px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 45% 55% at 85% 90%, rgba(255, 255, 255, .85), transparent 60%),
    radial-gradient(ellipse 35% 40% at 70% 20%, rgba(255, 255, 255, .6), transparent 60%),
    linear-gradient(135deg, #eaf1fc 0%, #c7dbf8 45%, #8db4ee 100%);
}
html[data-theme="dark"] .lp-cta {
  background:
    radial-gradient(ellipse 45% 55% at 85% 90%, rgba(91, 149, 234, .25), transparent 60%),
    linear-gradient(135deg, #141b29 0%, #1a2f56 60%, #274a86 100%);
  border: 1px solid var(--lp-stroke);
}
.lp-cta-copy {
  align-self: center;
  padding: 44px;
}
.lp-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.3;
  letter-spacing: -.03em;
  color: #0f0f13;
}
.lp-cta p { margin: 0 0 24px; color: #3d4250; font-size: 14px; line-height: 1.9; max-width: 400px; }
html[data-theme="dark"] .lp-cta h2 { color: #f3f4f6; }
html[data-theme="dark"] .lp-cta p { color: #b8c3d8; }
.lp-cta-app {
  position: relative;
  align-self: end;
  height: 300px;
  margin-inline-end: -40px;
  display: grid;
  grid-template-columns: 160px 1fr;
  border: 1px solid var(--lp-stroke);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  font-size: 12px;
}
.lp-cta-app .lp-board { grid-template-columns: 1fr; }
.lp-asks {
  padding: 72px 0 80px;
  text-align: center;
}
.lp-asks p {
  margin: 0 auto 18px;
  max-width: 420px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--lp-muted);
}

/* Footer */
.lp-foot {
  border-top: 1px solid var(--lp-stroke);
  background-color: var(--lp-bg);
  background-image: radial-gradient(var(--lp-stroke) 1px, transparent 1.4px);
  background-size: 14px 14px;
}
.lp-foot-in {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 52px 0 64px;
}
.lp-foot-brand p {
  margin: 12px 0 22px;
  max-width: 320px;
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.9;
}
.lp-foot h4 { margin: 0 0 14px; font-size: 14px; }
.lp-foot ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.lp-foot li a { color: var(--lp-muted); font-size: 13px; }
.lp-foot li a:hover { color: var(--lp-ink); }
.lp-foot .lp-ask { box-shadow: none; width: min(340px, 100%); }
.lp-foot .lp-ask input { height: 38px; font-size: 13px; }
.lp-foot .lp-ask .lp-btn { height: 38px; font-size: 13px; }
.lp-copy {
  padding: 18px 0;
  border-top: 1px solid var(--lp-stroke);
  text-align: center;
  color: var(--lp-muted);
  font-size: 12px;
  background: var(--lp-bg);
}

/* Models pages (/models, /models/{slug}) */
body.models-page {
  --bg: var(--lp-bg);
  --ink: var(--lp-ink);
  --muted: var(--lp-muted);
  --stroke: var(--lp-stroke);
  --card: var(--lp-surface);
  --surface: var(--lp-surface);
  --hover: var(--lp-surface-2);
  --accent: var(--lp-blue);
  --accent-soft: var(--lp-blue-soft);
  --accent-ink: var(--lp-blue-ink);
  --shadow: var(--lp-shadow);
  --radius: 18px;
  background: var(--lp-bg) !important;
}
.m-lp-hero .lp-hero-copy { z-index: 1; }
.m-lp-hero h1 { font-size: clamp(32px, 5vw, 58px); }
.m-ask input[type="search"]::-webkit-search-cancel-button { cursor: pointer; }
.m-chips { max-width: 860px; }
.lp-chip.is-active {
  background: var(--lp-ink);
  border-color: var(--lp-ink);
  color: var(--lp-bg);
}
.m-stage {
  grid-template-columns: 1fr 1fr;
  height: 420px;
  align-items: center;
}
.m-stage-orbit {
  display: grid;
  place-items: center;
  height: 100%;
  border-inline-end: 1px solid var(--lp-stroke-2);
  background: radial-gradient(circle at 50% 50%, var(--lp-blue-soft), transparent 65%);
}
.m-stage-orbit .m-orbit { transform: scale(.9); }
html[data-theme="dark"] .m-orbit-ring { border-color: rgba(255, 255, 255, .14); }
.m-stage-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 28px;
}
.m-stage-panel { position: static; box-shadow: none; padding: 6px 14px; font-size: 13px; }
.m-stage-list .lp-col-head { margin: 0; font-size: 14px; }
.m-row { padding: 11px 4px; transition: background .15s ease; }
.m-row:hover { background: var(--lp-surface-2); }
.m-row span { flex: 1; min-width: 0; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-row-fallback {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--lp-blue-soft);
  color: var(--lp-blue-ink);
  font-size: 12px;
  font-weight: 800;
}
.m-stage-note { margin: auto 0 0; color: var(--lp-soft); font-size: 11px; line-height: 1.8; }
.m-grid-section .lp-head { margin-bottom: 20px; }
.m-seo-lead {
  margin: -4px auto 22px;
  max-width: 720px;
  text-align: center;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.9;
}
.m-seo-lead a { color: var(--lp-blue-ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.m-seo-note {
  margin-top: 18px;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.9;
}
.m-seo-note a { color: var(--lp-blue-ink); font-weight: 700; }
.m-count { color: var(--lp-muted); }
@media (min-width: 1100px) {
  .models-page .m-grid { grid-template-columns: repeat(4, 1fr); }
}
.m-card {
  background: var(--lp-surface);
  border-color: var(--lp-stroke);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(15, 15, 19, .03);
}
.m-card:hover {
  border-color: color-mix(in srgb, var(--lp-blue) 40%, var(--lp-stroke));
  box-shadow: var(--lp-shadow);
}
.m-badge { background: var(--lp-surface-2); color: var(--lp-muted); }
.m-badge-new { background: var(--lp-blue-soft); color: var(--lp-blue-ink); }
.m-badge-plan { background: var(--lp-ink); color: var(--lp-bg); }
html[data-theme="dark"] .m-card,
html[data-theme="dark"] .m-card:hover { background: var(--lp-surface); }
html[data-theme="dark"] .m-badge { background: var(--lp-surface-2); color: var(--lp-muted); }
html[data-theme="dark"] .m-badge-new { background: var(--lp-blue-soft); color: var(--lp-blue-ink); }
html[data-theme="dark"] .m-badge-plan { background: var(--lp-ink); color: var(--lp-bg); }
html[data-theme="dark"] .m-detail-icon { background: var(--lp-surface); border-color: var(--lp-stroke); }
.m-cta-panel {
  align-self: center;
  padding: 36px 44px 36px 0;
}
.m-cta-panel .lp-panel { background: var(--lp-surface); box-shadow: var(--lp-shadow-lg); }

.m-lp-hero-detail { padding: 130px 0 72px; }
.m-lp-hero-detail h1 { margin-bottom: 14px; }
.m-lp-hero-detail .m-crumb { justify-content: center; margin-bottom: 18px; }
.m-lp-hero-detail .m-detail-meta { justify-content: center; margin-bottom: 14px; }
.m-hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.m-detail-body { padding-top: 72px; }
.m-aside-box { background: var(--lp-surface); border-color: var(--lp-stroke); border-radius: 18px; }
.m-aside-cta { width: 100%; justify-content: center; }
.m-faq-band .lp-faq { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }
.m-more a { color: var(--lp-blue-ink); font-weight: 700; }

/* Pricing page (/pricing web layout) */
body.lp-pricing {
  --bg: var(--lp-bg);
  --ink: var(--lp-ink);
  --muted: var(--lp-muted);
  --stroke: var(--lp-stroke);
  --card: var(--lp-surface);
  --hover: var(--lp-surface-2);
  --accent: var(--lp-blue);
  --accent-fg: #fff;
  --recommended: var(--lp-blue-soft);
  --recommended-fg: var(--lp-blue-ink);
  --btn-dark: var(--lp-ink);
  --btn-dark-fg: var(--lp-bg);
}
.pr-hero { padding-bottom: 56px; }
.pr-hero h1 { font-size: clamp(32px, 5vw, 58px); }
.pr-hero .lp-hero-copy { z-index: 1; }
.pr-plans {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin: 44px auto 0;
}
.lp-pricing .plan-card {
  border-color: var(--lp-stroke);
  border-radius: 22px;
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow);
}
.lp-pricing .plan-card.is-recommended {
  border-color: color-mix(in srgb, var(--lp-blue) 45%, var(--lp-stroke));
  background: linear-gradient(180deg, var(--lp-surface) 0%, var(--lp-surface) 55%, color-mix(in srgb, var(--lp-glow) 70%, var(--lp-surface)) 100%);
  box-shadow: var(--lp-shadow-lg);
}
.lp-pricing .plan-card.is-recommended::after { display: none; }
.lp-pricing .plan-cta.blue {
  background: var(--lp-btn);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--lp-blue) 30%, transparent);
}
.lp-pricing .plan-cta.blue:hover:not(:disabled) {
  background: var(--lp-btn);
  border-color: transparent;
  color: #fff;
  filter: brightness(1.08);
}
.lp-pricing .plan-price-sale { color: var(--lp-blue-ink); }
.lp-pricing .plan-foot a.plan-details-link { color: var(--lp-blue-ink); }
.lp-pricing .pricing-page {
  max-width: min(1240px, calc(100% - 48px));
  padding: 8px 0 80px;
}
.lp-pricing .pricing-bottom { margin-top: 24px; }
.lp-pricing .promo-panel { border-radius: 18px; background: var(--lp-surface); box-shadow: var(--lp-shadow); }
.lp-pricing .promo-row input { background: var(--lp-surface-2); }
.lp-pricing .btn.primary { background: var(--lp-btn); border-color: transparent; color: #fff; }
.lp-pricing .pricing-compare-section { margin-top: 72px; }
.lp-pricing .pricing-compare-title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -.03em;
  text-align: center;
}
.lp-pricing .pricing-compare-card {
  border-color: var(--lp-stroke);
  border-radius: 22px;
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow);
}
.lp-pricing .pricing-compare .col-highlight { background: color-mix(in srgb, var(--lp-blue-soft) 55%, transparent); }
.lp-pricing .cmp-check.highlight,
.lp-pricing .cmp-value.highlight { color: var(--lp-blue-ink); }

/* Responsive */
@media (max-width: 900px) {
  .pr-plans { width: calc(100% - 32px); margin-top: 32px; }
  .m-stage { grid-template-columns: 1fr; height: auto; }
  .m-stage-orbit { height: 300px; border-inline-end: 0; border-bottom: 1px solid var(--lp-stroke-2); }
  .m-cta-panel { padding: 0 26px 32px; }
  .lp-links, .lp-nav-actions .lp-login { display: none; }
  .lp-menu-btn { display: inline-grid; }
  .lp-hero { padding-top: 130px; border-radius: 22px; }
  .lp-app { grid-template-columns: 1fr; height: 400px; }
  .lp-app-side { display: none; }
  .lp-board { grid-template-columns: 1fr 1fr; }
  .lp-board > :nth-child(3) { display: none; }
  .lp-bento, .lp-faq, .lp-cta { grid-template-columns: 1fr; }
  .lp-plans { grid-template-columns: 1fr 1fr; }
  .lp-card-wide { grid-template-columns: 1fr; }
  .lp-mini { grid-template-columns: 1fr 1fr; }
  .lp-posts { grid-template-columns: 1fr 1fr; }
  .lp-posts > :first-child { grid-column: 1 / -1; }
  .lp-cta-copy { padding: 32px 26px 0; }
  .lp-cta-app { margin: 0 26px; height: 220px; }
  .lp-foot-in { grid-template-columns: 1fr 1fr; }
  .lp-foot-brand { grid-column: 1 / -1; }
  .lp-section { padding-top: 72px; }
  .lp-band, .lp-faq-band, .lp-cta { margin-top: 72px; }
}
@media (max-width: 560px) {
  .lp-nav { top: 12px; width: calc(100% - 24px); height: 58px; }
  .lp-menu { top: 78px; width: calc(100% - 24px); }
  .lp-nav-actions .lp-btn-primary { padding: 0 12px; }
  .lp-hero { width: calc(100% - 16px); margin-top: 8px; padding-top: 108px; }
  .lp-hero h1 { font-size: 30px; }
  .lp-app { width: calc(100% - 20px); margin-top: 36px; height: 360px; }
  .lp-board { grid-template-columns: 1fr; }
  .lp-board > :nth-child(2) { display: none; }
  .lp-mini, .lp-posts, .lp-plans { grid-template-columns: 1fr; }
  .lp-plan-name, .lp-plan-desc { min-height: 0; }
  .lp-news-head { flex-direction: column; align-items: start; }
  .lp-ask { flex-wrap: wrap; }
  .lp-ask .lp-btn { width: 100%; }
  .lp-foot-in { grid-template-columns: 1fr; }
  .pr-plans { width: calc(100% - 20px); }
  .lp-pricing .pricing-page { max-width: calc(100% - 24px); }
  .lp-bubble { max-width: 80%; }
  .m-stage { height: auto; }
  .m-stage-orbit .m-orbit { transform: scale(.78); }
  .m-lp-hero-detail { padding: 104px 0 52px; }
}
