*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}

button,
a {
  font-family: inherit;
}

.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - var(--gutter) * 2, var(--container-wide));
  margin-inline: auto;
}

.gallery {
  --text-h2: clamp(28px, 4.2vw, 56px);
  --text-h3: clamp(18px, 2vw, 22px);
}

.mono {
  font-family: var(--font-mono);
  font-size: var(--text-mono);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--touch-min);
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  background: var(--accent-hover);
}

.btn:active {
  background: var(--accent-pressed);
}

.btn svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.btn--lg {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 14px;
}

.btn--ghost {
  background: var(--surface);
  color: var(--fg);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--fg);
}

.check {
  color: var(--success);
  font-weight: 700;
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.section-head {
  max-width: 38em;
  margin-bottom: 40px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: color-mix(in oklch, var(--surface) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--fg);
  min-height: var(--touch-min);
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.logo__badge {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--fg);
}

.site-header__cta {
  min-height: 40px;
  padding: 8px 18px;
  flex-shrink: 0;
}

.site-header__cta--mobile {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin-inline: auto;
  background: var(--fg);
}

.cover {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  margin-top: calc(var(--header-h) * -1);
  display: flex;
  align-items: stretch;
}

.cover__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 72% 46%,
    oklch(0.95 0.055 62) 0%,
    var(--bg) 58%
  );
}

.cover__glow {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 82% 48%, color-mix(in oklch, var(--accent) 14%, transparent), transparent 22%),
    radial-gradient(circle at 78% 58%, color-mix(in oklch, var(--accent) 6%, transparent), transparent 30%);
}

.cover__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.cover__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: max-content minmax(240px, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--header-h) clamp(20px, 4.2vw, 72px) 28px;
}

.cover__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  max-width: none;
}

.cover__visual {
  min-height: 1px;
}

.cover__label {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.cover__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  text-transform: uppercase;
  white-space: nowrap;
}

.cover__lead {
  margin: 0 0 24px;
  width: 0;
  min-width: 100%;
  max-width: none;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--fg);
}

.cover__cta {
  margin-bottom: 24px;
  padding: 12px 36px;
}

.cover__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 0;
  min-width: 100%;
  max-width: none;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.cover__tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid color-mix(in oklch, var(--border) 80%, transparent);
  border-radius: var(--r-sm);
  background: color-mix(in oklch, var(--surface) 78%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.cover__tags svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

.cover__quote {
  margin: 0;
  width: 0;
  min-width: 100%;
  max-width: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
}

.cover__quote span {
  display: inline;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 3.2vh, 36px) 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: transparent;
}

.hero__video {
  position: absolute;
  inset: -16px;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.04);
}

.hero__bg::after {
  content: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__bg {
    background: var(--bg);
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hero__label {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__title {
  display: inline-block;
  margin: 0 0 22px;
  padding: 16px 20px;
  max-width: 18em;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  border-radius: var(--r);
  background: color-mix(in oklch, var(--surface) 78%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in oklch, var(--border) 65%, transparent);
  box-shadow: var(--shadow);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 16px;
}

.hero__meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--muted);
}

.quote {
  margin: 0;
  max-width: 28em;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-sm);
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.quote span {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  color: var(--muted);
}

.line-mini {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.line-mini__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.line-mini__caption {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
}

.line-mini__live {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
}

.line-mini__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.line-mini__detail {
  margin: 0 0 12px;
  min-height: 1.4em;
  font-size: 14px;
  color: var(--muted);
}

.line-mini__track {
  position: relative;
}

.line-mini__cursor {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 32px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateY(0);
  transition: transform 420ms ease, height 420ms ease;
  pointer-events: none;
  z-index: 1;
}

.line-mini__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 5px;
}

.line-mini__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--muted);
  background: var(--surface-2);
  transition: color 280ms ease, background 280ms ease, transform 280ms ease;
}

.line-mini__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 280ms ease, transform 280ms ease;
}

.line-mini__list li.is-done {
  color: var(--fg);
}

.line-mini__list li.is-done::before {
  background: var(--success);
}

.line-mini__list li.is-active {
  background: var(--surface);
  color: var(--fg);
  transform: translateX(2px);
}

.line-mini__list li.is-active::before {
  background: var(--accent);
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .line-mini__cursor,
  .line-mini__list li,
  .line-mini__list li::before {
    transition: none;
  }
}

@media (max-height: 760px) {
  .hero__label {
    margin-bottom: 6px;
  }

  .hero__title {
    font-size: clamp(28px, 3.6vw, 40px);
    margin-bottom: 16px;
  }

  .line-mini {
    padding: 12px 14px;
  }

  .line-mini__list li {
    padding: 5px 8px;
    font-size: 14px;
  }
}

.pain {
  padding: var(--section-y) 0 0;
}

.pain__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: 28px;
}

.pain__kicker {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.pain__copy h2 {
  margin: 0 0 16px;
  max-width: 12em;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.pain__lead {
  margin: 0;
  max-width: 32em;
  font-size: 16px;
  line-height: 1.45;
  color: var(--muted);
}

.pain__desk {
  position: relative;
  height: 420px;
}

.pain__mark {
  position: absolute;
  left: 18%;
  top: 8%;
  z-index: 0;
  font-family: var(--font-accent);
  font-size: clamp(140px, 18vw, 220px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: color-mix(in oklch, var(--accent) 16%, transparent);
  pointer-events: none;
  user-select: none;
}

.pain-win {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: var(--z);
  width: 148px;
  padding: 8px 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 10px 28px oklch(0.22 0.01 50 / 0.08);
  transform: rotate(var(--r));
}

.pain-win header {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.pain-win header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
}

.pain-win header i:first-child {
  background: color-mix(in oklch, var(--danger) 55%, var(--border));
}

.pain-win b {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.pain-win > span {
  display: block;
  height: 6px;
  margin-top: 5px;
  border-radius: 99px;
  background: var(--surface-2);
}

.pain-win > span:last-child {
  width: 62%;
}

.pain-win--now {
  border-color: color-mix(in oklch, var(--accent) 45%, var(--border));
  box-shadow: 0 12px 32px color-mix(in oklch, var(--accent) 18%, transparent);
}

.pain__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pain__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 100%;
  padding: 18px 18px 20px;
  border: 1px dashed color-mix(in oklch, var(--border) 80%, var(--fg));
  border-radius: var(--r);
  background: color-mix(in oklch, var(--surface) 70%, transparent);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--fg);
}

.pain__points span {
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.solve {
  padding: var(--section-y) 0 24px;
}

.solve__line {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--fg);
}

.solve__line span {
  color: var(--accent);
}

.launch {
  padding: 0 0 var(--section-y);
}

.launch__panel {
  padding: 32px;
  border-radius: var(--r-lg);
  background: color-mix(in oklch, var(--fg) 5%, var(--bg));
}

.launch__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px 32px;
  margin-bottom: 32px;
}

.launch__title {
  margin: 0;
  flex: 1 1 260px;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.launch__lead {
  flex: 1 1 240px;
  max-width: 36em;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.launch__lead p {
  margin: 0;
}

.launch__lead p + p {
  margin-top: 8px;
}

.launch__lead strong {
  color: var(--fg);
  font-weight: 600;
}

.launch__cta {
  flex-shrink: 0;
  align-self: center;
  min-height: 40px;
  gap: 8px;
}

.launch__cta svg {
  width: 14px;
  height: 14px;
}

.launch__row-wrap {
  position: relative;
}

.launch__row-wrap::before,
.launch__row-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
  display: none;
}

.launch__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.launch-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.launch-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

.launch-card__media img,
.launch-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.launch-card__media video {
  position: absolute;
  inset: 0;
}

.launch-card__volume {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: oklch(0.18 0.02 50 / 0.45);
  color: oklch(0.98 0.01 85);
  cursor: pointer;
}

.launch-card__volume svg {
  width: 14px;
  height: 14px;
}

.compare {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  user-select: none;
}

.compare img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.compare__after,
.compare__before img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare__after {
  position: absolute;
  inset: 0;
}

.compare__before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
}

.compare__before img {
  width: var(--compare-w, 225px);
  max-width: none;
  height: 100%;
  filter: blur(0.6px) saturate(0.85) contrast(0.85) brightness(0.92);
}

.compare__bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--surface);
  translate: -50% 0;
  pointer-events: none;
}

.compare__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  translate: -50% -50%;
  cursor: grab;
  touch-action: none;
}

.compare__handle::before {
  content: "";
  position: absolute;
  inset: -14px;
}

.compare__handle svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.launch-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--fg);
  border-radius: var(--r-sm);
  color: var(--fg);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.launch-card__action span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.launch-card__action svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.launch-card__action:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.line {
  padding: 0 0 var(--section-y);
}

.line__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.line__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--fg);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--fg);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.line__chip span {
  font-weight: 600;
}

.line__chip.is-active,
.line__chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.line__stage {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
  align-items: stretch;
}

.line__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}

.line__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.line__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.line__kicker {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.line__copy .launch-card__action {
  margin-top: auto;
}

.line__viewport {
  position: relative;
}

.line__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

.line__media .screen__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.line__url {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.line__foot {
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.features,
.demos,
.versus,
.who,
.pricing,
.faq,
.final {
  padding: 0 0 var(--section-y);
}

.gallery__header {
  margin-bottom: 28px;
}

.gallery__title {
  margin-bottom: 12px;
}

.catalog {
  padding: 0 0 var(--section-y);
}

.catalog__title {
  margin-bottom: 28px;
  font-size: clamp(28px, 3.6vw, 44px);
}

.screen {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.screen__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.screen__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.screen__url {
  margin: 0 0 0 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.screen__body {
  position: relative;
  height: min(52vh, 440px);
  background: var(--surface-2);
}

.screen__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.screen__img.is-hidden,
.brand-kit[hidden] {
  display: none;
}

.line__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--fg);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.line__nav--prev { left: -12px; }
.line__nav--next { right: -12px; }

.line__nav:hover {
  border-color: var(--accent);
}

.brand-kit {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: grid;
  gap: 12px;
  background: oklch(0.949 0.003 90);
  overflow: auto;
}

.brand-kit__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.brand-kit__top p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
}

.brand-kit__top h4 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 14px;
}

.brand-kit__ok {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.brand-kit__logo {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}

.brand-kit__logo strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
}

.brand-kit__logo span {
  color: var(--muted);
  font-size: 14px;
}

.brand-kit__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 767px) {
  .brand-kit__row {
    grid-template-columns: 1fr;
  }

  .screen__body {
    height: 280px;
  }
}

.brand-kit__row article {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}

.brand-kit__row p {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
}

.brand-kit__row ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.brand-kit__row li {
  margin-bottom: 4px;
}

.brand-kit__row span {
  font-size: 14px;
  color: var(--fg);
}

.brand-kit__swatches {
  display: flex;
  gap: 8px;
}

.brand-kit__swatches i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.swatch-accent { background: oklch(0.68 0.21 42); }
.swatch-ink { background: oklch(0.22 0.01 50); }
.swatch-paper { background: oklch(0.949 0.003 90); }
.swatch-ok { background: oklch(0.62 0.15 150); }

.line__grid,
.features__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 32px;
  align-items: start;
}

.line__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.line__step {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  cursor: pointer;
}

.line__num {
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--muted);
  padding-top: 2px;
}

.line__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.line__hint {
  grid-column: 2;
  font-size: 14px;
  color: var(--muted);
}

.line__step:hover .line__name {
  color: var(--fg);
}

.line__step.is-active {
  background: var(--surface);
  box-shadow: inset 3px 0 0 var(--accent);
}

.line__step.is-active .line__name,
.line__step.is-active .line__num {
  color: var(--fg);
}

.mock {
  min-height: 320px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mock__bar {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.mock__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.mock__kicker {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--muted);
}

.mock__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: var(--text-h3);
}

.mock__text {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.mock__rows {
  display: grid;
  gap: 8px;
}

.mock__rows span,
.mock__preview span {
  display: block;
  height: 12px;
  border-radius: 6px;
  background: var(--surface-2);
}

.mock__rows span:nth-child(1) { width: 92%; }
.mock__rows span:nth-child(2) { width: 74%; }
.mock__rows span:nth-child(3) { width: 86%; }
.mock__rows span:nth-child(4) { width: 60%; }

.mock__preview {
  display: grid;
  gap: 10px;
}

.mock__hero {
  height: 120px !important;
  background: var(--surface-2);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
}

.dots button.is-active {
  background: var(--accent);
}

.line__foot {
  margin: 24px 0 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--muted);
}

.features .launch__title,
.demos .launch__title,
.faq .launch__title,
.done .launch__title {
  max-width: 16em;
  flex-basis: 320px;
}

.features .features__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}

.features__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.features__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.features__visual {
  min-height: 300px;
}

.feat-ui {
  display: none;
  flex-direction: column;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}

.feat-ui.is-active {
  display: flex;
}

.feat-ui__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.feat-ui__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.feat-ui__bar span {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.feat-ui__page {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.feat-ui__page b {
  display: block;
  height: 120px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--accent) 22%, var(--surface-2)), var(--surface-2));
}

.feat-ui__page em {
  display: block;
  width: 55%;
  height: 10px;
  border-radius: 99px;
  background: var(--fg);
}

.feat-ui__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.feat-ui__row span {
  height: 52px;
  border-radius: 8px;
  background: var(--surface-2);
}

.feat-ui__list {
  margin: 0;
  padding: 16px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.feat-ui__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.feat-ui__list li.is-on {
  border-color: var(--accent);
}

.feat-ui__list strong {
  font-size: 14px;
}

.feat-ui__list span {
  font-size: 13px;
  color: var(--muted);
}

.feat-ui__kanban {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 16px;
  flex: 1;
}

.feat-ui__kanban > div {
  padding: 10px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.feat-ui__kanban .is-on {
  border-color: var(--accent);
}

.feat-ui__kanban small {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.feat-ui__kanban b {
  display: block;
  height: 36px;
  margin-top: 8px;
  border-radius: 6px;
  background: var(--surface-2);
}

.feat-ui__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 16px;
}

.feat-ui__metrics article {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.feat-ui__metrics small {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.feat-ui__metrics strong {
  font-size: 18px;
}

.feat-ui__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 88px;
  padding: 0 16px 16px;
}

.feat-ui__bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: color-mix(in oklch, var(--accent) 55%, var(--surface-2));
}

.feat-ui__bars i:nth-child(1) { height: 40%; }
.feat-ui__bars i:nth-child(2) { height: 70%; }
.feat-ui__bars i:nth-child(3) { height: 52%; }
.feat-ui__bars i:nth-child(4) { height: 88%; }
.feat-ui__bars i:nth-child(5) { height: 60%; }

.demos__browser {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}

.demos__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.demos__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.demos__chrome p {
  margin: 0 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.demos__viewport {
  min-height: 420px;
  background: var(--bg);
}

.features__copy.is-swap,
.feat-ui.is-swap,
.line__viewport.is-swap {
  animation: fade-swap 160ms ease-out;
}

@keyframes fade-swap {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.cases__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.case-card {
  flex: 0 0 min(400px, 100%);
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.case-card:hover {
  transform: translateY(-2px);
  transition: transform 180ms ease;
}

.case-card__preview {
  height: 200px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 14px;
}

.case-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: var(--text-h3);
}

.case-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.cases__note {
  margin: 12px 0 40px;
  font-size: var(--text-caption);
  color: var(--muted);
}

.quote-break {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.quote-break::before {
  content: "“ ";
  color: var(--accent);
}

.pricing__panel {
  padding: 32px;
  border-radius: var(--r-lg);
  background: color-mix(in oklch, var(--fg) 5%, var(--bg));
}

.pricing__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 32px;
  margin-bottom: 32px;
}

.pricing__header > div:first-child {
  max-width: 40em;
}

.pricing__header h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.pricing__header p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.pricing__periods {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  border-radius: var(--r);
  background: color-mix(in oklch, var(--fg) 8%, var(--bg));
}

.pricing__period {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 0;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--fg);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.pricing__period.is-active {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing__period span {
  margin-left: 6px;
  color: var(--accent);
}

.pricing__trial {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}

.pricing__trial p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.pricing__trial-title {
  margin-bottom: 4px !important;
  font-family: var(--font-display);
  font-size: 16px !important;
  font-weight: 600;
  color: var(--fg) !important;
}

.pricing__trial .btn {
  flex-shrink: 0;
}

.pricing__trial > div {
  flex: 1;
  min-width: 16em;
}

.pricing__crm {
  margin: 0 0 16px;
  padding: 12px 20px;
  border: 1px dashed color-mix(in oklch, var(--accent) 45%, var(--border));
  border-radius: var(--r);
  background: color-mix(in oklch, var(--accent) 7%, var(--surface));
  font-size: 13px;
  line-height: 1.45;
  color: var(--fg);
}

.pricing__crm strong {
  font-weight: 650;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}

.plan--featured {
  border: 2px solid var(--accent);
  background: color-mix(in oklch, var(--accent) 6%, var(--surface));
}

.plan__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan__kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan__top {
  min-height: 156px;
}

.plan h3 {
  margin: 0 0 8px;
  padding-right: 72px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.plan:not(.plan--featured) h3 {
  padding-right: 0;
}

.plan__price {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 6px;
  margin: 0 0 8px;
}

.plan__value {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.plan__price small {
  color: var(--muted);
  font-size: 14px;
}

.plan__was {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  white-space: nowrap;
}

.plan__save {
  margin: 0 0 8px;
  min-height: 1.2em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.plan__save[hidden] {
  display: block;
  visibility: hidden;
}

.plan__lead {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.plan__ai {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin: 16px 0;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: color-mix(in oklch, var(--fg) 5%, var(--surface));
  font-size: 12px;
  color: var(--muted);
}

.plan__ai strong {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.plan__body {
  flex: 1 1 auto;
}

.plan__group {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan__group + .plan__list {
  margin-top: 0;
}

.plan__list + .plan__group {
  margin-top: 16px;
}

.plan__list,
.plan__limits {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.35;
}

.plan__list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.plan__list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.plan__limits li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
  color: var(--muted);
}

.plan__limits li::before {
  content: "–";
  position: absolute;
  left: 0;
}

.plan .btn {
  width: 100%;
}

.plan__foot {
  margin-top: auto;
}

.plan__hint {
  margin: 8px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  color: var(--muted);
}

.plan--enterprise {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
  margin-top: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.plan--enterprise h3 {
  padding-right: 0;
  font-size: clamp(28px, 3vw, 36px);
}

.plan--enterprise .plan__lead {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}

.plan--enterprise .plan__enterprise-copy p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.plan--enterprise .plan__enterprise-copy .plan__lead {
  color: var(--fg);
}

.plan--enterprise .btn {
  width: auto;
  margin-top: 8px;
}

.plan--enterprise .plan__list {
  margin: 0;
}

.plan--enterprise .plan__list li {
  margin-bottom: 10px;
  font-size: 15px;
}

.pricing__done {
  margin: 24px 0 0;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  font-size: 14px;
}

.pricing__done a {
  margin-left: 8px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.pricing__note,
.pricing__legal {
  margin: 16px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.pricing__legal {
  font-size: 12px;
}

@media (max-width: 1199px) {
  .pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan__top {
    min-height: 0;
  }
}

@media (max-width: 991px) {
  .pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan--enterprise {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .plan--enterprise .btn {
    width: 100%;
  }
}

@media (max-width: 639px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}

.done {
  padding: 0 0 var(--section-y);
}

.done__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.done__tab {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--fg);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.done__tab span {
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding-top: 4px;
}

.done__tab strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.done__tab b {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.done__tab.is-active {
  border-color: color-mix(in oklch, var(--accent) 50%, var(--border));
  background: color-mix(in oklch, var(--accent) 8%, var(--surface));
}

.done__tab.is-active span,
.done__tab.is-active b {
  color: var(--accent);
}

.done__stage {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  align-items: stretch;
  min-height: 360px;
}

.done__stage.is-active {
  display: grid;
}

.done__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}

.done__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.done__copy > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.done__copy .check-list {
  margin: 4px 0 0;
}

.done__price {
  margin: 8px 0 0 !important;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
}

.done__price small {
  margin-left: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}

.done__copy .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.done__visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface-2);
}

.done__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}

.faq__item.is-open {
  border-color: color-mix(in oklch, var(--accent) 40%, var(--border));
  background: color-mix(in oklch, var(--accent) 5%, var(--surface));
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
}

.faq__n {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.faq__item.is-open .faq__n {
  color: var(--accent);
}

.faq__q::after {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) center / 10px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 10px no-repeat;
  color: var(--fg);
  transition: transform 200ms ease, border-color 200ms ease, color 200ms ease;
}

.faq__item.is-open .faq__q::after {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}

.faq__a {
  display: none;
  padding: 0 18px 18px 54px;
  max-width: 58em;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.faq__item.is-open .faq__a {
  display: block;
}

.faq__a p {
  margin: 0;
}

.faq__a p + p {
  margin-top: 10px;
}

.versus__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 28px;
}

.versus__head h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.versus__head p {
  margin: 0;
  max-width: 38em;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.versus__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px 16px;
  align-items: stretch;
}

.versus__col {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.versus__col--us {
  padding: 24px;
  border: 1px solid color-mix(in oklch, var(--accent) 40%, var(--border));
  border-radius: var(--r);
  background: color-mix(in oklch, var(--accent) 7%, var(--surface));
}

.versus__kicker {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.versus__col--us .versus__kicker {
  color: var(--accent);
}

.versus__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
}

.versus__per {
  margin: 8px 0 20px;
  font-size: 13px;
  color: var(--muted);
}

.versus__roles,
.versus__in {
  margin: 0;
  padding: 0;
  list-style: none;
}

.versus__roles li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.versus__roles li span {
  min-width: 0;
}

.versus__roles li b {
  flex-shrink: 0;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.versus__in {
  display: grid;
  gap: 10px;
}

.versus__in li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.35;
}

.versus__in li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.versus__extra {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.versus__col--us .btn {
  margin-top: auto;
  align-self: flex-start;
  padding-top: 4px;
}

.versus__vs {
  align-self: center;
  margin: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.versus__note {
  margin: 20px 0 0;
  max-width: 62em;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.who__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px 48px;
  align-items: end;
  margin-bottom: 28px;
}

.who__kicker {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.who__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.who__head h2 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}

.who__head > p {
  margin: 0;
  max-width: 34em;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.who__mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-areas:
    "team solo"
    "team mkt";
  gap: 16px;
  min-height: min(72vh, 680px);
}

.who__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
}

.who__card--solo {
  grid-area: solo;
}

.who__card--mkt {
  grid-area: mkt;
}

.who__card--team {
  grid-area: team;
}

.who__media {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 140px;
  background: var(--surface-2);
}

.who__card--solo .who__media,
.who__card--mkt .who__media {
  flex: 0 0 auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.who__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 700ms ease;
}

.who__card:hover .who__media img {
  transform: scale(1.05);
}

.who__stamp {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px color-mix(in oklch, var(--fg) 18%, transparent);
}

.who__body {
  padding: 16px 18px 18px;
}

.who__card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.who__card--team h3 {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
}

.who__body > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.who__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.who__tags li {
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
}

.who__card--team .who__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 88px 24px 24px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in oklch, var(--fg) 55%, transparent) 42%,
    color-mix(in oklch, var(--fg) 86%, black) 100%
  );
}

.who__card--team .who__body > p,
.who__card--team h3 {
  color: var(--accent-ink);
}

.who__card--team .who__tags li {
  border-color: color-mix(in oklch, white 28%, transparent);
  background: color-mix(in oklch, white 12%, transparent);
  color: var(--accent-ink);
}

.final__board {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 32px 40px;
  align-items: center;
  padding: 44px 40px;
  border-radius: var(--r-lg);
  background: color-mix(in oklch, var(--fg) 6%, var(--bg));
}

.final__glow {
  position: absolute;
  inset: auto -18% -40% auto;
  width: 58%;
  height: 140%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle,
    color-mix(in oklch, var(--accent) 28%, transparent) 0%,
    transparent 68%
  );
}

.final__copy,
.final__facts {
  position: relative;
  z-index: 1;
}

.final__kicker {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.final h2 {
  margin: 0 0 14px;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.final h2 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
}

.final__lead {
  margin: 0 0 24px;
  max-width: 36em;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.final__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.final__tg {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
}

.final__tg:hover {
  color: var(--accent);
}

.final__facts {
  margin: 0;
  padding: 8px 0;
  list-style: none;
  border-left: 1px solid color-mix(in oklch, var(--accent) 35%, var(--border));
}

.final__facts li {
  display: grid;
  grid-template-columns: 2.2em 1fr;
  column-gap: 10px;
  padding: 14px 0 14px 20px;
}

.final__facts li + li {
  border-top: 1px solid color-mix(in oklch, var(--fg) 8%, transparent);
}

.final__facts span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding-top: 4px;
}

.final__facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.final__facts p {
  margin: 4px 0 0;
  grid-column: 2;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  font-size: 14px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.7fr));
  gap: 32px 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer__brand p {
  margin: 12px 0 0;
  max-width: 22em;
  line-height: 1.45;
  color: var(--muted);
}

.footer__domain {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg) !important;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__col p {
  margin: 0 0 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__col a {
  color: var(--fg);
  text-decoration: none;
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 20px;
}

.footer__bottom p {
  margin: 0;
  color: var(--muted);
}

.footer__legal {
  max-width: 42em;
  font-size: 13px;
  line-height: 1.45;
}

.fade-up {
  animation: fade-up 240ms ease-out both;
}

.fade-up-d1 { animation-delay: 80ms; }
.fade-up-d2 { animation-delay: 160ms; }
.fade-up-d3 { animation-delay: 240ms; }

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease-out, transform 240ms ease-out;
}

.js-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1199px) {
  .launch .launch__row-wrap::before,
  .launch .launch__row-wrap::after {
    display: block;
  }

  .launch .launch__row-wrap::before {
    left: 0;
    background: linear-gradient(
      to left,
      transparent,
      color-mix(in oklch, var(--fg) 5%, var(--bg))
    );
  }

  .launch .launch__row-wrap::after {
    right: 0;
    background: linear-gradient(
      to right,
      transparent,
      color-mix(in oklch, var(--fg) 5%, var(--bg))
    );
  }

  .launch .launch__row-wrap.is-scrolled-left::before,
  .launch .launch__row-wrap.is-scrolled-right::after {
    opacity: 1;
  }

  .launch .launch__row {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .launch .launch__row::-webkit-scrollbar {
    display: none;
  }

  .launch .launch-card {
    flex: 0 0 42%;
    gap: 20px;
    scroll-snap-align: start;
  }
}

@media (max-width: 991px) {
  .pain__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .pain__copy {
    text-align: center;
  }

  .pain__copy h2 {
    max-width: none;
    font-size: clamp(26px, 5vw, 34px);
  }

  .pain__lead {
    margin-inline: auto;
    font-size: 15px;
  }

  .pain__desk {
    height: 360px;
    max-width: 560px;
    margin-inline: auto;
  }

  .pain-win {
    width: 128px;
  }

  .pain__points {
    grid-template-columns: 1fr;
  }

  .solve {
    padding: var(--section-y) 0 16px;
    text-align: center;
  }

  .launch__header {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    text-align: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .launch__title {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    font-size: clamp(28px, 5vw, 32px);
  }

  .launch__lead {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }

  .launch__cta {
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    margin-top: 4px;
    justify-content: center;
    min-height: 52px;
    padding: 14px 20px;
    white-space: nowrap;
  }

  .line__chips {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 0 -32px 24px;
    padding: 0 32px 8px;
  }

  .line__chips::-webkit-scrollbar {
    display: none;
  }

  .line__chip {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 14px;
  }

  .features .launch__title,
  .demos .launch__title,
  .faq .launch__title,
  .done .launch__title {
    max-width: none;
  }

  .features__chips,
  .demos__chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    margin: 0 0 16px;
    padding: 0;
    gap: 8px;
  }

  .features__chips .line__chip,
  .demos__chips .line__chip {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .features__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .features__visual {
    order: -1;
  }

  .feat-ui__kanban,
  .feat-ui__metrics,
  .feat-ui__row {
    grid-template-columns: 1fr 1fr;
  }

  .who__head {
    grid-template-columns: 1fr;
  }

  .who__mosaic {
    grid-template-columns: 1fr;
    grid-template-areas:
      "solo"
      "mkt"
      "team";
    min-height: 0;
  }

  .who__card--team .who__media {
    aspect-ratio: 16 / 10;
    flex: 0 0 auto;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .launch .launch__title {
    flex: 0 0 100%;
    max-width: none;
  }

  .launch .launch__lead {
    flex: 1 1 70%;
  }
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__cta--mobile {
    display: inline-flex;
    margin-top: 8px;
  }

  .hero__grid,
  .line__stage,
  .features__grid {
    grid-template-columns: 1fr;
  }

  .line__nav--prev { left: 8px; }
  .line__nav--next { right: 8px; }

  .done__tabs,
  .done__stage {
    grid-template-columns: 1fr;
  }

  .done__visual {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .final__board {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 20px;
  }

  .final h2 {
    max-width: none;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 992px) {
  .cover {
    height: auto;
    min-height: 100dvh;
    max-height: none;
  }

  .cover__grid {
    grid-template-columns: 1fr;
    align-content: start;
    height: auto;
    min-height: 100%;
    padding: calc(var(--header-h) + 12px) 24px calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .cover__copy {
    position: static;
    width: 100%;
    max-width: none;
    text-align: center;
    align-items: center;
  }

  .cover__title {
    white-space: normal;
    margin-bottom: 16px;
    font-size: clamp(32px, 6vw, 48px);
    line-height: 1.05;
  }

  .cover__lead,
  .cover__tags,
  .cover__quote {
    width: auto;
    min-width: 0;
    max-width: 100%;
  }

  .cover__lead {
    margin-bottom: 20px;
  }

  .cover__visual {
    display: none;
  }

  .cover__cta {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: max(16px, env(safe-area-inset-bottom));
    z-index: 10;
    width: auto;
    margin: 0;
    min-height: 56px;
    padding: 18px 16px;
    white-space: nowrap;
    box-shadow: 0 4px 24px color-mix(in oklch, var(--accent) 42%, transparent);
  }

  .cover__tags {
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .cover__tags li {
    min-height: 36px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .cover__quote {
    max-width: 28em;
  }

  .cover__canvas {
    opacity: 0.55;
  }

  .cover::after {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .cover__grid {
    padding: calc(var(--header-h) + 8px) 16px calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .cover__title {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .cover__lead {
    margin-bottom: 16px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {

  .pain {
    padding: var(--section-y) 0 0;
  }

  .pain__desk {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    height: auto;
  }

  .pain__mark {
    display: none;
  }

  .pain-win {
    position: relative;
    left: auto;
    top: auto;
    z-index: auto;
    width: auto;
    transform: none;
  }

  .pain-win:nth-child(odd) {
    transform: rotate(-2deg);
  }

  .pain-win:nth-child(even) {
    transform: rotate(2deg);
  }

  .pain__points li {
    padding: 14px;
    font-size: 14px;
  }

  .launch__panel {
    padding: 16px;
  }

  .pricing__panel {
    padding: 16px;
  }

  .pricing__trial {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pricing__periods {
    width: 100%;
  }

  .pricing__period {
    flex: 1 1 calc(50% - 4px);
  }

  .launch__header {
    gap: 10px;
    margin-bottom: 16px;
  }

  .launch__title {
    max-width: none;
  }

  .launch .launch-card {
    flex-basis: 78%;
  }

  .launch .launch-card__media {
    aspect-ratio: 4 / 5;
  }

  .launch .launch-card__action svg:first-child {
    display: none;
  }

  .line__chips {
    margin: 0 -16px 20px;
    padding: 0 16px 8px;
  }

  .line__copy,
  .features .features__copy,
  .done__copy {
    padding: 16px;
  }

  .faq__q {
    padding: 14px 14px;
    font-size: 14px;
  }

  .faq__a {
    padding: 0 14px 14px 14px;
  }

  .versus__grid {
    grid-template-columns: 1fr;
  }

  .versus__vs {
    justify-self: center;
  }

  .versus__head .btn {
    width: 100%;
  }

  .who__head {
    grid-template-columns: 1fr;
  }

  .who__mosaic {
    grid-template-columns: 1fr;
    grid-template-areas:
      "solo"
      "mkt"
      "team";
    min-height: 0;
  }

  .who__card--team .who__media {
    aspect-ratio: 16 / 10;
    flex: 0 0 auto;
  }

  .launch__header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 16px;
  }

  .launch__title,
  .features .launch__title,
  .demos .launch__title,
  .faq .launch__title,
  .done .launch__title {
    max-width: none;
    flex: none;
    width: 100%;
  }

  .launch__lead {
    max-width: none;
    flex: none;
  }

  .features .launch__panel,
  .demos .launch__panel {
    display: flex;
    flex-direction: column;
  }

  .features__chips,
  .demos__chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
    overflow: visible;
  }

  .features__chips .line__chip,
  .demos__chips .line__chip {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .features__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .features__visual {
    order: -1;
    min-height: 240px;
  }

  .feat-ui,
  .feat-ui.is-active {
    min-height: 240px;
  }

  .demos__viewport,
  .mini {
    min-height: 320px;
  }

  .mini header {
    flex-wrap: wrap;
  }

  .mini__cards {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: auto;
  }

  .final__board {
    padding: 24px 16px;
  }

  .final__facts {
    border-left: 0;
    border-top: 1px solid color-mix(in oklch, var(--accent) 35%, var(--border));
  }

  .final__facts li {
    padding-left: 0;
  }
}

section.gallery,
section.catalog {
  padding: 0 0 var(--section-y);
}

@media (max-width: 767px) {
  section.gallery,
  section.catalog {
    padding: 0 0 var(--section-y);
  }
}
