:root {
  --bg: #fff;
  --fg: #111;
  --muted: #5b5b5b;
  --link: #1a73e8;
  --banner: #2b5e8f;
  --divider: #e9e9e9;
  --accent: #ff4b1f;
  --accent-contrast: #fff;

  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas,
    "Liberation Mono", monospace;
  --font-sans: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system,
    Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-0: clamp(14px, 3.4vw, 16px);
  --fs-1: clamp(20px, 4.8vw, 28px);
  --fs-2: clamp(28px, 6.4vw, 40px);
  --lh: 1.5;
  --radius: 8px;
  --s1: 8px;
  --s2: 12px;
  --s3: 16px;
  --s4: 24px;
  --s5: 32px;
  --s6: 48px;
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f0f12;
    --fg: #f2f2f2;
    --muted: #a6a6a6;
    --link: #7bb0ff;
    --banner: #204a74;
    --divider: #26262a;
    --accent: #ff5c33;
    --accent-contrast: #111;
  }
}

html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: var(--fs-0);
  line-height: var(--lh);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--s3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s2);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--divider);
}
.brand {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}
.brand__logo {
  width: 32px;
  height: 32px;
  background-color: var(--fg);
  mask: url("asterisk.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("asterisk.svg") no-repeat center;
  -webkit-mask-size: contain;
  /* background-image: url("asterisk.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.04s ease, filter 0.15s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
}
.btn--cta {
  background: var(--accent);
  color: var(--accent-contrast);
}
.btn--cta:hover {
  filter: brightness(1.05);
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 var(--s3);
}
h1 {
  font-size: var(--fs-2);
}
h2 {
  font-size: var(--fs-1);
  margin-top: var(--s6);
}
.lead-title {
  border-left: 3px solid var(--accent);
  padding-left: var(--s3);
  margin-top: var(--s4);
}
p {
  margin: 0 0 var(--s3);
}
.muted {
  color: var(--muted);
}
a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
strong {
  font-weight: 700;
}

.link-heading {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
}

/* “*” star list to match screenshot */
.star-list,
.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 var(--s3);
}
.star-list li,
.feature-list li {
  position: relative;
  padding-left: 1.2em;
}
.star-list li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fg);
}

.feature-list li.check::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fg);
}

.feature-list li.cross::before {
  content: "𐄂";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fg);
}

.feature-list li.price::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fg);
}

hr {
  border: 0;
  border-top: 1px solid var(--divider);
  margin: var(--s5) 0;
}

.trial-demo-button {
  margin: var(--s5) 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer {
  padding-bottom: var(--s5);
}

.image-container {
  width: 100%;
  max-width: 800px;
  display: inline-block;
  position: relative;
}

.skeleton {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
}

.dashboard-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.dashboard-image:not([src]) {
  display: none;
}

.image-container:has(.dashboard-image[src]) .skeleton {
  display: none;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
